/* ============================================================
   VaultEdge — Custom Override CSS
   Completely new visual identity: dark navy + gold accent
   Font: Montserrat (single stack, headings + body)
   ============================================================ */

@import url("https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,300;0,400;0,500;0,600;0,700;0,800;1,700&display=swap");

/* ---- CSS VARIABLES ---- */
:root {
  --ve-dark:     #070808;
  --ve-dark2:    rgba(247, 148, 29, 0.5);
  --ve-navy:     #F7941D;
  --ve-gold:     #F7941D;
  --ve-gold2:    rgba(247, 148, 29, 0.5);
  --ve-light:    #f4f7fb;
  --ve-white:    #ffffff;
  --ve-text:     #4a5568;
  --ve-border:   #e2e8f0;
  --ve-radius:   12px;
  --ve-shadow:   0 8px 30px rgba(13,27,42,0.10);
  --ve-trans:    all 0.3s ease;
  --brand-orange: #ff9900;
  --brand-dark-bg: rgba(18, 18, 18, 0.65);
  --border-color: #ff9900;
  --text-dark:    #ffffff;
  --text-muted: #f4f7fb;

}

/* ---- RESET BODY FONTS ---- */
body { font-family: 'Montserrat', sans-serif; color: var(--ve-text); }
h1,h2,h3,h4,h5,h6 { font-family: 'Montserrat', sans-serif; color: var(--ve-dark); }

/* ---- PAGE LOADING SPLASH ---- */
#ve-page-loader {
    position: fixed;
    inset: 0;
    z-index: 99999;
    background: #FFFFFF;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 1;
    visibility: visible;
    transition: opacity 0.9s ease, visibility 0s linear 0.9s;
}
#ve-page-loader.ve-loader-hidden {
    opacity: 0;
    visibility: hidden;
}

/* --- Logo: small + faded -> big + full opacity (one-shot emerging intro) --- */
#ve-page-loader .ve-loader-logo {
    width: 50%;
    max-width: 260px;
    height: auto;
    opacity: 0;
    transform: scale(0.55);
    animation: ve-loader-emerge 2.2s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}
@keyframes ve-loader-emerge {
    0%   { opacity: 0;   transform: scale(0.55); }
    60%  { opacity: 1;   transform: scale(1.03); }
    100% { opacity: 1;   transform: scale(1);    }
}

/* Respect users who prefer less motion */
@media (prefers-reduced-motion: reduce) {
    #ve-page-loader .ve-loader-logo {
        animation: none;
        opacity: 1;
        transform: none;
    }
}

/* ============================================================
   NAVBAR
   ============================================================ */
.ve-header {
  /* position: fixed; */
  top: 0; left: 0; right: 0;
  z-index: 9999;
  background: var(--ve-dark);
  box-shadow: 0 2px 20px rgba(0,0,0,0.25);
  transition: var(--ve-trans);
}
.ve-header.scrolled {
  background: rgba(7, 8, 8, 0.97);
  backdrop-filter: blur(10px);
}
.ve-nav-wrap {
  display: flex;
  align-items: center;
  /* justify-content: space-between; */
  padding: 0 40px;
  height: 72px;
  border-bottom: 1px solid #3D3D3D;
}
/* Logo */
.ve-logo a { display:flex; align-items:center; gap:10px; text-decoration:none; }
.ve-logo-icon {
  width:38px; height:38px;
  background: var(--ve-gold);
  color: var(--ve-dark);
  border-radius: 8px;
  display:flex; align-items:center; justify-content:center;
  font-family:'Montserrat',sans-serif; font-weight:800; font-size:20px;
}
.ve-logo-text { font-family:'Montserrat',sans-serif; font-size:20px; color:#fff; font-weight:600; }
.ve-logo-text strong { color: var(--ve-gold); font-weight:900; }

/* Nav links */
.ve-nav ul { list-style:none; margin:0; padding:0; display:flex; gap:6px; }
.ve-nav ul li { position:relative; }
.ve-nav ul li a {
  display:block; padding:8px 14px; color:rgba(255,255,255,0.8);
  font-size:14px; font-weight:500; text-decoration:none;
  border-radius:6px; transition:var(--ve-trans);
}
.ve-nav ul li a:hover, .ve-nav ul li a.active { color:#fff; background:rgba(212,160,23,0.15); }
.ve-nav ul li a.active { color:var(--ve-gold); }

/* Dropdown */
.ve-nav .has-drop:hover .ve-dropdown { opacity:1; visibility:visible; transform:translateY(0); }
.ve-dropdown {
  position:absolute; top:100%; left:0; min-width:200px;
  background: var(--ve-dark2); border-radius:10px;
  padding:10px 0; opacity:0; visibility:hidden;
  transform:translateY(10px); transition:var(--ve-trans);
  box-shadow: 0 20px 40px rgba(0,0,0,0.3);
  border:1px solid rgba(255,255,255,0.08);
}
.ve-dropdown li a { padding:10px 20px; border-radius:0; color:rgba(255,255,255,0.7); font-size:13px; }
.ve-dropdown li a:hover { color:#fff; background:rgba(212,160,23,0.12); }

/* CTA button */
.ve-nav-cta .ve-cta-btn {
  display:inline-flex; align-items:center; gap:8px;
  background: var(--ve-gold); color: var(--ve-dark);
  padding:10px 22px; border-radius:8px;
  font-weight:700; font-size:14px; text-decoration:none;
  transition:var(--ve-trans);
}
.ve-cta-btn:hover { background:var(--ve-gold2); transform:translateY(-1px); }

/* Mobile toggle */
.ve-toggler { display:none; flex-direction:column; gap:5px; background:none; border:none; cursor:pointer; padding:4px; }
.ve-toggler span { display:block; width:24px; height:2px; background:#fff; border-radius:2px; transition:var(--ve-trans); }

/* Mobile menu */
.ve-mobile-menu {
  display:none; background:var(--ve-dark2); padding:16px 20px;
  border-top:1px solid rgba(255,255,255,0.08);
}
.ve-mobile-menu.open { display:block; }
.ve-mobile-menu ul { list-style:none; margin:0; padding:0; }
.ve-mobile-menu ul li a { display:block; padding:12px 8px; color:rgba(255,255,255,0.8); text-decoration:none; border-bottom:1px solid rgba(255,255,255,0.05); }

/* ============================================================
   HERO
   ============================================================ */
.ve-hero {
  display:flex; min-height:100vh;
  padding-top:72px; background:var(--ve-dark);
  overflow:hidden;
}
.ve-hero-left {
  flex:0 0 55%; padding:80px 60px 80px 80px;
  display:flex; flex-direction:column; justify-content:center;
  position:relative; z-index:2;
}
.ve-hero-badge {
  display:inline-block; background:rgba(212,160,23,0.15);
  color:var(--ve-gold); border:1px solid rgba(212,160,23,0.3);
  border-radius:50px; padding:6px 18px; font-size:13px; font-weight:600;
  margin-bottom:28px; letter-spacing:0.5px;
}
.ve-hero-left h1 {
  font-size:62px; line-height:1.1; color:#fff; font-weight:900;
  margin-bottom:22px;
}
.ve-hero-left h1 .ve-highlight { color:var(--ve-gold); }
.ve-hero-left p { font-size:17px; color:rgba(255,255,255,0.65); line-height:1.7; margin-bottom:40px; max-width:480px; }

/* Hero buttons */
.ve-hero-btns { display:flex; gap:16px; flex-wrap:wrap; margin-bottom:50px; }
.ve-btn-primary {
  display:inline-block; background:var(--ve-gold); color:var(--ve-dark);
  padding:14px 32px; border-radius:8px; font-weight:700; font-size:15px;
  text-decoration:none; transition:var(--ve-trans);
}
.ve-btn-primary:hover { background:var(--ve-gold2); transform:translateY(-2px); box-shadow:0 8px 25px rgba(212,160,23,0.4); color:var(--ve-dark); }
.ve-btn-ghost {
  display:inline-block; border:2px solid rgba(255,255,255,0.25);
  color:#fff; padding:12px 30px; border-radius:8px;
  font-weight:600; font-size:15px; text-decoration:none; transition:var(--ve-trans);
}
.ve-btn-ghost:hover { border-color:var(--ve-gold); color:var(--ve-gold); background:rgba(212,160,23,0.08); }

/* Hero stats */
.ve-hero-stats { display:flex; align-items:center; gap:24px; }
.ve-stat strong { display:block; font-size:28px; color:#fff; font-family:'Montserrat',sans-serif; font-weight:800; }
.ve-stat span { font-size:12px; color:rgba(255,255,255,0.5); text-transform:uppercase; letter-spacing:1px; }
.ve-stat-divider { width:1px; height:40px; background:rgba(255,255,255,0.15); }

/* Hero right */
.ve-hero-right {
  flex:0 0 45%; position:relative; overflow:hidden;
}
.ve-hero-img-main {
  position:absolute; inset:0;
  background-size:cover; background-position:center;
}
.ve-hero-img-main::after { content:''; position:absolute; inset:0; background:linear-gradient(120deg, var(--ve-dark) 0%, transparent 40%); }
.ve-hero-img-accent {
  position:absolute; bottom:40px; right:40px;
  width:200px; height:140px; border-radius:14px;
  background-size:cover; background-position:center;
  border:3px solid var(--ve-gold); box-shadow:0 20px 50px rgba(0,0,0,0.4);
  z-index:3;
}
.ve-float-card {
  position:absolute; top:60px; right:60px; z-index:4;
  background:rgba(255,255,255,0.95); border-radius:14px;
  padding:16px 20px; display:flex; align-items:center; gap:14px;
  box-shadow:0 20px 50px rgba(0,0,0,0.35); backdrop-filter:blur(10px);
}
.ve-float-card i { font-size:28px; color:var(--ve-gold); }
.ve-float-card strong { display:block; font-size:22px; font-family:'Montserrat',sans-serif; font-weight:800; color:var(--ve-dark); }
.ve-float-card span { font-size:12px; color:var(--ve-text); }

/* ============================================================
   TRUST BAR
   ============================================================ */
.ve-trust-bar {
  background: white;
  padding: 14px 0;
  overflow:hidden;
  white-space:nowrap;
}
.ve-trust-inner {
  display:inline-flex; gap:60px;
  animation: ve-marquee 50s linear infinite;
}
.ve-trust-inner span { font-size:13px; font-weight:700; color:var(--ve-dark); display:inline-flex; align-items:center; gap:8px; }
.ve-trust-inner span i { font-size:14px; }
@keyframes ve-marquee { from { transform:translateX(0); } to { transform:translateX(-50%); } }

/* ============================================================
   SECTION SHARED
   ============================================================ */
.ve-section { padding: 100px 0; }
.ve-section-header { margin-bottom:60px; }
.ve-section-tag {
  display:inline-block; background:rgba(212,160,23,0.1);
  color:var(--ve-gold); border:1px solid rgba(212,160,23,0.25);
  border-radius:50px; padding:5px 16px; font-size:12px; font-weight:700;
  text-transform:uppercase; letter-spacing:1.5px; margin-bottom:14px;
}
.ve-section-header h2 { font-size:42px; font-weight:900; color:var(--ve-dark); margin-bottom:14px; line-height:1.2; }
.ve-section-header h2 span { color:var(--ve-gold); }
.ve-section-header p { font-size:16px; color:var(--ve-text); max-width:580px; margin:0 auto; }

/* ============================================================
   SERVICES GRID
   ============================================================ */
.ve-services-section { background: var(--ve-light); }
.ve-services-grid {
  display:grid; grid-template-columns:repeat(3, 1fr);
  gap:28px;
}
.ve-service-card {
  background:#fff; border-radius:var(--ve-radius);
  padding:36px 30px; transition:var(--ve-trans);
  border:1px solid var(--ve-border);
  position:relative; overflow:hidden;
}
.ve-service-card::before {
  content:''; position:absolute; bottom:0; left:0; right:0; height:3px;
  background: linear-gradient(90deg, var(--ve-gold), var(--ve-gold2));
  transform:scaleX(0); transform-origin:left; transition:var(--ve-trans);
}
.ve-service-card:hover { transform:translateY(-6px); box-shadow:var(--ve-shadow); }
.ve-service-card:hover::before { transform:scaleX(1); }
.ve-service-icon {
  width:60px; height:60px; background:linear-gradient(135deg, var(--ve-dark), var(--ve-navy));
  border-radius:14px; display:flex; align-items:center; justify-content:center;
  margin-bottom:22px; font-size:26px; color:var(--ve-gold);
}
.ve-service-card h4 { font-size:18px; font-weight:800; color:var(--ve-dark); margin-bottom:10px; }
.ve-service-card p { font-size:14px; line-height:1.7; margin-bottom:20px; color:var(--ve-text); }
.ve-card-link { font-size:14px; font-weight:700; color:var(--ve-gold); text-decoration:none; display:inline-flex; align-items:center; gap:6px; transition:var(--ve-trans); }
.ve-card-link:hover { gap:10px; color:var(--ve-dark); }

/* ============================================================
   WHY US
   ============================================================ */
.ve-whyus-section { background:#fff; }
.ve-whyus-img-wrap { position:relative; padding-bottom:40px; padding-right:40px; }
.ve-whyus-img-main { height:480px; border-radius:16px; background-size:cover; background-position:center; }
.ve-whyus-badge {
  position:absolute; bottom:0; right:0;
  background: var(--ve-gold); border-radius:14px; padding:22px 28px;
  text-align:center; min-width:160px;
}
.ve-whyus-badge strong { display:block; font-size:40px; font-family:'Montserrat',sans-serif; font-weight:800; color:var(--ve-dark); }
.ve-whyus-badge span { font-size:12px; font-weight:600; color:var(--ve-dark); opacity:0.7; text-transform:uppercase; letter-spacing:0.8px; }

.ve-whyus-content { padding-left:40px; }
.ve-whyus-content h2 { font-size:40px; font-weight:900; line-height:1.2; margin-bottom:16px; }
.ve-whyus-content h2 span { color:var(--ve-gold); }
.ve-whyus-content > p { font-size:15px; line-height:1.8; margin-bottom:32px; }

.ve-checklist { display:flex; flex-direction:column; gap:22px; }
.ve-check-item { display:flex; align-items:flex-start; gap:16px; }
.ve-check-item > i { font-size:22px; color:var(--ve-gold); margin-top:2px; flex-shrink:0; }
.ve-check-item strong { display:block; font-size:16px; font-weight:800; color:var(--ve-dark); margin-bottom:4px; }
.ve-check-item p { font-size:14px; color:var(--ve-text); margin:0; line-height:1.6; }
.mt-30 { margin-top:30px; }

/* ============================================================
   COUNTERS
   ============================================================ */
.ve-counter-section {
  background: linear-gradient(135deg, var(--ve-dark) 0%, var(--ve-navy) 100%);
  padding:70px 0;
}
.ve-counter-grid { display:grid; grid-template-columns:repeat(4,1fr); gap:30px; }
.ve-counter-item { text-align:center; padding:30px 20px; border-right:1px solid rgba(255,255,255,0.1); }
.ve-counter-item:last-child { border-right:none; }
.ve-counter-item i { font-size:36px; color:var(--ve-gold); margin-bottom:14px; display:block; }
.ve-counter-item strong { font-size:46px; font-family:'Montserrat',sans-serif; font-weight:800; color:#fff; line-height:1; }
.ve-counter-item span { font-size:24px; color:var(--ve-gold); font-weight:700; }
.ve-counter-item p { font-size:14px; color:rgba(255,255,255,0.55); margin-top:6px; text-transform:uppercase; letter-spacing:1px; }

/* ============================================================
   TESTIMONIALS
   ============================================================ */
.ve-testimonials-section { background:var(--ve-light); }
.ve-testi-grid { display:grid; grid-template-columns:repeat(3,1fr); gap:28px; }
.ve-testi-card {
  background:#fff; border-radius:var(--ve-radius); padding:32px 28px;
  box-shadow:var(--ve-shadow); border:1px solid var(--ve-border); transition:var(--ve-trans);
}
.ve-testi-card:hover { transform:translateY(-4px); }
.ve-testi-stars { font-size:18px; color:var(--ve-gold); margin-bottom:16px; letter-spacing:2px; }
.ve-testi-card > p { font-size:15px; line-height:1.8; color:var(--ve-text); margin-bottom:24px; font-style:italic; }
.ve-testi-author { display:flex; align-items:center; gap:14px; }
.ve-testi-avatar { width:50px; height:50px; border-radius:50%; background-size:cover; background-position:center; flex-shrink:0; }
.ve-testi-author strong { display:block; font-size:15px; font-weight:800; color:var(--ve-dark); }
.ve-testi-author span { font-size:13px; color:var(--ve-text); }

/* ============================================================
   CTA BANNER
   ============================================================ */
.ve-cta-banner { position:relative; padding:90px 0; background-size:cover; background-position:center; }
.ve-cta-overlay { position:absolute; inset:0; background:linear-gradient(90deg, rgba(13,27,42,0.92) 60%, rgba(13,27,42,0.6)); }
.ve-cta-content { position:relative; z-index:2; }
.ve-cta-content h2 { font-size:38px; font-weight:900; color:#fff; margin-bottom:14px; }
.ve-cta-content h2 span { color:var(--ve-gold); }
.ve-cta-content p { font-size:16px; color:rgba(255,255,255,0.7); }
.ve-btn-white {
  display:inline-block; background:#fff; color:var(--ve-dark);
  padding:16px 34px; border-radius:8px; font-weight:800; font-size:15px;
  text-decoration:none; transition:var(--ve-trans);
}
.ve-btn-white:hover { background:var(--ve-gold); color:var(--ve-dark); transform:translateY(-2px); }
.text-lg-right { text-align:right; }

/* ============================================================
   INSIGHTS
   ============================================================ */
.ve-insights-section { background:#fff; }
.ve-insight-card { border-radius:var(--ve-radius); overflow:hidden; border:1px solid var(--ve-border); transition:var(--ve-trans); background:#fff; }
.ve-insight-card:hover { transform:translateY(-5px); box-shadow:var(--ve-shadow); }
.ve-insight-img { height:220px; background-size:cover; background-position:center; }
.ve-insight-body { padding:26px; }
.ve-insight-cat { display:inline-block; background:rgba(212,160,23,0.1); color:var(--ve-gold); font-size:11px; font-weight:700; text-transform:uppercase; letter-spacing:1.5px; border-radius:4px; padding:4px 10px; margin-bottom:12px; }
.ve-insight-body h5 a { font-size:17px; font-weight:800; color:var(--ve-dark); text-decoration:none; line-height:1.4; display:block; margin-bottom:10px; }
.ve-insight-body h5 a:hover { color:var(--ve-gold); }
.ve-insight-body > p { font-size:14px; color:var(--ve-text); line-height:1.7; margin-bottom:16px; }
.ve-insight-meta { display:flex; justify-content:space-between; align-items:center; }
.ve-insight-meta span { font-size:13px; color:#aaa; display:inline-flex; align-items:center; gap:6px; }
.ve-insight-meta a { font-size:13px; font-weight:700; color:var(--ve-gold); text-decoration:none; display:inline-flex; align-items:center; gap:5px; transition:var(--ve-trans); }
.ve-insight-meta a:hover { gap:10px; }

/* ============================================================
   NEWSLETTER
   ============================================================ */
.ve-newsletter-section { background:linear-gradient(135deg, var(--ve-dark) 0%, var(--ve-navy) 100%); padding:60px 0; }
.ve-newsletter-wrap { display:flex; align-items:center; justify-content:space-between; gap:40px; flex-wrap:wrap; }
.ve-nl-left { display:flex; align-items:center; gap:20px; }
.ve-nl-left i { font-size:42px; color:var(--ve-gold); flex-shrink:0; }
.ve-nl-left h3 { font-size:22px; color:#fff; font-weight:900; margin-bottom:4px; }
.ve-nl-left p { font-size:14px; color:rgba(255,255,255,0.55); margin:0; }
.ve-nl-form { display:flex; gap:0; border-radius:8px; overflow:hidden; border:2px solid rgba(212,160,23,0.3); }
.ve-nl-form input { background:rgba(255,255,255,0.08); border:none; padding:14px 20px; color:#fff; font-size:14px; width:300px; outline:none; }
.ve-nl-form input::placeholder { color:rgba(255,255,255,0.4); }
.ve-nl-form button { background:var(--ve-gold); color:var(--ve-dark); border:none; padding:14px 28px; font-weight:800; font-size:14px; cursor:pointer; transition:var(--ve-trans); }
.ve-nl-form button:hover { background:var(--ve-gold2); }

/* ============================================================
   FOOTER
   ============================================================ */
.ve-footer { background:var(--ve-dark); padding:80px 0 0; }
.mb-50 { margin-bottom:50px; }

.ve-footer-brand p { font-size:14px; color:rgba(255,255,255,0.5); line-height:1.8; margin:18px 0 24px; }
.ve-footer-logo { display:inline-flex; align-items:center; gap:10px; text-decoration:none; margin-bottom:14px; }

.ve-social { display:flex; gap:10px; }
.ve-social a {
  width:38px; height:38px; border-radius:8px;
  background:rgba(255,255,255,0.06); color:rgba(255,255,255,0.6);
  display:flex; align-items:center; justify-content:center;
  font-size:14px; text-decoration:none; transition:var(--ve-trans);
  border:1px solid rgba(255,255,255,0.08);
}
.ve-social a:hover { background:var(--ve-gold); color:var(--ve-dark); border-color:var(--ve-gold); }

.ve-footer-title { font-size:15px; font-weight:800; color:#fff; margin-bottom:20px; padding-bottom:12px; border-bottom:1px solid rgba(255,255,255,0.08); text-transform:uppercase; letter-spacing:1px; }

.ve-footer-links { list-style:none; margin:0; padding:0; }
.ve-footer-links li { margin-bottom:10px; }
.ve-footer-links li a { font-size:14px; color:rgba(255,255,255,0.5); text-decoration:none; transition:var(--ve-trans); display:inline-flex; align-items:center; gap:6px; }
.ve-footer-links li a::before { content:'›'; color:var(--ve-gold); font-size:16px; }
.ve-footer-links li a:hover { color:var(--ve-gold); padding-left:4px; }

.ve-footer-contact { list-style:none; margin:0; padding:0; }
.ve-footer-contact li { font-size:14px; color:rgba(255,255,255,0.5); margin-bottom:12px; display:flex; align-items:flex-start; gap:10px; line-height:1.6; }
.ve-footer-contact li i { color:var(--ve-gold); margin-top:2px; flex-shrink:0; }

.ve-footer-bottom { background:rgba(0,0,0,0.3); border-top:1px solid rgba(255,255,255,0.06); margin-top:20px; padding:22px 0; }
.ve-footer-bottom-inner { display:flex; justify-content:space-between; align-items:center; flex-wrap:wrap; gap:14px; }
.ve-footer-bottom-inner p { font-size:13px; color:rgba(255,255,255,0.35); margin:0; }
.ve-footer-bottom-inner ul { list-style:none; margin:0; padding:0; display:flex; gap:20px; }
.ve-footer-bottom-inner ul li a { font-size:13px; color:rgba(255,255,255,0.35); text-decoration:none; transition:var(--ve-trans); }
.ve-footer-bottom-inner ul li a:hover { color:var(--ve-gold); }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width:1199px) {
  .ve-hero-left { padding:70px 40px; }
  .ve-hero-left h1 { font-size:50px; }
  .ve-services-grid { grid-template-columns:repeat(2,1fr); }
  .ve-counter-grid { grid-template-columns:repeat(2,1fr); }
  .ve-testi-grid { grid-template-columns:repeat(2,1fr); }
}
@media (max-width:991px) {
  .ve-hero { flex-direction:column; min-height:auto; }
  .ve-hero-left { flex:none; padding:100px 30px 60px; }
  .ve-hero-right { flex:none; height:350px; }
  .ve-nav, .ve-nav-cta { display:none; }
  .ve-toggler { display:flex; }
  .ve-whyus-content { padding-left:0; margin-top:40px; }
  .ve-newsletter-wrap { flex-direction:column; align-items:flex-start; }
  .ve-nl-form { width:100%; }
  .ve-nl-form input { flex:1; width:auto; }
}
@media (max-width:767px) {
  .ve-hero-left h1 { font-size:38px; }
  .ve-services-grid, .ve-testi-grid, .ve-counter-grid { grid-template-columns:1fr; }
  .ve-hero-stats { flex-wrap:wrap; gap:16px; }
  .ve-nav-wrap { padding:0 20px; }
  .ve-footer-bottom-inner { flex-direction:column; text-align:center; }
  .ve-cta-content h2 { font-size:28px; }
  .text-lg-right { text-align:left; margin-top:20px; }
  .ve-counter-item { border-right:none; border-bottom:1px solid rgba(255,255,255,0.1); }
  .ve-counter-item:last-child { border-bottom:none; }
}

/* ============================================================
   HIDE OLD HEADER (replaced by ve-header)
   ============================================================ */
.header-area { display:none !important; }

/* Ensure body offset for fixed navbar */
body { padding-top:0; }

/* ============================================================
   IRPAGES HOME — moved from index.php <style> block
   All rules below were extracted verbatim from the inline
   <style> in index.php to make the page CSP-clean.
   ============================================================ */

/* Hero Container with custom background */
.hero-section {
    background: linear-gradient(rgba(0, 0, 0, 0), rgba(0, 0, 0, 0)),
                url('../img/Banner.png') no-repeat center center/cover;
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    padding: 80px 0;
}

/* Subtitle / Category Tag */
.sub-tag {
    color: #ff9900;
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
}

/* Main Heading */
.hero-title {
    font-size: 3rem;
    font-weight: 800;
    line-height: 1.15;
    letter-spacing: -0.5px;
    color: white;
}

.hero-title .highlight {
    color: #ff9900;
    font-style: italic;
}

/* Container holding the watermark and the strip */
.watermark-container {
    position: relative;
    margin: 25px 0;
}

/* Background overlay strip extending to the left edge of the viewport */
.feature-bullets {
    position: relative;
    z-index: 2;
    background-color: rgba(50, 19, 0, 0.5);
    color: #ff9900;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;

    /* Spacing inside the strip */
    padding-top: 14px;
    padding-bottom: 14px;
    padding-right: 20px;

    /* Pulls the background left to the screen edge */
    margin-left: calc(-50vw + 50%);
    padding-left: calc(50vw - 50%);

    /* Subtle glass effect */
    backdrop-filter: blur(4px);
}

.feature-bullets span {
    margin: 0 8px;
}

/* Watermark adjustments */
.watermark-bg {
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    font-size: 5.5rem;
    font-weight: 900;
    color: rgba(255, 255, 255, 0.05);
    text-transform: uppercase;
    letter-spacing: 4px;
    pointer-events: none;
    white-space: nowrap;
    user-select: none;
    z-index: 1;
}

/* Paragraph Description */
.hero-description {
    color: #b0b0b0;
    font-size: 0.95rem;
    line-height: 1.6;
    max-width: 480px;
}

/* Action Buttons */
.btn-demo {
    background-color: #ff9900;
    color: #000000;
    font-weight: 700;
    font-size: 0.85rem;
    letter-spacing: 1px;
    padding: 12px 24px;
    border-radius: 2px;
    border: 2px solid #ff9900;
    text-transform: uppercase;
    transition: all 0.3s ease;
}

.btn-demo:hover {
    background-color: #e68a00;
    border-color: #e68a00;
    color: #000000;
}

.btn-explore {
    background-color: transparent;
    color: #ffffff;
    font-weight: 700;
    font-size: 0.85rem;
    letter-spacing: 1px;
    padding: 12px 24px;
    border-radius: 2px;
    border: 1px solid #ffffff;
    text-transform: uppercase;
    transition: all 0.3s ease;
}

.btn-explore:hover {
    background-color: rgba(255, 255, 255, 0.1);
    color: #ffffff;
}

/* Stat Box Grid Styling */
.stat-box {
    background-color: var(--brand-dark-bg);
    padding: 30px 25px;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    backdrop-filter: blur(5px);
    position: relative;
    overflow: hidden;
}

/* Animated top accent bar */
.stat-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--ve-gold), var(--ve-gold2));
    transform: scaleX(0);
    transform-origin: left;
    animation: ve-stat-bar 1.2s cubic-bezier(0.22, 1, 0.36, 1) 0.3s forwards;
    transition: transform 0.45s cubic-bezier(0.22, 1, 0.36, 1);
}
@keyframes ve-stat-bar {
    from { transform: scaleX(0); }
    to   { transform: scaleX(1); }
}
.stat-box:hover::before {
    transform: scaleX(0);
    animation: none;
    transition: none;
}
.stat-box:hover {
    transform: translateY(-4px);
}

.stat-number {
    font-size: 3rem;
    font-weight: 800;
    line-height: 1;
    margin-bottom: 15px;
    color: #ffffff;
}
.stat-number-suffix {
    font-size: 2.5rem;
}
.stat-numbers {
    font-size: 54px;
    font-weight: 700;
    color: white;
    line-height: 1;
    margin-top: 5px;
}

.stat-label {
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 1px;
    color: #a0a0a0;
    text-transform: uppercase;
    line-height: 1.3;
}

/* Clients strip */
.client-section {
    padding: 30px 0;
    background-color: #ffffff;
    text-align: center;
    overflow: hidden;
    border-bottom: 3px solid var(--ve-gold);
}

.client-heading {
    font-size: 0.85rem;
    font-weight: 700;
    color: #666666;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 30px;
}

.client-subheading {
    font-size: 0.85rem;
    color: #777777;
    margin: 0;
    letter-spacing: 0.5px;
}

.logo-slider {
    width: 100%;
    overflow: hidden;
    position: relative;
    mask-image: linear-gradient(to right, rgba(0, 0, 0, 0), rgba(0, 0, 0, 1) 10%, rgba(0, 0, 0, 1) 90%, rgba(0, 0, 0, 0));
    -webkit-mask-image: linear-gradient(to right, rgba(0, 0, 0, 0), rgba(0, 0, 0, 1) 10%, rgba(0, 0, 0, 1) 90%, rgba(0, 0, 0, 0));
}

.logo-track {
    display: flex;
    width: max-content;
    animation: scroll 55s linear infinite;
}

.logo-slider:hover .logo-track {
    animation-play-state: paused;
}

.logo-slide {
    padding: 0 35px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.logo-slide img {
    width: auto;
    object-fit: contain;
    transition: opacity 0.3s ease;
}

.logo-slide img:hover {
    opacity: 0.8;
}

@keyframes scroll {
    0%   { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* Capabilities grid background */
.grid-bg {
    background-color: #fcfcfc;
    background-image:
        linear-gradient(#f0f0f0 1px, transparent 1px),
        linear-gradient(90deg, #f0f0f0 1px, transparent 1px);
    background-size: 30px 30px;
}

.capabilities-section {
    padding: 60px 0;
}

.sub-heading {
    color: #ff9900;
    font-weight: 700;
    font-size: 0.8rem;
    letter-spacing: 1.5px;
    text-transform: uppercase;
}

.desc-text {
    color: #666666;
    font-size: 0.9rem;
    line-height: 1.6;
}


/* Why IRPages section */
.why-irpages-section {
    background: linear-gradient(rgba(0, 0, 0, 0), rgba(0, 0, 0, 0)),
                url('../img/Background-services.png') no-repeat center center/cover;
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    padding: 80px 0;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 800;
    line-height: 1.15;
    letter-spacing: -0.5px;
    color: #ffffff;
}

.section-title .highlight {
    color: var(--brand-orange);
    font-style: italic;
}

.section-desc {
    color: #b0b0b0;
    font-size: 0.95rem;
    line-height: 1.6;
    text-align: end;
}

.tabs-wrapper {
    padding-top: 25px;
    margin-top: 40px;
    margin-bottom: 30px;
    max-width: 1000px;
}

.custom-tabs-nav {
    border-bottom: none;
    gap: 15px;
    display: flex;
    flex-wrap: wrap;
}

.custom-tabs-nav .nav-item {
    flex: 1;
    min-width: 200px;
}

.custom-tabs-nav .nav-link {
    width: 100%;
    background-color: rgba(18, 18, 18, 0.5);
    color: #ffffff;
    font-weight: 600;
    font-size: 16px;
    padding: 10px 15px;
    border-radius: 2px;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 12px;
    backdrop-filter: blur(5px);
    transition: all 0.3s ease;
    cursor: pointer;
    border-top: 1px solid var(--brand-orange);
}

.custom-tabs-nav .nav-link i,
.custom-tabs-nav .nav-link img {
    font-size: 1.4rem;
    color: var(--brand-orange);
}

.custom-tabs-nav .nav-link:hover {
    border-color: var(--brand-orange);
    color: #ffffff;
}

.custom-tabs-nav .nav-link.active {
    background-color: var(--brand-orange) !important;
    border-color: var(--brand-orange) !important;
    color: #ffffff !important;
}

.custom-tabs-nav .nav-link.active i {
    color: #ffffff !important;
}

.tab-content-container {
    border: 1px solid var(--border-color);
    border-radius: 2px;
    padding: 15px;
    background-color: var(--brand-dark-bg);
    backdrop-filter: blur(5px);
}

.brand-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 0.75rem;
    font-weight: 800;
    color: #ffffff;
    letter-spacing: 1px;
    margin-bottom: 15px;
}

.brand-badge .check-box {
    background-color: var(--brand-orange);
    color: #000;
    width: 16px;
    height: 16px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 2px;
    font-size: 0.65rem;
}

.stat-highlight {
    border-right: 1px solid rgba(247, 148, 29, 0.5);
    padding-right: 30px;
}

.stat-label2 {
    font-size: 28px;
    font-weight: 300;
    color: #ffffff;
    line-height: 1.2;
}

/* Used inside .why-irpages-section as the big number for the active tab */
.why-irpages-section .stat-number {
    font-size: 4.2rem;
    font-weight: 800;
    color: var(--brand-orange);
    line-height: 1;
    margin-top: 5px;
}

.sub-feature-card {
    background-color: rgba(18, 18, 18, 0.8);
    border-radius: 2px;
    padding: 20px 15px;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: start;
    justify-content: center;
    text-align: center;
    transition: all 0.3s ease;
}

.sub-feature-card:hover {
    background-color: rgba(153, 85, 0, 0.4);
}

.sub-feature-icon {
    font-size: 2rem;
    color: #ffffff;
    margin-bottom: 12px;
    text-align: start;
}

.sub-feature-title {
    font-size: 0.8rem;
    font-weight: 300;
    color: #dddddd;
    line-height: 1.3;
    text-align: start;
}

.min-120-flex {
    min-height: 120.8px;
}

@media (max-width: 479.98px) {
    .col-6.col-sm-3 {
        flex: 0 0 auto;
        width: 100%;
        max-width: 100%;
    }
    .sub-feature-card {
        padding: 16px 14px;
    }
    .sub-feature-icon {
        margin-bottom: 8px;
    }
}

.first-lop,
.second-lop {
    display: flex;
    align-items: stretch;
}

.first-lop > .stat-highlight {
    flex: 1 1 auto;
    width: 100%;
    display: flex;
    align-items: center;
    padding-right: 0;
}

.second-lop > .stat-highlight {
    flex: 1 1 auto;
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    border-right: 1px solid rgba(247, 148, 29, 0.5);
    min-height: 105px;
}

@media (max-width: 767.98px) {
    .stat-highlight,
    .second-lop > .stat-highlight {
        border-right: none;
        padding-right: 0;
    }
}

/* Get-started / contact section */
.get-started-section {
    position: relative;
    padding: 100px 0;
    background: linear-gradient(rgba(0, 0, 0, 0), rgba(0, 0, 0, 0)),
                url('../img/Background-email.png') no-repeat center center/cover;
    overflow: hidden;
    border-bottom: 1px solid white;
}

.get-started-section .section-title {
    font-size: 2.3rem;
    color: var(--text-dark);
    margin-bottom: 20px;
}

.get-started-section .section-title .highlight {
    color: var(--brand-orange);
    font-style: italic;
}

.get-started-section .section-desc {
    color: var(--text-muted);
    margin-bottom: 30px;
    max-width: 440px;
}

.feature-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.feature-list li {
    position: relative;
    padding-left: 28px;
    font-size: 0.92rem;
    font-weight: 500;
    color: #222222;
    margin-bottom: 16px;
    line-height: 1.4;
}

/* Custom Orange Square Bullet
   Drawn entirely with CSS (no Unicode, no font dependency) so it
   renders crisply at any size and on every browser. */
.feature-list li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0.45em;                  /* vertically center on the first line of text */
    width: 10px;
    height: 10px;
    background-color: var(--brand-orange);
    border-radius: 2px;            /* subtle rounding — square with soft corners */
}

.contact-card {
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: 4px;
    padding: 40px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.05);
}

.form-label {
    font-size: 0.85rem;
    font-weight: 600;
    color: #333333;
    margin-bottom: 6px;
}

.form-control {
    border: 1px solid #e2e2e2;
    border-radius: 3px;
    padding: 12px 15px;
    font-size: 0.9rem;
    background-color: transparent;
    color: #333333;
    transition: all 0.2s ease;
}

.form-control::placeholder {
    color: #a0a0a0;
    font-size: 0.88rem;
}

.form-control:focus {
    border-color: var(--brand-orange);
    box-shadow: 0 0 0 3px rgba(245, 145, 30, 0.15);
    background-color: #ffffff;
}

textarea.form-control {
    resize: none;
}

.btn-submit {
    background-color: var(--brand-orange);
    color: #000000;
    font-weight: 700;
    font-size: 0.85rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    padding: 14px 20px;
    border: none;
    border-radius: 3px;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    transition: background-color 0.2s ease, transform 0.1s ease;
}

.btn-submit:hover {
    background-color: var(--ve-gold2);
    color: #000000;
}

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

.form-footnote {
    font-size: 0.75rem;
    color: #777777;
    text-align: center;
    margin-top: 15px;
    margin-bottom: 0;
}

/* Site footer */
.site-footer {
    background-color: #ffffff;
    border-top: 3px solid var(--brand-orange);
    padding: 20px 0;
    position: relative;
    width: 100%;
}

.footer-logo-left img {
    max-height: 35px;
    width: auto;
    display: block;
}

.footer-copyright {
    color: var(--footer-text-color);
    font-size: 0.78rem;
    font-weight: 500;
    text-align: center;
    margin: 0;
}

.footer-powered-by {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 10px;
    color: #333333;
    font-size: 0.88rem;
    font-weight: 500;
}

.footer-powered-by img {
    max-height: 28px;
    width: auto;
}

.logo-placeholder {
    font-weight: 800;
    font-size: 1.4rem;
    letter-spacing: -0.5px;
    color: #111;
}

.logo-placeholder span {
    color: var(--footer-top-orange);
}

.text-black { color: #000000!important; }

/* Hidden placeholder text in footer (replaces style="display:none") */
.d-none { display: none !important; }
.footer-chartnexus { color: #c00; font-size: 1.1rem; }

/* ============================================================
   CSP-CLEAN BACKGROUND IMAGE UTILITIES
   Replaces style="background-image:url(...)" inline attributes
   found in index.html, about.html, contact.html, elements.html,
   services.html, post.html, single-post.html.
   ============================================================ */
.bg-img-1  { background-image: url('img/bg-img/1.jpg');  }
.bg-img-3  { background-image: url('img/bg-img/3.jpg');  }
.bg-img-5  { background-image: url('img/bg-img/5.jpg');  }
.bg-img-6  { background-image: url('img/bg-img/6.jpg');  }
.bg-img-10 { background-image: url('img/bg-img/10.jpg'); }
.bg-img-11 { background-image: url('img/bg-img/11.jpg'); }
.bg-img-12 { background-image: url('img/bg-img/12.jpg'); }
.bg-img-13 { background-image: url('img/bg-img/13.jpg'); }
.bg-img-14 { background-image: url('img/bg-img/14.jpg'); }
.bg-img-15 { background-image: url('img/bg-img/15.jpg'); }
.bg-img-16 { background-image: url('img/bg-img/16.jpg'); }
.bg-img-17 { background-image: url('img/bg-img/17.jpg'); }
.bg-img-18 { background-image: url('img/bg-img/18.jpg'); }
.bg-img-20 { background-image: url('img/bg-img/20.jpg'); }
.bg-img-22 { background-image: url('img/bg-img/22.jpg'); }
.bg-img-23 { background-image: url('img/bg-img/23.jpg'); }
.bg-img-24 { background-image: url('img/bg-img/24.jpg'); }
.bg-img-25 { background-image: url('img/bg-img/25.jpg'); }
.bg-img-26 { background-image: url('img/bg-img/26.jpg'); }
.bg-img-32 { background-image: url('img/bg-img/32.jpg'); }
.bg-img-33 { background-image: url('img/bg-img/33.jpg'); }

/* ============================================================
   CSP-CLEAN VARIANT CLASSES
   For elements.html and services.html inline style="..." overrides.
   ============================================================ */
.ve-btn-dark         { background: var(--ve-dark);  color: #fff; }
.ve-btn-outline-gold { background: transparent; border: 2px solid var(--ve-gold); color: var(--ve-gold); }
.counter-section-rounded { border-radius: var(--ve-radius); overflow: hidden; }
.contact-form-wrap-narrow { max-width: 700px; }
.ve-insight-cat-spacing { margin-bottom: 16px; }
.sub-tag-orange { color: var(--brand-orange); }
.reach-out-link { color: var(--ve-gold); }

/* ============================================================
   SCROLL-UP BUTTON (CSP-clean version of test.php styles)
   ============================================================ */
html { scroll-behavior: smooth; }
.scroll-up-btn {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 48px;
    height: 48px;
    background-color: #F7941D;
    color: #ffffff;
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(247, 148, 29, 0.4);
    z-index: 9999;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all 0.3s ease-in-out;
}
.scroll-up-btn.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}
.scroll-up-btn:hover {
    background-color: #e07f0f;
    box-shadow: 0 6px 20px rgba(247, 148, 29, 0.6);
    transform: translateY(-3px);
}
.scroll-up-btn:active {
    transform: translateY(0);
}

/* ============================================================
   PAGE HERO (inner pages)
   ============================================================ */
.ve-page-hero {
  position:relative; padding:160px 0 90px;
  background-size:cover; background-position:center;
  overflow:hidden;
}
.ve-page-hero-overlay { position:absolute; inset:0; background:linear-gradient(135deg, rgba(13,27,42,0.92) 0%, rgba(13,27,42,0.6) 100%); }
.ve-page-hero-content { position:relative; z-index:2; }
.ve-page-hero-content h1 { font-size:50px; font-weight:900; color:#fff; margin:12px 0 20px; line-height:1.15; }
.ve-page-hero-content h1 span { color:var(--ve-gold); }
.ve-breadcrumb { list-style:none; margin:0; padding:0; display:flex; gap:10px; align-items:center; }
.ve-breadcrumb li { font-size:14px; color:rgba(255,255,255,0.55); }
.ve-breadcrumb li::after { content:'/'; margin-left:10px; }
.ve-breadcrumb li:last-child::after { display:none; }
.ve-breadcrumb li a { color:var(--ve-gold); text-decoration:none; }
.ve-breadcrumb li.active { color:rgba(255,255,255,0.8); }
.ve-post-meta-hero { display:flex; gap:24px; flex-wrap:wrap; margin-top:10px; }
.ve-post-meta-hero span { font-size:14px; color:rgba(255,255,255,0.6); display:inline-flex; align-items:center; gap:7px; }

/* ============================================================
   ABOUT PAGE
   ============================================================ */
.ve-about-img-stack { position:relative; padding-bottom:60px; padding-right:60px; }
.ve-about-img-1 { height:420px; border-radius:16px; background-size:cover; background-position:center; }
.ve-about-img-2 {
  position:absolute; bottom:0; right:0; width:220px; height:180px;
  border-radius:14px; background-size:cover; background-position:center;
  border:4px solid var(--ve-gold); box-shadow:0 15px 40px rgba(0,0,0,0.25);
}
.ve-about-ribbon {
  position:absolute; top:30px; left:-20px;
  background:var(--ve-gold); border-radius:12px; padding:20px 24px;
  text-align:center; box-shadow:0 10px 30px rgba(212,160,23,0.35);
}
.ve-about-ribbon strong { display:block; font-size:36px; font-family:'Montserrat',sans-serif; font-weight:800; color:var(--ve-dark); }
.ve-about-ribbon span { font-size:11px; font-weight:700; color:var(--ve-dark); text-transform:uppercase; letter-spacing:0.8px; }

.ve-about-text { padding-left:50px; }
.ve-about-text h2 { font-size:38px; font-weight:900; line-height:1.2; margin-bottom:16px; }
.ve-about-text h2 span { color:var(--ve-gold); }
.ve-lead { font-size:17px; color:var(--ve-dark); font-weight:500; margin-bottom:16px; line-height:1.7; }

.ve-about-features { margin:24px 0; display:flex; flex-direction:column; gap:10px; }
.ve-af-item { display:flex; align-items:center; gap:10px; font-size:14px; color:var(--ve-text); }
.ve-af-item i { color:var(--ve-gold); font-size:14px; }

/* MVV Cards */
.ve-mvv-section { background:var(--ve-dark); padding:80px 0; }
.ve-mvv-grid { display:grid; grid-template-columns:repeat(3,1fr); gap:30px; }
.ve-mvv-card { background:rgba(255,255,255,0.04); border:1px solid rgba(255,255,255,0.08); border-radius:var(--ve-radius); padding:40px 30px; text-align:center; transition:var(--ve-trans); }
.ve-mvv-card:hover { background:rgba(212,160,23,0.08); border-color:rgba(212,160,23,0.3); }
.ve-mvv-icon { width:64px; height:64px; background:linear-gradient(135deg, rgba(212,160,23,0.2), rgba(212,160,23,0.05)); border:1px solid rgba(212,160,23,0.3); border-radius:50%; display:flex; align-items:center; justify-content:center; margin:0 auto 20px; font-size:26px; color:var(--ve-gold); }
.ve-mvv-card h4 { font-size:20px; font-weight:800; color:#fff; margin-bottom:12px; }
.ve-mvv-card p { font-size:14px; color:rgba(255,255,255,0.55); line-height:1.8; }

/* Team */
.ve-team-section { background:var(--ve-light); }
.ve-team-card { background:#fff; border-radius:var(--ve-radius); overflow:hidden; box-shadow:var(--ve-shadow); transition:var(--ve-trans); margin-bottom:30px; }
.ve-team-card:hover { transform:translateY(-5px); }
.ve-team-img { height:280px; background-size:cover; background-position:center top; }
.ve-team-info { padding:22px 24px; }
.ve-team-info h5 { font-size:18px; font-weight:800; color:var(--ve-dark); margin-bottom:4px; }
.ve-team-info span { font-size:13px; color:var(--ve-text); display:block; margin-bottom:14px; }
.ve-team-social { display:flex; gap:8px; }
.ve-team-social a { width:32px; height:32px; border-radius:6px; background:var(--ve-light); color:var(--ve-text); display:flex; align-items:center; justify-content:center; font-size:12px; text-decoration:none; transition:var(--ve-trans); }
.ve-team-social a:hover { background:var(--ve-gold); color:var(--ve-dark); }

/* ============================================================
   SERVICES PAGE
   ============================================================ */
.ve-process-section { background:var(--ve-dark); padding:90px 0; }
.ve-process-grid { display:flex; align-items:center; justify-content:center; gap:10px; flex-wrap:wrap; margin-top:50px; }
.ve-process-step { background:rgba(255,255,255,0.04); border:1px solid rgba(255,255,255,0.1); border-radius:var(--ve-radius); padding:36px 28px; text-align:center; flex:1; min-width:180px; max-width:220px; transition:var(--ve-trans); }
.ve-process-step:hover { background:rgba(212,160,23,0.08); border-color:rgba(212,160,23,0.3); }
.ve-process-num { font-size:40px; font-family:'Montserrat',sans-serif; font-weight:800; color:rgba(212,160,23,0.3); margin-bottom:12px; line-height:1; }
.ve-process-step h5 { font-size:16px; font-weight:800; color:#fff; margin-bottom:10px; }
.ve-process-step p { font-size:13px; color:rgba(255,255,255,0.5); line-height:1.7; margin:0; }
.ve-process-arrow { font-size:24px; color:rgba(212,160,23,0.4); flex-shrink:0; }

/* FAQ */
.ve-faq-section { background:var(--ve-light); }
.ve-faq-list { display:flex; flex-direction:column; gap:12px; }
.ve-faq-item { background:#fff; border-radius:10px; border:1px solid var(--ve-border); overflow:hidden; }
.ve-faq-q { display:flex; justify-content:space-between; align-items:center; padding:18px 22px; cursor:pointer; gap:16px; }
.ve-faq-q span { font-size:15px; font-weight:700; color:var(--ve-dark); }
.ve-faq-q i { color:var(--ve-gold); font-size:14px; flex-shrink:0; }
.ve-faq-a { padding:0 22px 18px; font-size:14px; color:var(--ve-text); line-height:1.8; display:none; }
.ve-faq-item.open .ve-faq-a { display:block; }
.ve-faq-item.open .ve-faq-q { border-bottom:1px solid var(--ve-border); }

/* ============================================================
   CONTACT PAGE
   ============================================================ */
.ve-contact-cards-section { background:var(--ve-dark); padding:0; margin-top:-1px; }
.ve-contact-cards-grid { display:grid; grid-template-columns:repeat(3,1fr); }
.ve-contact-info-card { padding:50px 40px; text-align:center; border-right:1px solid rgba(255,255,255,0.08); }
.ve-contact-info-card:last-child { border-right:none; }
.ve-ci-icon { width:60px; height:60px; background:rgba(212,160,23,0.15); border:1px solid rgba(212,160,23,0.3); border-radius:50%; display:flex; align-items:center; justify-content:center; margin:0 auto 16px; font-size:22px; color:var(--ve-gold); }
.ve-contact-info-card h5 { font-size:17px; font-weight:800; color:#fff; margin-bottom:10px; }
.ve-contact-info-card p { font-size:14px; color:rgba(255,255,255,0.55); margin:0; line-height:1.7; }
.ve-contact-info-card small { font-size:12px; opacity:0.6; }

.ve-contact-form-wrap { background:#fff; border-radius:16px; padding:50px; box-shadow:var(--ve-shadow); }
.ve-contact-form-wrap h2 { font-size:34px; font-weight:900; margin-bottom:10px; }
.ve-contact-form-wrap h2 span { color:var(--ve-gold); }
.ve-contact-form-wrap > p { font-size:15px; color:var(--ve-text); margin-bottom:30px; }

.ve-contact-form .ve-form-row { display:grid; grid-template-columns:1fr 1fr; gap:20px; }
.ve-form-group { display:flex; flex-direction:column; margin-bottom:20px; }
.ve-form-group label { font-size:13px; font-weight:700; color:var(--ve-dark); margin-bottom:7px; text-transform:uppercase; letter-spacing:0.5px; }
.ve-form-group input, .ve-form-group select, .ve-form-group textarea {
  border:1px solid var(--ve-border); border-radius:8px; padding:12px 16px;
  font-size:14px; color:var(--ve-dark); outline:none; transition:var(--ve-trans);
  font-family:'Montserrat',sans-serif; background:#fff;
}
.ve-form-group input:focus, .ve-form-group select:focus, .ve-form-group textarea:focus { border-color:var(--ve-gold); box-shadow:0 0 0 3px rgba(212,160,23,0.12); }
.ve-form-group textarea { resize:vertical; }

.ve-contact-aside { display:flex; flex-direction:column; gap:24px; padding-left:20px; }
.ve-ca-box { background:var(--ve-dark); border-radius:14px; padding:32px; }
.ve-ca-box h4 { font-size:18px; font-weight:800; color:#fff; margin-bottom:20px; }
.ve-ca-list { list-style:none; margin:0; padding:0; display:flex; flex-direction:column; gap:12px; }
.ve-ca-list li { font-size:14px; color:rgba(255,255,255,0.7); display:flex; align-items:center; gap:10px; }
.ve-ca-list li i { color:var(--ve-gold); }
.ve-ca-hours { background:var(--ve-light); border-radius:14px; padding:28px; }
.ve-ca-hours h5 { font-size:16px; font-weight:800; color:var(--ve-dark); margin-bottom:16px; display:flex; align-items:center; gap:8px; }
.ve-ca-hours h5 i { color:var(--ve-gold); }
.ve-ca-hours ul { list-style:none; margin:0; padding:0; display:flex; flex-direction:column; gap:10px; }
.ve-ca-hours ul li { display:flex; justify-content:space-between; font-size:14px; color:var(--ve-text); padding-bottom:10px; border-bottom:1px solid var(--ve-border); }
.ve-ca-hours ul li:last-child { border-bottom:none; padding-bottom:0; }
.ve-ca-hours ul li strong { color:var(--ve-dark); font-weight:700; }
.ve-ca-social { background:#fff; border-radius:14px; padding:24px; border:1px solid var(--ve-border); }
.ve-ca-social h5 { font-size:15px; font-weight:800; color:var(--ve-dark); margin-bottom:16px; }

/* ============================================================
   BLOG / POST
   ============================================================ */
.ve-pagination { display:flex; gap:8px; margin-top:40px; }
.ve-pagination a { width:40px; height:40px; border-radius:8px; display:flex; align-items:center; justify-content:center; font-size:14px; font-weight:700; text-decoration:none; background:var(--ve-light); color:var(--ve-dark); transition:var(--ve-trans); border:1px solid var(--ve-border); }
.ve-pagination a:hover, .ve-pagination a.active { background:var(--ve-gold); color:var(--ve-dark); border-color:var(--ve-gold); }

.ve-sidebar { position:sticky; top:90px; }
.ve-sidebar-widget { background:#fff; border-radius:var(--ve-radius); padding:28px; margin-bottom:24px; border:1px solid var(--ve-border); }
.ve-sidebar-title { font-size:16px; font-weight:900; color:var(--ve-dark); margin-bottom:20px; padding-bottom:12px; border-bottom:2px solid var(--ve-gold); display:inline-block; }
.ve-search-box { display:flex; border:1px solid var(--ve-border); border-radius:8px; overflow:hidden; }
.ve-search-box input { flex:1; border:none; padding:12px 14px; font-size:14px; outline:none; font-family:'Montserrat',sans-serif; }
.ve-search-box button { background:var(--ve-gold); border:none; padding:0 18px; cursor:pointer; color:var(--ve-dark); font-size:14px; }
.ve-cat-list { list-style:none; margin:0; padding:0; }
.ve-cat-list li { border-bottom:1px solid var(--ve-border); }
.ve-cat-list li:last-child { border-bottom:none; }
.ve-cat-list li a { display:flex; justify-content:space-between; padding:10px 0; font-size:14px; color:var(--ve-text); text-decoration:none; transition:var(--ve-trans); }
.ve-cat-list li a:hover { color:var(--ve-gold); }
.ve-cat-list li a span { background:var(--ve-light); border-radius:4px; padding:2px 8px; font-size:12px; font-weight:700; color:var(--ve-dark); }
.ve-recent-post { display:flex; gap:14px; margin-bottom:16px; padding-bottom:16px; border-bottom:1px solid var(--ve-border); }
.ve-recent-post:last-child { border-bottom:none; margin-bottom:0; padding-bottom:0; }
.ve-rp-img { width:64px; height:54px; border-radius:8px; background-size:cover; background-position:center; flex-shrink:0; }
.ve-recent-post a { font-size:13px; font-weight:700; color:var(--ve-dark); text-decoration:none; display:block; margin-bottom:4px; line-height:1.4; transition:var(--ve-trans); }
.ve-recent-post a:hover { color:var(--ve-gold); }
.ve-recent-post span { font-size:12px; color:#aaa; display:flex; align-items:center; gap:5px; }
.ve-tags { display:flex; flex-wrap:wrap; gap:8px; }
.ve-tags a { background:var(--ve-light); color:var(--ve-text); border-radius:6px; padding:6px 12px; font-size:12px; font-weight:600; text-decoration:none; transition:var(--ve-trans); border:1px solid var(--ve-border); }
.ve-tags a:hover { background:var(--ve-gold); color:var(--ve-dark); border-color:var(--ve-gold); }

/* Single post */
.ve-article { background:#fff; border-radius:16px; padding:0; overflow:hidden; box-shadow:var(--ve-shadow); margin-bottom:40px; }
.ve-article-featured { height:380px; background-size:cover; background-position:center; }
.ve-article-body { padding:40px; }
.ve-article-body h3 { font-size:22px; font-weight:800; color:var(--ve-dark); margin:28px 0 12px; }
.ve-article-body p { font-size:15px; line-height:1.85; color:var(--ve-text); margin-bottom:16px; }
.ve-article-lead { font-size:17px; font-weight:500; color:var(--ve-dark); line-height:1.7; border-left:4px solid var(--ve-gold); padding-left:20px; margin-bottom:28px; }
.ve-blockquote { background:var(--ve-light); border-left:4px solid var(--ve-gold); border-radius:0 10px 10px 0; padding:24px 28px; margin:30px 0; }
.ve-blockquote p { font-size:18px; font-style:italic; font-weight:600; color:var(--ve-dark); margin-bottom:8px; }
.ve-blockquote cite { font-size:13px; color:var(--ve-text); font-style:normal; }
.ve-article-tags { margin-top:30px; padding-top:20px; border-top:1px solid var(--ve-border); display:flex; align-items:center; gap:10px; flex-wrap:wrap; }
.ve-article-tags strong { font-size:13px; color:var(--ve-dark); font-weight:700; }
.ve-article-share { display:flex; align-items:center; gap:10px; margin-top:16px; }
.ve-article-share strong { font-size:13px; color:var(--ve-dark); font-weight:700; }
.ve-article-share a { width:36px; height:36px; border-radius:8px; background:var(--ve-light); color:var(--ve-text); display:flex; align-items:center; justify-content:center; text-decoration:none; transition:var(--ve-trans); }
.ve-article-share a:hover { background:var(--ve-gold); color:var(--ve-dark); }

/* Comments */
.ve-comments-section { margin-bottom:40px; }
.ve-comments-section h4, .ve-comment-form-wrap h4 { font-size:22px; font-weight:800; color:var(--ve-dark); margin-bottom:24px; }
.ve-comment { display:flex; gap:16px; margin-bottom:24px; padding-bottom:24px; border-bottom:1px solid var(--ve-border); }
.ve-comment.ve-comment-reply { margin-left:60px; }
.ve-comment:last-child { border-bottom:none; }
.ve-comment-avatar { width:50px; height:50px; border-radius:50%; background-size:cover; background-position:center; flex-shrink:0; }
.ve-comment-body { flex:1; }
.ve-comment-meta { display:flex; gap:16px; align-items:center; margin-bottom:8px; }
.ve-comment-meta strong { font-size:15px; font-weight:800; color:var(--ve-dark); }
.ve-comment-meta span { font-size:12px; color:#aaa; }
.ve-comment-body p { font-size:14px; color:var(--ve-text); line-height:1.7; margin-bottom:10px; }
.ve-reply-btn { font-size:12px; font-weight:700; color:var(--ve-gold); text-decoration:none; text-transform:uppercase; letter-spacing:0.5px; }
.ve-comment-form-wrap { background:#fff; border-radius:16px; padding:40px; box-shadow:var(--ve-shadow); }

/* Responsive additions */
@media(max-width:991px) {
  .ve-about-text { padding-left:0; margin-top:40px; }
  .ve-contact-cards-grid { grid-template-columns:1fr; }
  .ve-contact-info-card { border-right:none; border-bottom:1px solid rgba(255,255,255,0.08); }
  .ve-mvv-grid { grid-template-columns:1fr; }
  .ve-contact-aside { padding-left:0; margin-top:30px; }
  .ve-process-grid { flex-direction:column; }
  .ve-process-arrow { transform:rotate(90deg); }
  .ve-page-hero-content h1 { font-size:36px; }
}
@media(max-width:767px) {
  .ve-contact-form .ve-form-row { grid-template-columns:1fr; }
  .ve-contact-form-wrap { padding:28px; }
  .ve-article-body { padding:24px; }
  .ve-about-img-stack { padding-bottom:30px; padding-right:30px; }
  .ve-about-img-2 { width:150px; height:120px; }
}

/* ============================================================
   PAGE-SPECIFIC COMPONENTS (all inner pages)
   ============================================================ */

/* Page Hero */
.ve-page-hero {
  min-height: 380px; background-size:cover; background-position:center;
  position:relative; display:flex; align-items:flex-end; padding-bottom:60px;
  margin-top:72px;
}
.ve-page-hero-sm { min-height:460px; }
.ve-page-hero-overlay { position:absolute; inset:0; background:linear-gradient(180deg, rgba(13,27,42,0.5) 0%, rgba(13,27,42,0.85) 100%); }
.ve-page-hero-content { position:relative; z-index:2; }
.ve-page-hero-content h1 { font-size:46px; font-weight:900; color:#fff; margin:10px 0 18px; line-height:1.15; }
.ve-page-hero-content h1 span { color:var(--ve-gold); }
.ve-post-meta-hero { display:flex; gap:24px; flex-wrap:wrap; }
.ve-post-meta-hero span { font-size:14px; color:rgba(255,255,255,0.7); display:inline-flex; align-items:center; gap:6px; }

/* Breadcrumb */
.ve-breadcrumb { list-style:none; margin:0; padding:0; display:flex; gap:10px; }
.ve-breadcrumb li { font-size:14px; color:rgba(255,255,255,0.6); }
.ve-breadcrumb li a { color:var(--ve-gold); text-decoration:none; }
.ve-breadcrumb li a:hover { color:#fff; }
.ve-breadcrumb li.active { color:rgba(255,255,255,0.5); }
.ve-breadcrumb li:not(:last-child)::after { content:'/'; margin-left:10px; color:rgba(255,255,255,0.3); }

/* About Page */
.ve-about-img-stack { position:relative; padding:0 40px 40px 0; }
.ve-about-img-1 { height:400px; border-radius:16px; background-size:cover; background-position:center; }
.ve-about-img-2 { position:absolute; bottom:0; right:0; width:55%; height:230px; border-radius:14px; background-size:cover; background-position:center; border:4px solid #fff; box-shadow:0 20px 50px rgba(0,0,0,0.2); }
.ve-about-ribbon { position:absolute; top:30px; left:-20px; background:var(--ve-gold); border-radius:12px; padding:18px 22px; text-align:center; }
.ve-about-ribbon strong { display:block; font-size:36px; font-family:'Montserrat',sans-serif; font-weight:800; color:var(--ve-dark); }
.ve-about-ribbon span { font-size:11px; font-weight:700; color:var(--ve-dark); text-transform:uppercase; letter-spacing:0.8px; }
.ve-about-text { padding-left:40px; }
.ve-about-text h2 { font-size:38px; font-weight:900; margin-bottom:16px; }
.ve-about-text h2 span { color:var(--ve-gold); }
.ve-lead { font-size:17px; font-weight:500; color:var(--ve-dark); margin-bottom:14px; line-height:1.7; }
.ve-about-text > p { font-size:15px; line-height:1.8; margin-bottom:24px; }
.ve-about-features { display:flex; flex-direction:column; gap:10px; margin-bottom:10px; }
.ve-af-item { display:flex; align-items:center; gap:12px; font-size:14px; color:var(--ve-dark); font-weight:500; }
.ve-af-item i { color:var(--ve-gold); font-size:14px; }

/* MVV Section */
.ve-mvv-section { background:linear-gradient(135deg, var(--ve-dark) 0%, var(--ve-navy) 100%); padding:80px 0; }
.ve-mvv-section .ve-section-header h2 { color:#fff; }
.ve-mvv-section .ve-section-header p { color:rgba(255,255,255,0.6); }
.ve-mvv-grid { display:grid; grid-template-columns:repeat(3,1fr); gap:28px; margin-top:50px; }
.ve-mvv-card { background:rgba(255,255,255,0.06); border:1px solid rgba(255,255,255,0.1); border-radius:var(--ve-radius); padding:36px 28px; text-align:center; transition:var(--ve-trans); }
.ve-mvv-card:hover { background:rgba(255,255,255,0.1); transform:translateY(-4px); }
.ve-mvv-icon { width:64px; height:64px; background:linear-gradient(135deg, var(--ve-gold), var(--ve-gold2)); border-radius:16px; display:flex; align-items:center; justify-content:center; font-size:26px; color:var(--ve-dark); margin:0 auto 20px; }
.ve-mvv-card h4 { font-size:20px; font-weight:800; color:#fff; margin-bottom:12px; }
.ve-mvv-card p { font-size:14px; color:rgba(255,255,255,0.6); line-height:1.8; margin:0; }

/* Team Cards */
.ve-team-section { background:var(--ve-light); }
.ve-team-card { background:#fff; border-radius:var(--ve-radius); overflow:hidden; border:1px solid var(--ve-border); transition:var(--ve-trans); margin-bottom:28px; }
.ve-team-card:hover { transform:translateY(-5px); box-shadow:var(--ve-shadow); }
.ve-team-img { height:260px; background-size:cover; background-position:center top; }
.ve-team-info { padding:22px; text-align:center; }
.ve-team-info h5 { font-size:17px; font-weight:800; color:var(--ve-dark); margin-bottom:4px; }
.ve-team-info span { font-size:13px; color:var(--ve-text); display:block; margin-bottom:14px; }
.ve-team-social { display:flex; justify-content:center; gap:8px; }
.ve-team-social a { width:34px; height:34px; border-radius:6px; background:var(--ve-light); color:var(--ve-navy); display:flex; align-items:center; justify-content:center; font-size:13px; text-decoration:none; transition:var(--ve-trans); }
.ve-team-social a:hover { background:var(--ve-gold); color:var(--ve-dark); }

/* Process Steps */
.ve-process-section { background:var(--ve-light); padding:80px 0; }
.ve-process-grid { display:flex; align-items:center; gap:0; margin-top:50px; flex-wrap:wrap; }
.ve-process-step { flex:1; min-width:200px; background:#fff; border-radius:var(--ve-radius); padding:32px 24px; text-align:center; border:1px solid var(--ve-border); }
.ve-process-num { font-size:42px; font-family:'Montserrat',sans-serif; font-weight:800; color:var(--ve-gold); line-height:1; margin-bottom:14px; }
.ve-process-step h5 { font-size:16px; font-weight:800; color:var(--ve-dark); margin-bottom:8px; }
.ve-process-step p { font-size:13px; color:var(--ve-text); line-height:1.7; margin:0; }
.ve-process-arrow { font-size:24px; color:var(--ve-gold); padding:0 16px; flex-shrink:0; }

/* FAQ */
.ve-faq-section { background:#fff; }
.ve-faq-list { display:flex; flex-direction:column; gap:0; }
.ve-faq-item { border-bottom:1px solid var(--ve-border); }
.ve-faq-q { display:flex; justify-content:space-between; align-items:center; padding:18px 0; cursor:pointer; gap:16px; }
.ve-faq-q span { font-size:15px; font-weight:700; color:var(--ve-dark); }
.ve-faq-q i { font-size:14px; color:var(--ve-gold); flex-shrink:0; transition:var(--ve-trans); }
.ve-faq-item.open .ve-faq-q i { transform:rotate(45deg); }
.ve-faq-a { font-size:14px; color:var(--ve-text); line-height:1.8; padding:0 0 16px; display:none; }
.ve-faq-item.open .ve-faq-a { display:block; }

/* Contact Cards */
.ve-contact-cards-section { background:var(--ve-light); padding:60px 0; }
.ve-contact-cards-grid { display:grid; grid-template-columns:repeat(3,1fr); gap:24px; }
.ve-contact-info-card { background:#fff; border-radius:var(--ve-radius); padding:36px 28px; text-align:center; border:1px solid var(--ve-border); transition:var(--ve-trans); }
.ve-contact-info-card:hover { transform:translateY(-4px); box-shadow:var(--ve-shadow); }
.ve-ci-icon { width:60px; height:60px; background:linear-gradient(135deg, var(--ve-dark), var(--ve-navy)); border-radius:14px; display:flex; align-items:center; justify-content:center; font-size:22px; color:var(--ve-gold); margin:0 auto 18px; }
.ve-contact-info-card h5 { font-size:17px; font-weight:800; color:var(--ve-dark); margin-bottom:8px; }
.ve-contact-info-card p { font-size:14px; color:var(--ve-text); line-height:1.7; margin:0; }

/* Contact Form Wrap */
.ve-contact-form-wrap h2 { font-size:36px; font-weight:900; margin-bottom:10px; }
.ve-contact-form-wrap h2 span { color:var(--ve-gold); }
.ve-contact-form-wrap > p { font-size:15px; color:var(--ve-text); margin-bottom:28px; }
.ve-contact-form { display:flex; flex-direction:column; gap:18px; }
.ve-form-row { display:grid; grid-template-columns:1fr 1fr; gap:18px; }
.ve-form-group { display:flex; flex-direction:column; gap:6px; }
.ve-form-group label { font-size:13px; font-weight:700; color:var(--ve-dark); text-transform:uppercase; letter-spacing:0.5px; }
.ve-form-group input,
.ve-form-group select,
.ve-form-group textarea { border:2px solid var(--ve-border); border-radius:8px; padding:12px 16px; font-size:14px; font-family:'Montserrat',sans-serif; color:var(--ve-dark); background:#fff; outline:none; transition:var(--ve-trans); }
.ve-form-group input:focus,
.ve-form-group select:focus,
.ve-form-group textarea:focus { border-color:var(--ve-gold); box-shadow:0 0 0 3px rgba(212,160,23,0.1); }
.ve-form-group textarea { resize:vertical; }

/* Contact Aside */
.ve-contact-aside { display:flex; flex-direction:column; gap:24px; padding-left:30px; }
.ve-ca-box { background:var(--ve-light); border-radius:var(--ve-radius); padding:28px; border:1px solid var(--ve-border); }
.ve-ca-box h4 { font-size:18px; font-weight:800; color:var(--ve-dark); margin-bottom:18px; }
.ve-ca-list { list-style:none; margin:0; padding:0; display:flex; flex-direction:column; gap:12px; }
.ve-ca-list li { font-size:14px; color:var(--ve-text); display:flex; align-items:center; gap:10px; }
.ve-ca-list li i { color:var(--ve-gold); }
.ve-ca-hours { background:var(--ve-dark); border-radius:var(--ve-radius); padding:24px; }
.ve-ca-hours h5 { font-size:15px; font-weight:700; color:var(--ve-gold); margin-bottom:16px; display:flex; align-items:center; gap:8px; }
.ve-ca-hours ul { list-style:none; margin:0; padding:0; }
.ve-ca-hours ul li { display:flex; justify-content:space-between; padding:10px 0; border-bottom:1px solid rgba(255,255,255,0.07); font-size:14px; }
.ve-ca-hours ul li:last-child { border-bottom:none; }
.ve-ca-hours ul li span { color:rgba(255,255,255,0.5); }
.ve-ca-hours ul li strong { color:#fff; }
.ve-ca-social h5 { font-size:15px; font-weight:700; color:var(--ve-dark); margin-bottom:12px; }

/* Blog / Sidebar */
.ve-sidebar { display:flex; flex-direction:column; gap:30px; padding-left:20px; }
.ve-sidebar-widget { background:#fff; border-radius:var(--ve-radius); padding:28px; border:1px solid var(--ve-border); }
.ve-sidebar-title { font-size:16px; font-weight:800; color:var(--ve-dark); margin-bottom:18px; padding-bottom:12px; border-bottom:2px solid var(--ve-gold); display:inline-block; }
.ve-search-box { display:flex; border:2px solid var(--ve-border); border-radius:8px; overflow:hidden; }
.ve-search-box input { flex:1; border:none; padding:10px 14px; font-size:14px; outline:none; font-family:'Montserrat',sans-serif; }
.ve-search-box button { background:var(--ve-gold); border:none; padding:0 16px; color:var(--ve-dark); cursor:pointer; font-size:14px; transition:var(--ve-trans); }
.ve-search-box button:hover { background:var(--ve-dark); color:#fff; }
.ve-cat-list { list-style:none; margin:0; padding:0; }
.ve-cat-list li a { display:flex; justify-content:space-between; padding:10px 0; font-size:14px; color:var(--ve-text); text-decoration:none; border-bottom:1px solid var(--ve-border); transition:var(--ve-trans); }
.ve-cat-list li:last-child a { border-bottom:none; }
.ve-cat-list li a span { background:var(--ve-light); color:var(--ve-dark); font-size:12px; font-weight:700; padding:2px 8px; border-radius:20px; }
.ve-cat-list li a:hover { color:var(--ve-gold); }
.ve-recent-post { display:flex; gap:12px; align-items:flex-start; margin-bottom:16px; }
.ve-recent-post:last-child { margin-bottom:0; }
.ve-rp-img { width:65px; height:50px; border-radius:8px; background-size:cover; background-position:center; flex-shrink:0; }
.ve-recent-post div a { display:block; font-size:13px; font-weight:700; color:var(--ve-dark); text-decoration:none; margin-bottom:4px; line-height:1.4; }
.ve-recent-post div a:hover { color:var(--ve-gold); }
.ve-recent-post div span { font-size:12px; color:var(--ve-text); display:inline-flex; align-items:center; gap:4px; }
.ve-tags { display:flex; flex-wrap:wrap; gap:8px; }
.ve-tags a { background:var(--ve-light); color:var(--ve-text); font-size:13px; padding:6px 14px; border-radius:20px; text-decoration:none; border:1px solid var(--ve-border); transition:var(--ve-trans); }
.ve-tags a:hover { background:var(--ve-gold); color:var(--ve-dark); border-color:var(--ve-gold); }

/* Pagination */
.ve-pagination { display:flex; gap:8px; margin-top:40px; flex-wrap:wrap; }
.ve-pagination a { width:40px; height:40px; border-radius:8px; background:var(--ve-light); border:1px solid var(--ve-border); display:flex; align-items:center; justify-content:center; font-size:14px; font-weight:600; color:var(--ve-text); text-decoration:none; transition:var(--ve-trans); }
.ve-pagination a.active, .ve-pagination a:hover { background:var(--ve-gold); color:var(--ve-dark); border-color:var(--ve-gold); }

/* Article */
.ve-article { background:#fff; border-radius:var(--ve-radius); overflow:hidden; border:1px solid var(--ve-border); margin-bottom:40px; }
.ve-article-featured { height:380px; background-size:cover; background-position:center; }
.ve-article-body { padding:36px; }
.ve-article-lead { font-size:17px; font-weight:500; color:var(--ve-dark); line-height:1.8; margin-bottom:28px; padding-bottom:28px; border-bottom:1px solid var(--ve-border); }
.ve-article-body h3 { font-size:22px; font-weight:800; color:var(--ve-dark); margin:28px 0 12px; }
.ve-article-body p { font-size:15px; line-height:1.8; color:var(--ve-text); margin-bottom:16px; }
.ve-blockquote { background:var(--ve-light); border-left:4px solid var(--ve-gold); border-radius:0 10px 10px 0; padding:24px 28px; margin:28px 0; }
.ve-blockquote p { font-size:17px; font-style:italic; color:var(--ve-dark); font-weight:500; margin:0 0 8px; }
.ve-blockquote cite { font-size:13px; color:var(--ve-gold); font-weight:700; font-style:normal; }
.ve-article-tags { display:flex; align-items:center; gap:10px; margin-top:28px; flex-wrap:wrap; }
.ve-article-tags strong { font-size:14px; color:var(--ve-dark); }
.ve-article-tags a { background:var(--ve-light); color:var(--ve-text); font-size:13px; padding:5px 12px; border-radius:20px; text-decoration:none; border:1px solid var(--ve-border); transition:var(--ve-trans); }
.ve-article-tags a:hover { background:var(--ve-gold); color:var(--ve-dark); border-color:var(--ve-gold); }
.ve-article-share { display:flex; align-items:center; gap:10px; margin-top:16px; }
.ve-article-share strong { font-size:14px; color:var(--ve-dark); }
.ve-article-share a { width:34px; height:34px; border-radius:8px; background:var(--ve-light); color:var(--ve-navy); display:flex; align-items:center; justify-content:center; font-size:14px; text-decoration:none; transition:var(--ve-trans); border:1px solid var(--ve-border); }
.ve-article-share a:hover { background:var(--ve-gold); color:var(--ve-dark); border-color:var(--ve-gold); }

/* Comments */
.ve-comments-section { margin-bottom:40px; }
.ve-comments-section h4 { font-size:22px; font-weight:800; color:var(--ve-dark); margin-bottom:24px; }
.ve-comment { display:flex; gap:16px; margin-bottom:24px; }
.ve-comment-reply { margin-left:50px; }
.ve-comment-avatar { width:50px; height:50px; border-radius:50%; background-size:cover; background-position:center; flex-shrink:0; }
.ve-comment-body { flex:1; background:var(--ve-light); border-radius:10px; padding:18px; }
.ve-comment-meta { display:flex; justify-content:space-between; align-items:center; margin-bottom:8px; flex-wrap:wrap; gap:6px; }
.ve-comment-meta strong { font-size:15px; font-weight:800; color:var(--ve-dark); }
.ve-comment-meta span { font-size:13px; color:var(--ve-text); }
.ve-comment-body p { font-size:14px; color:var(--ve-text); line-height:1.7; margin-bottom:10px; }
.ve-reply-btn { font-size:13px; font-weight:700; color:var(--ve-gold); text-decoration:none; }
.ve-reply-btn:hover { color:var(--ve-dark); }

/* Comment form */
.ve-comment-form-wrap h4 { font-size:22px; font-weight:800; color:var(--ve-dark); margin-bottom:24px; }

/* Elements page */
.ve-elements-section { background:#fff; }
.ve-el-block { margin-bottom:70px; }
.ve-el-title { font-size:22px; font-weight:900; color:var(--ve-dark); margin-bottom:28px; padding-bottom:14px; border-bottom:2px solid var(--ve-border); display:flex; align-items:center; gap:14px; }
.ve-el-title span { display:inline-flex; align-items:center; justify-content:center; width:36px; height:36px; background:var(--ve-gold); color:var(--ve-dark); border-radius:8px; font-size:14px; font-weight:900; flex-shrink:0; }
.ve-el-demo { display:flex; flex-wrap:wrap; gap:14px; align-items:center; }

/* Why us section */
.ve-whyus-section { background:#fff; }
.ve-whyus-img-wrap { position:relative; padding-bottom:40px; padding-right:40px; }
.ve-whyus-img-main { height:480px; border-radius:16px; background-size:cover; background-position:center; }
.ve-whyus-badge { position:absolute; bottom:0; right:0; background:var(--ve-gold); border-radius:14px; padding:22px 28px; text-align:center; min-width:160px; }
.ve-whyus-badge strong { display:block; font-size:40px; font-family:'Montserrat',sans-serif; font-weight:800; color:var(--ve-dark); }
.ve-whyus-badge span { font-size:12px; font-weight:600; color:var(--ve-dark); opacity:0.7; text-transform:uppercase; letter-spacing:0.8px; }
.ve-whyus-content { padding-left:40px; }
.ve-whyus-content h2 { font-size:40px; font-weight:900; line-height:1.2; margin-bottom:16px; }
.ve-whyus-content h2 span { color:var(--ve-gold); }

/* Responsive extras */
@media(max-width:991px) {
  .ve-mvv-grid { grid-template-columns:1fr; }
  .ve-contact-cards-grid { grid-template-columns:1fr; }
  .ve-process-grid { flex-direction:column; }
  .ve-process-arrow { transform:rotate(90deg); }
  .ve-about-text, .ve-whyus-content { padding-left:0; margin-top:30px; }
  .ve-contact-aside { padding-left:0; margin-top:30px; }
  .ve-sidebar { padding-left:0; margin-top:40px; }
  .ve-form-row { grid-template-columns:1fr; }
}
@media(max-width:767px) {
  .ve-page-hero-content h1 { font-size:30px; }
  .ve-testi-grid { grid-template-columns:1fr; }
  .ve-nl-form { flex-direction:column; border-radius:8px; }
  .ve-nl-form input, .ve-nl-form button { width:100%; border-radius:8px !important; }
  .ve-about-img-2 { display:none; }
}

/* ============================================================
   SCROLL UP BUTTON
   ============================================================ */
.scroll-up-btn {
    position: fixed;
    bottom: 30px;
    right: 0;
    width: 48px;
    height: 48px;
    background-color: #F7941D;
    color: #ffffff;
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(247, 148, 29, 0.4);
    z-index: 9999;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all 0.3s ease-in-out;
}
.scroll-up-btn.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}
.scroll-up-btn:hover {
    background-color: #e07f0f;
    box-shadow: 0 6px 20px rgba(247, 148, 29, 0.6);
    transform: translateY(-3px);
}
.scroll-up-btn:active {
    transform: translateY(0);
}
@media (prefers-reduced-motion: reduce) {
    .scroll-up-btn { transition: none; }
}

.nav-tab-item {
    transition: all 0.4s cubic-bezier(0.22, 1, 0.36, 1);
    will-change: transform, opacity;
}

.nav-tab-item.active {
    transform: translateY(-4px) scale(1.02);
    transition: all 0.5s cubic-bezier(0.22, 1, 0.36, 1);
}

.nav-tab-item .icon-box {
    transition: all 0.4s cubic-bezier(0.22, 1, 0.36, 1);
    will-change: transform, background, border-color, box-shadow;
}

.nav-tab-item.active .icon-box {
    transform: translateY(-4px) scale(1.05);
    transition: all 0.5s cubic-bezier(0.22, 1, 0.36, 1);
}

/* Scroll indicator for tabs */
.tabs-scroll-indicator {
    display: flex;
    justify-content: center;
    gap: 8px;
    padding: 10px 0;
    margin-top: 10px;
}

.tabs-scroll-indicator .dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #ddd;
    transition: all 0.3s ease;
    cursor: pointer;
}

.tabs-scroll-indicator .dot.active {
    background: #F7941D;
    transform: scale(1.2);
}

/* Tab strip — flows normally with the page (no sticky pinning).
   The previous `position: sticky; top: 0; z-index: 10000` was kept
   here by mistake; remove it so the strip scrolls away with its
   content like every other section. */
.tabs-row-container {
    transition: box-shadow 0.3s ease, background 0.3s ease;
    background: #ffffff;
    padding-top: 12px;
    padding-bottom: 12px;
}

.tabs-row-container.is-sticky {
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.12);
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
}

/* Progressive tab reveal animation */
.nav-tab-item.tab-reveal {
    animation: tabReveal 0.6s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

@keyframes tabReveal {
    from {
        opacity: 0.3;
        transform: translateY(15px) scale(0.95);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

/* Smooth scroll snap for the section */
.capabilities-section {
    scroll-snap-align: start;
}

/* Progress bar for scroll position */
.tabs-progress-bar {
    position: absolute;
    bottom: -2px;
    left: 0;
    height: 3px;
    background: linear-gradient(90deg, #F7941D, #f5a623);
    transition: width 0.3s cubic-bezier(0.22, 1, 0.36, 1);
    border-radius: 2px;
}

/* Mobile optimizations */
@media (max-width: 768px) {
    .content-panel.active {
        animation: fadeInUpMobile 0.5s cubic-bezier(0.22, 1, 0.36, 1);
    }
    
    @keyframes fadeInUpMobile {
        from {
            opacity: 0;
            transform: translateY(15px);
        }
        to {
            opacity: 1;
            transform: translateY(0);
        }
    }
    
    .tabs-row-container {
        top: 60px;
        padding: 12px 10px;
    }
    
    .nav-tab-item.active {
        transform: translateY(-2px) scale(1.02);
    }
}

/* Accessibility: reduce motion */
@media (prefers-reduced-motion: reduce) {
    .nav-tab-item,
    .content-panel,
    .content-panel.active {
        animation: none !important;
        transition: none !important;
    }
    
    .nav-tab-item.active {
        transform: none !important;
    }
}

.text-start{text-align: start;}
.text-end{text-align: end;}


 /* ==========================================================================
   1. SCROLL-DRIVEN STICKY WRAPPER SETUP
   ========================================================================== */

/* Capabilities section: normal flow (no giant wrapper, no pin). */
.capabilities-section {
    padding: 60px 0 80px;
    position: relative;
}

/* Sticky tab strip — keeps the 8 tabs visible while the user
   scrolls between panels below it. */
#tabsRow.tabs-row-container {
    /* position: sticky; */
    /* top: 72px; */
    z-index: 100;
    background: #ffffff;
    padding: 16px 20px;
    /* margin-left: -20px;
    margin-right: -20px; */
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
    transition: box-shadow 0.3s ease;
}
/* Ensure anchor tags behave like block elements for the tab styling */
.nav-tab-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-decoration: none; /* Remove underline from anchor */
  color: inherit; /* Inherit color from parent */
  cursor: pointer;
}

/* If you want to keep the same hover/active states */
.nav-tab-item:hover {
  text-decoration: none;
}

.nav-tab-item.active {
  /* Your active styles here */
}

#tabsRow.tabs-row-container.is-sticky {
    box-shadow: 0 6px 28px rgba(0, 0, 0, 0.10);
}

/* Each panel is a normal block in the document flow; we only
   show the one whose tab is active. */
.content-panel {
    scroll-margin-top: 100px;
}

/* Background grid styling */
.grid-bg {
    background-color: #fcfcfc;
    background-image:
        linear-gradient(#f0f0f0 1px, transparent 1px),
        linear-gradient(90deg, #f0f0f0 1px, transparent 1px);
    background-size: 30px 30px;
}

/* Section typography */
.sub-heading {
    color: #ff9900;
    font-weight: 700;
    font-size: 0.8rem;
    letter-spacing: 1.5px;
    text-transform: uppercase;
}

.desc-text {
    color: #666666;
    font-size: 0.9rem;
    line-height: 1.6;
}

/* ==========================================================================
   2. TABS CONTAINER & NAVIGATION ITEMS
   ========================================================================== */

.tabs-row-container {
    display: grid;
    grid-template-columns: repeat(8, 1fr);
    gap: 12px;
    padding: 20px 30px;
    background: #ffffff;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    margin: 30px 0 20px 0;
    z-index: 1000;
    width: 100%;
    box-sizing: border-box;
}

.nav-tab-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.3s ease;
    min-width: 0;
    width: 100%;
    padding: 8px 4px;
    border-radius: 12px;
    position: relative;
}

.nav-tab-item:hover:not(.active) {
    transform: translateY(-2px);
}

.nav-tab-item:hover:not(.active) .icon-box {
    /* border-color: #F7941D; */
    background: rgba(217, 217, 217, 0.15);
}

/* .nav-tab-item:hover:not(.active) .icon-box img {
    opacity: 0.8;
} */

/* Icon Box Styling */
.icon-box {
    width: 100%;
    max-width: 75px;
    height: 75px;
    border: 1px solid #F7941D;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.6rem;
    color: #444444;
    background-color: rgba(50, 50, 50, 0.05);
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.02);
    position: relative;
}

.icon-box img {
    max-width: 32px;
    max-height: 32px;
    width: auto;
    height: auto;
    object-fit: contain;
    transition: filter 0.3s ease, transform 0.3s ease;
    /* filter: brightness(0) opacity(0.6); */
}

/* Active Tab Styles */
.nav-tab-item.active {
    transform: translateY(-4px);
}

.nav-tab-item.active .icon-box {
    background-color: #F7941D;
    color: #ffffff;
    border-color: #F7941D;
    box-shadow: 0 8px 20px rgba(247, 148, 29, 0.35);
    transform: translateY(-4px);
}

.nav-tab-item.active .icon-box img {
    filter: brightness(0) invert(1) opacity(1);
    transform: scale(1.05);
}

.nav-tab-item.active .tab-label {
    color: #F7941D;
    font-weight: 700;
}

/* Tab Label */
.tab-label {
    font-size: 0.7rem;
    font-weight: 600;
    color: #666666;
    text-align: center;
    margin-top: 10px;
    line-height: 1.2;
    transition: color 0.3s ease;
    letter-spacing: 0.3px;
    white-space: normal;
}

/* ==========================================================================
   3. CONTENT PANELS & INNER DETAILS
   ========================================================================== */

#panels-wrapper {
    margin-top: 20px;
    position: relative;
}

.content-panel {
    display: none;
    border: 1px solid #ff9900;
    border-radius: 16px;
    padding: 40px;
    background-color: #ffffff;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
    min-height: 200px;
    opacity: 0;
    visibility: hidden;
    height: 0;
    overflow: hidden;
    transform: translateY(20px);
    transition: all 0.5s cubic-bezier(0.22, 1, 0.36, 1);
}

.content-panel.active {
    display: block;
    opacity: 1;
    visibility: visible;
    height: auto;
    overflow: visible;
    transform: translateY(0);
    animation: fadeIn 0.35s ease-in-out forwards;
}

/* Inner tab-pane visibility — controls the Quarterly/Yearly
   toggle inside the Financial Highlights panel. The vanilla tab
   handler in financial-charts.js toggles .show + .active on
   click; CSS uses those classes to show/hide the pane. Without
   this, Bootstrap's base `.tab-pane { display: none }` would
   keep every pane hidden because we don't use Bootstrap's tab
   plugin. */
.tab-pane.fade.show.active { display: block; }
.tab-pane.fade.show        { display: block; }
.tab-pane.fade              { display: none; }

.fade:not(.show) {
    opacity: 1;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(8px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.panel-title {
    font-size: 2rem;
    font-weight: 800;
    color: #222222;
    margin-bottom: 25px;
}

.feature-item {
    margin-bottom: 20px;
}

.feature-bullet {
    width: 20px;
    height: 20px;
    background-color: #ff9900;
    border-radius: 4px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 0.7rem;
    margin-right: 10px;
    flex-shrink: 0;
}

.feature-title {
    font-weight: 700;
    font-size: 0.95rem;
    color: #333333;
}

.feature-desc {
    color: #666666;
    font-size: 0.85rem;
    line-height: 1.5;
    padding-left: 30px;
}

.hex-grid-placeholder {
    border: 2px dashed #ff9900;
    border-radius: 8px;
    background-color: #fff9f0;
    min-height: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ff9900;
    font-weight: 600;
    text-align: center;
}

/* Interactive News-On-Chart iframe (panel-3) */
.ir-chart-iframe-wrap {
    position: relative;
    width: 100%;
    padding-top: 56.25%; /* 16:9 aspect ratio */
    border-radius: 12px;
    overflow: hidden;
    /* background-color: #121212; */
    /* box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08); */
}
.ir-chart-iframe-wrap iframe {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    border: 0;
    display: block;
}

/* iframe-resizer controls the height of .iframe-new at runtime — keep
   only the visual defaults here. The wrapper no longer needs a fixed height. */
.iframe-new{
    border:0;
    width:100%;
    display: block;
    min-height: 480px;
}

/* ==========================================================================
   4. RESPONSIVE MEDIA QUERIES
   ========================================================================== */

@media (max-width: 1199.98px) {
    .tabs-row-container {
        grid-template-columns: repeat(4, 1fr);
        row-gap: 22px;
        gap: 15px;
        padding: 20px;
    }

    .icon-box {
        max-width: 60px;
        height: 60px;
    }

    .icon-box img {
        max-width: 28px;
        max-height: 28px;
    }

    .tab-label {
        font-size: 0.65rem;
    }
}

@media (max-width: 767.98px) {
    .tabs-row-container {
        grid-template-columns: repeat(4, 1fr);
        gap: 10px;
        padding: 15px;
    }

    .icon-box {
        max-width: 50px;
        height: 50px;
        border-radius: 10px;
    }

    .icon-box img {
        max-width: 22px;
        max-height: 22px;
    }

    .tab-label {
        font-size: 0.55rem;
        margin-top: 6px;
    }

    .content-panel {
        padding: 20px;
    }
}

@media (max-width: 479.98px) {
    .tabs-row-container {
        grid-template-columns: repeat(2, 1fr);
        row-gap: 18px;
        gap: 8px;
        padding: 12px;
    }

    .icon-box {
        max-width: 44px;
        height: 44px;
        border-radius: 8px;
        border-width: 1.5px;
    }

    .icon-box img {
        max-width: 20px;
        max-height: 20px;
    }

    .tab-label {
        font-size: 0.5rem;
        margin-top: 4px;
    }

    .nav-tab-item {
        padding: 4px 2px;
    }

    .content-panel {
        padding: 15px;
    }
}

.bullet-square {
            width: 14px;
            height: 14px;
            background-color: #f26522;
            display: inline-block;
            margin-right: 12px;
            flex-shrink: 0;
            margin-top: 6px;
        }
        .btn-orange {
            background-color: #F7941D;
            color: white;
            border: 1px solid #F7941D;
        }

/* Period toggle (Quarterly / Yearly) — separated, not glued together */
.chart-period-toggle {
            gap: 0.85rem !important; /* override bootstrap gap-2 */
}
.chart-period-toggle .btn {
            border-radius: 4px;
            padding: 0.45rem 1.1rem;
            min-width: 90px;
}
        .btn-orange:hover, .btn-orange.active {
            color: white;
            background: linear-gradient(180deg, #F7941D 0%, #F9572C 100%);
            border: 1px solid #F7941D;
        }
        .divider {
            border-bottom: 1px solid #e0e0e0;
        }
        .chart-container {
            position: relative;
            height: 170px;
            width: 100%;
        }
        .custom-link {
            font-weight: 700;
            color: #333333;
            text-decoration: none;
            font-size: 0.95rem;
            transition: color 0.2s ease;
        }

        .custom-link:hover {
            color: #000000;
        }

        .arrow-icon {
            margin-left: 8px;
            transition: transform 0.2s ease;
        }

        .custom-link:hover .arrow-icon {
            transform: translateX(3px);
        }

        .filter-select {
            border-radius: 50rem;
            border: 1.5px solid #6c757d;
            padding: 0.6rem 1.5rem;
            font-size: 0.9rem;
            color: #495057;
            background-color: white;
            box-shadow: none !important;
        }

        .btn-search {
            background: linear-gradient(135deg, #ff8c3a, #f26522);
            color: white;
            font-weight: 600;
            border-radius: 4px;
            padding: 0.6rem 2.5rem;
            border: none;
        }

        .btn-search:hover {
            background: linear-gradient(135deg, #e67625, #d85416);
            color: white;
        }

        .announcement-card {
            background-color: #f4f4f4;
            border-radius: 2px;
            padding: 1.5rem;
            height: 100%;
            min-height: 140px;
            transition: transform 0.2s ease, box-shadow 0.2s ease;
        }

        .announcement-card:hover {
            background-color: #fdae75;
        }

        .announcement-card:hover {
            transform: translateY(-2px);
            box-shadow: 0 4px 12px rgba(0,0,0,0.05);
        }

        .card-date {
            font-weight: 800;
            font-size: 0.9rem;
            color: #212529;
            margin-bottom: 0.75rem;
            font-size: 80%;
        }

        .card-text-custom {
            font-size: 0.82rem;
            color: #495057;
            line-height: 1.4;
            margin-bottom: 0;
            text-transform: uppercase;
             font-size: 80%;
        }
        .announcement-item{
            margin-bottom:20px;
        }

        .filter-select {
    border-radius: 50rem;
    border: 1.5px solid #6c757d;
    padding: 0.6rem 2.5rem 0.6rem 1.5rem;
    font-size: 0.9rem;
    color: #495057;
    background-color: #ffffff;
    box-shadow: none !important;
    cursor: pointer;

    /* 1. Reset standard browser appearance */
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;

    /* 2. Explicitly load a clean grey arrow icon */
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='%23495057' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='m2 5 6 6 6-6'/%3e%3c/svg%3e") !important;
    background-repeat: no-repeat !important;
    background-position: right 1.25rem center !important;
    background-size: 10px 10px !important;
}

/* ============================================================
   filter-web / filter-mobile visibility
   - filter-web  → desktop only (≥ 992px / lg)
   - filter-mobile → mobile only (< 992px)
   ============================================================ */
.filter-web {
    display: none;
}
.filter-mobile {
    display: block;
}

@media (min-width: 992px) {
    .filter-web {
        display: block;
    }
    .filter-mobile {
        display: none;
    }
}

/* Swiper wrapper settings */
.swiper {
    padding-top: 25px !important;
    padding-bottom: 45px !important;
    overflow: hidden !important; /* Clips the 3rd slide at half width */
}

/* Reports Swiper — pagination dots (brand orange) */
.reports-swiper-pagination {
    position: relative;
    margin-top: 28px;
    text-align: center;
}
.reports-swiper-pagination .swiper-pagination-bullet {
    width: 10px;
    height: 10px;
    margin: 0 5px;
    background: #d9d9d9;
    opacity: 1;
    border-radius: 0;
    transition: background 0.25s ease, transform 0.25s ease;
}
.reports-swiper-pagination .swiper-pagination-bullet-active {
    background: #F7941D;
    transform: scale(1.25);
    border-radius: 0;
}

/* Force each card to a fixed width */
.swiper-slide {
    width: 300PX !important; /* Adjust pixel width as needed */
    flex-shrink: 0;
}

/* Card layout styles */
.report-card-wrapper {
    position: relative;
    width: 100%;
}

.report-card-body {
    background: linear-gradient(rgba(0, 0, 0, 0), rgba(0, 0, 0, 0)), url(../img/Overlay+OverlayBlur.png) center center / cover no-repeat;
    border-radius: 12px;
    padding: 12px 10px 12px 150px;
    min-height: 210px;
    color: white;
    position: relative;
    box-shadow: 0 4px 12px rgba(0,0,0,0.12);
}

.report-cover {
    position: absolute;
    top: -15px;
    left: 8px;
    width: 130px;
    height: 203px;
    border-radius: 4px;
    overflow: hidden;
    box-shadow: 0 6px 12px rgba(0,0,0,0.25);
    z-index: 2;
}

.report-cover-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.report-year {
    font-size: 1.25rem;
    font-weight: 800;
    line-height: 1;
}

.company-title {
    font-size: 1.05rem;
    font-weight: 700;
    margin-bottom: 8px;
    white-space: nowrap;
}

.report-link,
.report-link:hover,
.report-link:focus,
.report-link:active {
    color: rgba(255, 255, 255, 0.85);
    text-decoration: none;
    font-size: 0.55rem;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 3px;
    line-height: 1.1;
}

.report-link span {
    font-size: 0.75rem;
    font-weight: 600;
}

.arrow-circle {
    width: 12px;
    height: 12px;
    border: 1px solid rgba(255, 255, 255, 0.5);
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.div-state{
    max-width: 500px; 
    overflow: hidden;
}
.width-100{width:100px;}
.chart-card {
            background: #ffffff;
            border-radius: 12px;
            padding: 24px;
            /* width: 420px; */
            /* box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05); */
        }

        /* Top Header Badge Styling */
        .price-header {
            display: flex;
            align-items: baseline;
            gap: 6px;
            margin-bottom: 20px;
        }

        .currency {
            font-size: 0.95rem;
            color: #f26522;
            font-weight: 600;
        }

        .main-price {
            font-size: 3rem;
            font-weight: 800;
            color: #f26522;
            line-height: 1;
        }

        .percentage-change {
            font-size: 0.95rem;
            color: #28a745;
            font-weight: 600;
            margin-left: 6px;
        }

        /* Canvas Wrapper */
        .chart-container {
            position: relative;
            height: 240px;
            width: 100%;
        }


        .email-container {
            max-width: 650px;
            margin: 20px auto;
            background-color: #ffffff;
            box-shadow: 0 0 10px rgba(0, 0, 0, 0.05);
        }

        /* Top Orange Header Section */
        .email-header {
            background-color: #f8981d;
            padding:10px;
            text-align: center;
        }

        .header-logo {
            max-width: 220px;
            height: auto;
            display: inline-block;
        }

        /* Top Sub-header Link */
        .top-link-bar {
            text-align: right;
            padding: 12px 24px;
            font-size: 8px;
            color: #666666;
        }

        .top-link-bar a {
            color: #333333;
            text-decoration: underline;
            font-size: 8px !important;
        }

        /* Main Content Section */
        .email-body {
            padding: 10px;
            line-height: 1.5;
        }

        .category-title {
            font-size: 10px;
            font-weight: 800;
            letter-spacing: 0.5px;
            text-transform: uppercase;
            margin-bottom: 10px;
        }

        .salutation {
            font-weight: 700;
            font-size: 10px;
            margin-bottom: 8px;
        }

        .body-text {
            font-size: 8px;
            margin-top: 0;
            margin-bottom: 10px;
        }

        /* Orange Action Buttons */
        .btn-orange-2 {
            display: inline-block;
            background-color: #F7941D;
            color: #ffffff;
            text-decoration: none;
            font-size: 8px;
            font-weight: 600;
            padding: 8px 20px;
            border-radius: 20px;
            margin-bottom: 10px;
        }

        .btn-orange-2:hover,
        .btn-orange-2:focus,
        .btn-orange-2:active,
        .btn-orange-2:focus-visible {
            background-color: #F7941D;
            color: #ffffff;
            outline: none;
            box-shadow: none;
            font-size: 8px;
             font-weight: 600;
        }

        /* Provider Branding Section */
        .provider-section {
            display: flex;
            justify-content: flex-end;
            align-items: center;
            gap: 10px;
            /* margin-top: 20px; */
            padding-right: 10px;
        }

        .provider-label {
            font-size: 14px;
            color: #333333;
        }

        .provider-logo {
            max-width: 140px;
            height: auto;
        }

        /* Dark Bottom Footer Bar */
        .email-footer {
            background-color: #3d3d3d;
            color: #ffffff;
            text-align: center;
            padding: 5px;
            font-size: 8px;
        }

        .email-footer a {
            color: #ffffff;
            text-decoration: underline;
            font-size: 8px;
        }

        /* Dark Card Styling */
        .portal-card {
            background-color: rgba(247, 148, 29, 0.1);
            border: 1px solid #28221c;
            border-radius: 12px;
            padding: 24px;
            height: 220px;
            display: flex;
            flex-direction: column;
            justify-content: space-between;
            transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
            text-decoration: none;
            cursor: pointer;
        }

        .portal-card:hover {
            transform: translateY(-4px);
            border-color: #44382c;
            box-shadow: 0 8px 24px rgba(0, 0, 0, 0.4);
        }

        /* Icon Container Box */
        .icon-box-2 {
            width: 54px;
            height: 54px;
            background-color: #2b251f;
            border-radius: 10px;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        /* Custom Image Icon Styling */
        .card-icon-img {
            width: 26px;
            height: 26px;
            object-fit: contain;
        }

        /* Card Label Typography */
        .card-title-text {
            color: #ffffff;
            font-size: 1.15rem;
            font-weight: 400;
            line-height: 1.25;
            margin: 0;
            letter-spacing: -0.2px;
        }

        .handled-section {
            background-color: #0b0a0a;
            color: #ffffff;
            padding: 60px 0;
            overflow: hidden;
            font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
        }

        /* Numbered Problem List */
        .problem-list {
            display: flex;
            flex-direction: column;
            gap: 16px;
            margin-bottom: 40px;
        }

        .problem-item {
            display: flex;
            align-items: center;
            gap: 18px;
        }

        .problem-number {
            color: #f7941d;
            font-size: 1.4rem;
            font-weight: 800;
            line-height: 1;
            min-width: 30px;
        }

        .problem-text {
            color: #e0e0e0;
            font-size: 1.1rem;
            font-weight: 400;
            margin: 0;
            letter-spacing: 0.2px;
        }

        /* Large Heading */
        .handled-heading {
            margin-top: 10px;
        }

        .heading-sub {
            font-size: 2.8rem;
            font-weight: 300;
            color: #ffffff;
            letter-spacing: 2px;
            line-height: 1.1;
            text-transform: uppercase;
        }

        .heading-main {
            font-size: 3.2rem;
            font-weight: 900;
            color: #ffffff;
            letter-spacing: 1px;
            line-height: 1.1;
            text-transform: uppercase;
        }

        /* Illustration Wrapper */
        .illustration-container {
            text-align: center;
            display: flex;
            justify-content: center;
            align-items: center;
        }

        .illustration-img {
            max-width: 100%;
            height: auto;
            max-height: 380px;
            object-fit: contain;
        }

        @media (max-width: 768px) {
            .heading-sub { font-size: 2rem; }
            .heading-main { font-size: 2.3rem; }
            .problem-text { font-size: 0.95rem; }
        }

        .cnx-partners-wrapper {
            background-color: #0b0a0a;
            color: #ffffff;
            padding: 60px 0;
            overflow: hidden;
            font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
            position: relative;
        }

        /* Description Text Styling */
        .cnx-partners-description {
            color: #d1d1d1;
            font-size: 1.05rem;
            line-height: 1.6;
            font-weight: 300;
            margin-bottom: 45px;
            max-width: 1100px;
        }

        /* Continuous Infinite Marquee Track */
        .cnx-marquee-container {
            display: flex;
            overflow: hidden;
            user-select: none;
            position: relative;
            width: 100%;
        }

        /* Smooth Left-to-Right Fade Out Overlay Effect */
        .cnx-marquee-container::before,
        .cnx-marquee-container::after {
            content: "";
            position: absolute;
            top: 0;
            width: 100px;
            height: 100%;
            z-index: 2;
            pointer-events: none;
        }

        .cnx-marquee-container::before {
            left: 0;
            background: linear-gradient(to right, #0b0a0a 0%, transparent 100%);
        }

        .cnx-marquee-container::after {
            right: 0;
            background: linear-gradient(to left, #0b0a0a 0%, transparent 100%);
        }

        .cnx-marquee-track {
            flex-shrink: 0;
            display: flex;
            align-items: center;
            justify-content: space-around;
            gap: 50px;
            min-width: 100%;
            animation: cnxMarqueeScroll 50s linear infinite;
        }

        /* Pause Marquee on Hover */
        .cnx-marquee-container:hover .cnx-marquee-track {
            animation-play-state: paused;
        }

        /* Individual Logo Wrapper */
        .cnx-partner-logo-item {
            display: flex;
            align-items: center;
            justify-content: center;
            padding: 10px 20px;
            height: 80px;
            flex-shrink: 0;
        }

        .cnx-partner-logo-img {
            max-height: 50px;
            max-width: 180px;
            width: auto;
            object-fit: contain;
            filter: brightness(0.9) contrast(1.1);
            transition: filter 0.3s ease, transform 0.3s ease;
        }

        .cnx-partner-logo-item:hover .cnx-partner-logo-img {
            filter: brightness(1) contrast(1.2);
            transform: scale(1.05);
        }

        /* Keyframe Infinite Loop Animation */
        @keyframes cnxMarqueeScroll {
            from {
                transform: translateX(0%);
            }
            to {
                transform: translateX(-100%);
            }
        }


        /* -------------------------------------------------------------
           MOBILE RESPONSIVE NAVIGATION TABS CONTAINER
        ------------------------------------------------------------- */
        .ir-nav-wrapper {
            position: relative;
            width: 100%;
            margin-bottom: 24px;
        }

        /* Scrollable Nav Track */
        .ir-nav-container {
            overflow-x: auto;
            overflow-y: hidden;
            -webkit-overflow-scrolling: touch; /* Smooth inertia scroll on iOS */
            scrollbar-width: none; /* Firefox hide scrollbar */
            -ms-overflow-style: none; /* IE/Edge hide scrollbar */
            padding: 8px 4px 16px 4px;
            position: relative;
            background: #ffffff;
            padding: 16px 20px;
            border-radius: 16px;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
        }

        /* Hide scrollbar for Chrome, Safari, Opera */
        .ir-nav-container::-webkit-scrollbar {
            display: none;
        }

        .ir-nav-tabs {
            border-bottom: none;
            display: flex;
            flex-wrap: nowrap;
            gap: 16px;
            justify-content: flex-start;
            min-width: max-content;
        }

        @media (min-width: 1200px) {
            .ir-nav-tabs {
                justify-content: space-between;
                min-width: 100%;
            }
        }

        .ir-nav-tabs .nav-item {
            flex: 0 0 auto;
        }

        /* Interactive Tab Button Styling */
        .ir-nav-tabs .nav-link {
            border: none;
            background: transparent;
            padding: 0;
            display: flex;
            flex-direction: column;
            align-items: center;
            width: 100px;
            text-align: center;
            color: var(--text-muted);
            transition: all 0.3s ease;
            user-select: none;
            /* Reset native <button> chrome so the focus ring doesn't
               draw a black border on click. Keep :focus-visible so
               keyboard users still get a clear focus indicator. */
            -webkit-appearance: none;
            -moz-appearance: none;
            appearance: none;
            font: inherit;
            text-align: center;
        }
        .ir-nav-tabs .nav-link:focus { outline: none; box-shadow: none; }
        .ir-nav-tabs .nav-link:focus-visible {
            outline: 2px solid var(--brand-orange);
            outline-offset: 4px;
            border-radius: 14px;
        }

        .ir-nav-tabs .icon-box {
            width: 76px;
            height: 76px;
            border-radius: 18px;
            border: 1.5px solid #e2e8f0;
            background-color: #ffffff;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.85rem;
            color: #4a5568;
            margin-bottom: 10px;
            transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
            box-shadow: 0 2px 6px rgba(0,0,0,0.02);
        }

        /* Icon swap: show the "black" icon by default, hide the "white"
           variant. When the parent tab is .active, flip the visibility
           so the white-on-orange icon shows on the orange background. */
        .ir-nav-tabs .icon-box img {
            width: 38px;
            height: 38px;
            object-fit: contain;
        }
        .ir-nav-tabs .icon-box img.icon-active  { display: none; }
        .ir-nav-tabs .icon-box img.icon-inactive { display: block; }

        .ir-nav-tabs .nav-link.active .icon-box img.icon-active   { display: block; }
        .ir-nav-tabs .nav-link.active .icon-box img.icon-inactive { display: none; }

        .ir-nav-tabs .nav-link:hover .icon-box {
            border-color: var(--brand-orange);
            color: var(--brand-orange);
            transform: translateY(-2px);
        }

        .ir-nav-tabs .nav-link.active .icon-box {
            background-color: var(--brand-orange);
            border-color: var(--brand-orange);
            color: #ffffff;
            box-shadow: 0 10px 20px var(--brand-orange-glow);
            transform: translateY(-3px);
        }

        .ir-nav-tabs .tab-label {
            font-size: 0.8rem;
            font-weight: 500;
            line-height: 1.25;
            max-width: 100px;
            color: #64748b;
            transition: color 0.3s ease;
        }

        .ir-nav-tabs .nav-link.active .tab-label {
            color: #1e293b;
            font-weight: 700;
        }

        /* Mobile Scroll Fade Hint Indicators */
        .ir-nav-wrapper::after {
            content: '';
            position: absolute;
            top: 0;
            right: 0;
            height: calc(100% - 12px);
            width: 30px;
            background: linear-gradient(to right, rgba(251, 251, 253, 0), rgba(251, 251, 253, 0.95));
            pointer-events: none;
            opacity: 1;
            transition: opacity 0.3s ease;
        }

        @media (min-width: 1200px) {
            .ir-nav-wrapper::after {
                display: none;
            }
        }

        /* Mobile Scroll Controls */
        .scroll-arrow {
            position: absolute;
            top: 36px;
            transform: translateY(-50%);
            width: 32px;
            height: 32px;
            background: #ffffff;
            border: 1px solid #e2e8f0;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            box-shadow: 0 4px 12px rgba(0,0,0,0.08);
            z-index: 10;
            color: var(--brand-orange);
            cursor: pointer;
            transition: all 0.2s ease;
        }

        .scroll-arrow:hover {
            background: var(--brand-orange);
            color: #ffffff;
            border-color: var(--brand-orange);
        }

        .scroll-arrow-left { left: -10px; display: none; }
        .scroll-arrow-right { right: -10px; }

        @media (min-width: 1200px) {
            .scroll-arrow { display: none !important; }
        }

        /* Content Card Styling */
        .ir-main-card {
            background: #ffffff;
            border: 1.5px solid var(--brand-border);
            border-radius: 12px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
            padding: 40px;
            position: relative;
        }

        .section-title {
            font-weight: 800;
            font-size: 2.2rem;
            color: #1e293b;
            margin-bottom: 32px;
            letter-spacing: -0.5px;
        }

        /* Feature Bullet List */
        .feature-item {
            display: flex;
            align-items: flex-start;
            margin-bottom: 24px;
        }

        .feature-item:last-child {
            margin-bottom: 0;
        }

        .feature-icon-badge {
            width: 32px;
            height: 32px;
            min-width: 32px;
            background-color: var(--brand-orange);
            border-radius: 6px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-right: 18px;
            margin-top: 2px;
            box-shadow: 0 4px 10px rgba(255, 140, 26, 0.25);
        }

        .feature-icon-badge::after {
            content: '';
            width: 10px;
            height: 10px;
            background-color: #ffffff;
            border-radius: 50%;
        }

        .feature-content h5 {
            font-size: 1.1rem;
            font-weight: 600;
            color: #334155;
            margin-bottom: 6px;
        }

        .feature-content p {
            font-size: 0.935rem;
            color: #64748b;
            line-height: 1.6;
            margin: 0;
        }

        .feature-divider {
            border-top: 1px solid #f1f5f9;
            margin: 20px 0;
        }

        /* Hexagon Responsive Gallery Container */
        .hexagon-gallery-container {
            position: relative;
            width: 100%;
            max-width: 460px;
            height: 420px;
            margin: 0 auto;
        }

        .hex-item {
            position: absolute;
            width: 210px;
            height: 240px;
            transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
            cursor: pointer;
        }

        .hex-item:hover {
            transform: scale(1.06);
            z-index: 10;
        }

        /* Clustered layout positions */
        .hex-1 { top: 0px; left: 10px; }
        .hex-2 { top: 0px; left: 230px; }
        .hex-3 { top: 175px; left: 10px; }
        .hex-4 { top: 175px; left: 230px; }

        .hex-inner {
            width: 100%;
            height: 100%;
            position: relative;
        }

        .hex-border-svg {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            z-index: 2;
            pointer-events: none;
        }

        .hex-content {
            width: 100%;
            height: 100%;
            clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
            background: #f8fafc;
            position: relative;
            overflow: hidden;
            z-index: 1;
        }

        .hex-content img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s ease;
        }

        .hex-item:hover .hex-content img {
            transform: scale(1.1);
        }

        /* Mobile Scaling Rules for Hexagon Grid & Card Padding */
        @media (max-width: 991px) {
            .hexagon-gallery-container {
                margin-top: 30px;
                transform: scale(0.9);
                transform-origin: center center;
            }
            .ir-main-card {
                padding: 24px;
            }
        }

        @media (max-width: 576px) {
            .ir-main-card {
                padding: 20px 16px;
            }
            .hexagon-gallery-container {
                transform: scale(0.72);
                height: 310px;
                margin-bottom: -40px;
            }
            .section-title {
                font-size: 1.0rem;
                margin-bottom: 24px;
            }
            .ir-nav-tabs .nav-link {
                width: 86px;
            }
            .ir-nav-tabs .icon-box {
                width: 66px;
                height: 66px;
                font-size: 0.95rem;
                border-radius: 14px;
            }
            .ir-nav-tabs .tab-label {
                font-size: 0.75rem;
                max-width: 86px;
            }
        }

        @media (max-width: 380px) {
            .hexagon-gallery-container {
                transform: scale(0.62);
                height: 270px;
                margin-bottom: -60px;
            }
        }