 :root{
    --ink:#080C17;
    --ink-2:#0D1426;
    --panel:#111A30;
    --panel-2:#16213C;
    --gold:#F5921E;
    --amber:#FCB42D;
    --parchment:#ECE7DA;
    --slate:#8B93A9;
    --slate-dim:#5C6479;
    --line: rgba(245,146,30,0.16);
    --line-soft: rgba(236,231,218,0.08);

    /* page-level (light base) tokens */
    --bg:#FCFBF8;
    --text-heading:#FFA500;
    --text-body:#545F76;
    --line-on-light: rgba(16,24,44,0.10);
  }

  ::selection{ background: var(--gold); color:#0A0F1E; }

  html{ scroll-behavior:smooth; background: var(--bg) !important; }

  html, body{
    background: var(--bg) !important;
  }

  body{
    color: var(--text-body);
    font-family:'Inter',sans-serif;
    font-weight:400;
    overflow-x:hidden;
    position:relative;
    min-height:100vh;
  }

  h1,h2,h3,h4, .font-display{
    font-family:'Fraunces', serif;
    letter-spacing:-0.01em;
  }

  .eyebrow{
    font-family:'IBM Plex Mono', monospace;
    text-transform:uppercase;
    letter-spacing:0.16em;
    font-size:0.72rem;
    color: var(--gold);
    display:flex;
    align-items:center;
    gap:0.6rem;
  }
  .eyebrow::before{
    content:"";
    width:26px; height:1px;
    background: var(--gold);
    display:inline-block;
  }

  a{ text-decoration:none; }
  .text-slate{ color: var(--text-body) !important; }

  /* ============ background diamond watermark ============ */
  .field-marks{
    position:fixed; inset:0;
    pointer-events:none;
    z-index:0;
    opacity:0.5;
  }
  .field-marks svg{ position:absolute; }

  /* ============ NAVBAR ============ */
  .navbar-invicta{
     top:0; left:0; right:0; z-index:1000;
    padding: 15px 0;
    transition: all .45s cubic-bezier(.22,1,.36,1);
    background: rgba(8,12,23,0.82);
    backdrop-filter: blur(14px);
    border-bottom: 1px solid var(--line-soft);
  }
  .navbar-invicta.scrolled{
    padding: 12px 0;
    background: rgba(8,12,23,0.94);
    box-shadow: 0 10px 30px -14px rgba(8,12,23,0.5);
  }
 
  .navbar-invicta .brand-mark img{ height:60px; width:auto; transition: height .4s ease; }
  .navbar-invicta.scrolled .brand-mark img{ height:50px; }
  .brand-word{ font-family:'Fraunces', serif; font-size:1.28rem; font-weight:500; color:var(--text-heading); }
  .brand-word span{ color:var(--gold); }

  .nav-links a{
    color: #fff;
    font-size:16px;
    font-weight:400;
    padding: 10px 18px;
    position:relative;
    transition: color .3s ease;
  }
  .nav-links a:hover, .nav-links a:focus-visible{ color: var(--parchment); }
  .nav-links a::after{
    content:"";
    position:absolute; left:18px; right:18px; bottom:4px; height:1px;
    background: var(--gold);
    transform: scaleX(0); transform-origin:left;
    transition: transform .35s ease;
  }
  .nav-links a:hover::after{ transform: scaleX(1); }

  .badge-sebi{
    font-family:'IBM Plex Mono', monospace;
    font-size:0.68rem;
    letter-spacing:0.04em;
    color: #fff;
    border:1px solid #fff;
    border-radius:100px;
    padding:6px 14px;
    white-space:nowrap;
  }

  .btn-gold{
    background: linear-gradient(135deg, var(--gold), var(--amber));
    color:#0A0F1E;
    font-weight:600;
    padding:12px 26px;
    border-radius:100px;
    border:none;
    font-size:0.92rem;
    transition: transform .35s cubic-bezier(.22,1,.36,1), box-shadow .35s ease;
    box-shadow: 0 8px 24px -8px rgba(245,146,30,0.5);
  }
  .btn-gold:hover{ transform: translateY(-3px); box-shadow: 0 14px 32px -8px rgba(245,146,30,0.65); color:#0A0F1E; }

  .btn-ghost{
    border:1px solid var(--line-on-light);
    color: var(--text-heading);
    padding:12px 26px;
    border-radius:100px;
    font-size:0.92rem;
    font-weight:500;
    transition: all .35s ease;
  }
  .btn-ghost{ border-color: var(--gold); color: var(--gold); background: rgba(245,146,30,0.06); }
  .btn-ghost:hover{ border-color: var(--gold); color: var(--gold); background: rgba(245,146,30,0.06); }

  /* ============ HERO ============ */
  .hero{
    position:relative;
    min-height:94vh;
    display:flex;
    align-items:center;
    padding-top:150px;
    padding-bottom:170px;
    z-index:1;
    isolation:isolate;
  }
  .hero-bg{
    position:absolute; inset:0;
    z-index:-2;
    background: url('https://images.unsplash.com/photo-1745270917449-c2e2c5806586?q=80&w=2400&auto=format&fit=crop') center / cover no-repeat;
  }
  .hero-scrim{
    position:absolute; inset:0;
    z-index:-1;
    background:
      linear-gradient(180deg, rgba(6,10,20,0.80) 0%, rgba(6,10,20,0.60) 38%, rgba(6,10,20,0.72) 68%, rgba(6,10,20,0.94) 100%),
      linear-gradient(90deg, rgba(6,10,20,0.55) 0%, rgba(6,10,20,0.1) 55%);
  }

  .hero-content{ max-width:810px; }

  .hero-mark-bg{
    position:absolute;
    right:-30px; top:50%;
    width:10px;
    transform: translateY(-54%);
    opacity:0.16;
    z-index:0;
    pointer-events:none;
  }

  .hero-title{
    font-size: clamp(2.6rem, 5.4vw, 4.6rem);
    line-height:1.04;
    font-weight:500;
    color: var(--parchment);
    margin: 22px 0 26px;
  }
  .hero-title em{
    font-style: italic;
  font-weight: 400;
  color: var(--amber);
  font-size: 50px;
  }

  .hero-lede{
    font-size:1.08rem;
    line-height:1.75;
    color: rgba(236,231,218,0.78);
    max-width:750px;
	text-align:justify;
  }

  .hero-stats-float{
    position:absolute;
    left:0; right:0; bottom:0;
    transform: translateY(50%);
    z-index:5;
  }
  .hero-stats-card{
    background: rgba(15,22,42,0.72);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border:1px solid rgba(245,146,30,0.25);
    border-radius:20px;
    padding: 32px 40px;
    display:flex;
    flex-wrap:wrap;
    box-shadow: 0 30px 60px -22px rgba(4,7,15,0.55);
  }
  .hero-stats-card .hero-stat{
    flex:1 1 0;
    min-width:140px;
    padding-right:28px;
    margin-right:28px;
    border-right:1px solid rgba(236,231,218,0.12);
  }
  .hero-stats-card .hero-stat:last-child{ border-right:none; margin-right:0; padding-right:0; }
  .hero-stat .num{ font-family:'IBM Plex Mono',monospace; font-size:1.7rem; color:var(--parchment); font-weight:500; }
  .hero-stat .lbl{ font-size:0.78rem; color: rgba(236,231,218,0.65); margin-top:4px; }

  /* the signature mark: animated diamond/I echoing logo, drawn on load */
  .mark-wrap{ position:relative; }
  .mark-wrap svg{ width:100%; height:auto; overflow:visible; display:block; }
  .mark-draw{
    stroke-dasharray: 900;
    stroke-dashoffset: 900;
    animation: draw 2.6s cubic-bezier(.16,1,.3,1) 0.3s forwards;
  }
  .mark-fill{
    opacity:0;
    animation: fadeInFill 1.2s ease 1.9s forwards;
  }
  @keyframes draw{ to{ stroke-dashoffset:0; } }
  @keyframes fadeInFill{ to{ opacity:1; } }
  .mark-orbit{
    animation: spin 40s linear infinite;
    transform-origin: 210px 210px;
  }
  @keyframes spin{ to{ transform: rotate(360deg); } }

  @media (max-width: 991px){
    .hero-mark-bg{ display:none; }
    .hero-stats-card{ padding:26px 24px; }
    .hero-stats-card .hero-stat{ flex:1 1 45%; min-width:0; border-right:none; margin-right:0; padding-right:0; margin-bottom:16px; }
  }

  /* ============ SECTION SCAFFOLDING ============ */
  section{ position:relative; z-index:1; }
  .section-pad{ padding: 120px 0; }
  .section-pad-sm{ padding: 90px 0; }
 .section-pad-xs{ padding: 50px 0; }
  .section-head{ max-width:640px; margin-bottom:56px; }
  .section-title{ font-size: 32px; font-weight:500; margin-top:16px; color:var(--text-heading); }
  .section-title em{ font-style:italic; color:var(--gold); font-weight:400; }

  .divider-line{ height:1px; background: var(--line-on-light); border:none; margin:0; }

  /* reveal on scroll */
  .reveal{ opacity:0; transform: translateY(28px); transition: opacity .9s cubic-bezier(.16,1,.3,1), transform .9s cubic-bezier(.16,1,.3,1); }
  .reveal.in-view{ opacity:1; transform:none; }
  .reveal-delay-1.in-view{ transition-delay:.08s; }
  .reveal-delay-2.in-view{ transition-delay:.16s; }
  .reveal-delay-3.in-view{ transition-delay:.24s; }

  /* ============ ABOUT ============ */
  .about-frame{
    position:relative;
    border-radius: 18px;
    overflow:hidden;
    border: 1px solid var(--line-on-light);
  }
  .about-frame img{ width:100%; height:100%; object-fit:cover; display:block; filter: saturate(0.9) brightness(0.92); }
  .about-frame::after{
    content:"";
    position:absolute; inset:0;
    background: linear-gradient(190deg, transparent 40%, rgba(8,12,23,0.75) 100%);
  }
  .about-frame .frame-tag{
    position:absolute; left:20px; bottom:18px; z-index:2;
    font-family:'IBM Plex Mono', monospace; font-size:0.7rem; letter-spacing:0.08em;
    color: var(--parchment);
    text-transform:uppercase;
  }

  /* ============ OBJECTIVE / SECTOR CARDS ============ */
  .card-invicta{ 
    border:2px solid #FFA500;
    border-radius:16px;
    padding:34px 30px;
    height:100%;
    transition: transform .4s cubic-bezier(.22,1,.36,1), border-color .4s ease, background .4s ease;
    position:relative;
    overflow:hidden;
  }
  .card-invicta::before{
    content:"";
    position:absolute; top:0; left:0; right:0; height:2px;
    background: linear-gradient(90deg, var(--gold), transparent);
    transform: scaleX(0); transform-origin:left;
    transition: transform .5s ease;
  }
  .card-invicta:hover{ transform: translateY(-8px); border-color: var(--line); }
  .card-invicta:hover::before{ transform: scaleX(1); }

  .icon-badge{
    width:52px; height:52px;
    border-radius:12px;
    display:flex; align-items:center; justify-content:center;
    background: #FFA500;
    border: 1px solid #fff;
    margin-bottom:22px;
  }
  .icon-badge svg{ width:26px; height:26px; stroke: #fff }

  .card-invicta h4{ font-size:24px; font-weight:700; color: #ffa500; margin-bottom:12px; }
  .card-invicta p{ color: var(--text-body); font-size:0.94rem; line-height:1.65; margin:0; }

  /* ============ STATS BAND ============ */
  .stats-band{
    background: #F0F0F0;
    border-top:1px solid var(--line-soft);
    border-bottom:1px solid var(--line-soft);
  }
  .stat-block{ text-align:center; padding: 10px 12px; }
  .stat-block .stat-num{
    font-family:'Fraunces', serif;
    font-style:italic;
    font-size: clamp(2.1rem, 3.4vw, 3rem);
    color: var(--gold);
    line-height:1;
  }
  .stat-block .stat-lbl{
    margin-top:12px;
    font-size:0.82rem;
    color: var(--slate);
    text-transform:uppercase;
    letter-spacing:0.08em;
  }
  .stat-divider{ width:1px; background: var(--line-soft); }

  /* ============ PHILOSOPHY GRID ============ */
  .philosophy-card{ 
    border:2px solid #FFA500;
    border-radius:16px;
    padding:32px 28px;
    height:100%;
    position:relative;
    overflow:hidden;
    transition: transform .4s cubic-bezier(.22,1,.36,1), border-color .4s ease;
  }
  .philosophy-card:hover{ transform: translateY(-8px); border-color: var(--line); }
  .philosophy-card .ghost-num{
    position:absolute;
    top:-22px; right:2px;
    font-family:'Fraunces', serif;
    font-style:italic;
    font-weight:500;
    font-size:5.4rem;
    color: rgba(245,146,30,0.10);
    line-height:1;
    pointer-events:none;
    user-select:none;
  }
  .philosophy-card .icon-badge{ position:relative; z-index:1; }
  .philosophy-card h5{
    position:relative; z-index:1;
    font-size:22px; font-weight:600; margin:0 0 10px;
  }
  .philosophy-card p{
    position:relative; z-index:1;
    font-size:0.9rem; line-height:1.6; margin:0;
  }

  /* ============ SECTOR CARDS ============ */
  .sector-card{
    background: var(--panel);
    border:1px solid var(--line-soft);
    border-radius:16px;
    padding:30px 28px;
    height:100%;
    position:relative;
    transition: transform .4s cubic-bezier(.22,1,.36,1), border-color .4s ease;
  }
  .sector-card:hover{ transform: translateY(-6px); border-color: var(--line); }
  .sector-card .sector-no{
    font-family:'IBM Plex Mono', monospace;
    font-size:0.72rem;
    color: var(--slate-dim);
    letter-spacing:0.1em;
  }
  .sector-card h4{ font-size:1.12rem; font-weight:500; margin: 14px 0 10px; color:var(--parchment); }
  .sector-card p{ color:var(--slate); font-size:0.9rem; line-height:1.6; margin:0; }
  .sector-card .sector-arrow{
    position:absolute; top:28px; right:26px;
    color: var(--gold); opacity:0; transform: translate(-6px,6px);
    transition: all .35s ease;
  }
  .sector-card:hover .sector-arrow{ opacity:1; transform:none; }

  /* ============ APART LIST ============ */
  .apart-item{
    display:flex; align-items:flex-start; gap:20px;
    padding:15px 0;
    border-bottom: 1px solid var(--line-on-light);
  }
  .apart-item .num{
    font-family:'Fraunces', serif; font-style:italic;
    color: var(--gold); font-size:1.6rem; min-width:56px;
  }
  .apart-item p{ font-size:14px; color: var(--text-body); margin:0; line-height:1.5; font-weight:400; }

  /* ============ FAQ ============ */
  .accordion-invicta .accordion-item{
    background:transparent;
    border:none;
    border-bottom:1px solid var(--line-on-light);
    border-radius:0;
  }
  .accordion-invicta .accordion-button{
    background:transparent;
    color: var(--text-heading);
    font-family:'Fraunces', serif;
    font-size:1.12rem;
    font-weight:500;
    padding: 26px 4px;
    box-shadow:none !important;
  }
  .accordion-invicta .accordion-button:not(.collapsed){ color: var(--gold); }
  .accordion-invicta .accordion-button::after{
    filter: invert(46%) sepia(75%) saturate(1200%) hue-rotate(0deg) brightness(101%);
    width:1.1rem; height:1.1rem; background-size:1.1rem;
  }
  .accordion-invicta .accordion-body{
    color: var(--text-body);
    font-size:0.96rem;
    line-height:1.75;
    padding: 0 4px 30px;
  }

  /* ============ CTA ============ */
  .cta-band{
    background: linear-gradient(135deg, #14203C, #0D1426);
    border-radius:24px;
    padding: 70px 56px;
    position:relative;
    overflow:hidden;
    border:1px solid var(--line);
  }
  .cta-band::before{
    content:"";
    position:absolute; right:-60px; top:-60px; width:260px; height:260px;
    background: radial-gradient(circle, rgba(245,146,30,0.22), transparent 70%);
  }
  .cta-band .section-title{ color: var(--parchment); }
  .cta-band .eyebrow{ color: var(--amber); }

  /* ============ FOOTER ============ */
  footer{
    background: #F0F0F0;
    border-top:1px solid var(--line-soft);
    padding: 70px 0 26px;
  }
  footer .text-slate{ color: var(--slate) !important; }
  footer h6{
    font-family:'IBM Plex Mono', monospace;
    text-transform:uppercase;
    font-size:18px;
    letter-spacing:0.1em;
    color: #f5921e;
    margin-bottom:20px;
  }
  footer a{ color: var(--slate); font-size:0.92rem; display:block; margin-bottom:12px; transition:color .3s ease; }
  footer a:hover{ color: var(--gold); }
  .footer-bottom{ border-top:1px solid var(--line-soft); margin-top:50px; padding-top:24px; font-size:0.82rem; color: var(--slate-dim); }
  .social-dot{
    width:38px; height:38px; border-radius:50%;
    border:1px solid var(--line-soft);
    display:flex; align-items:center; justify-content:center;
    transition: all .3s ease;
  }
  .social-dot:hover{ border-color: var(--gold); background: rgba(245,146,30,0.08); }
  .social-dot svg{ width:16px; height:16px; stroke: var(--parchment); }

  /* back to top */
  .to-top{
    position:fixed; right:26px; bottom:26px; z-index:999;
    width:46px; height:46px; border-radius:50%;
    background: var(--gold); color:#0A0F1E;
    display:flex; align-items:center; justify-content:center;
    opacity:0; pointer-events:none; transform: translateY(10px);
    transition: all .35s ease;
  }
  .to-top.show{ opacity:1; pointer-events:auto; transform:none; }

  @media (max-width: 991px){
    .section-pad{ padding:80px 0; }
  }

  @media (prefers-reduced-motion: reduce){
    *{ animation-duration:0.001ms !important; animation-iteration-count:1 !important; transition-duration:0.001ms !important; }
    .mark-draw{ stroke-dashoffset:0; }
    .mark-fill{ opacity:1; }
  }

 
.eyebrow::before{content:"";width:30px;height:1px;background:var(--gold);display:inline-block;}
.btn-invicta{
  background:#f4a146;color:#fff;font-weight:600;padding:14px 32px;
  border-radius:2px;font-size:.92rem;border:1px solid #f4a146;
  transition:all .3s ease;display:inline-flex;align-items:center;gap:10px;
}
.btn-invicta:hover{background:transparent;color:var(--ink);}
.btn-invicta-outline{
  border:1px solid var(--ink);color:var(--ink);font-weight:600;padding:13px 30px;
  border-radius:2px;transition:all .3s ease;
}
.btn-invicta-outline:hover{background:var(--ink);color:#fff;}
.btn-gold{
  background:var(--gold);color:#fff;font-weight:600;padding:14px 32px;border-radius:2px;
  border:1px solid var(--gold);transition:all .3s ease;display:inline-flex;align-items:center;gap:10px;
}
.btn-gold:hover{background:transparent;color:var(--gold);}



/* PAGE HERO */
.page-hero{
  padding:100px 0 80px;
  background:linear-gradient(180deg,var(--cream-dim),var(--cream));
  position:relative;overflow:hidden;
}
.page-hero .crumbs{color:var(--gray);font-size:.85rem;font-weight:600;margin-bottom:18px;}
.page-hero .crumbs a{color:var(--gray);}
.page-hero .crumbs a:hover{color:var(--gold);}
 
.section-dim{background:var(--cream-dim);}
.section-ink{background:linear-gradient(160deg,var(--ink-deep),var(--ink));color:#fff;}
.section-ink .eyebrow{color:var(--gold-light);}
.section-ink .eyebrow::before{background:var(--gold-light);}
 
.section-ink .section-sub{color:rgba(255,255,255,.7);}

/* ABOUT INTRO */
.about-img-frame{position:relative;}
.about-img-frame img{border-radius:2px;box-shadow:var(--shadow-soft);width:100%;}
.about-img-frame::before{
  content:"";position:absolute;top:-24px;left:-24px;width:100%;height:100%;
  border:1.5px solid var(--gold);z-index:-1;border-radius:2px;
}
.about-copy p{color:var(--gray);line-height:1.8;font-size:1.02rem;margin-bottom:20px;}

/* OFFERING ICON ROW */
.offer-item{display:flex;gap:18px;padding:26px 0;border-top:1px solid var(--line);}
.offer-item:last-child{border-bottom:1px solid var(--line);}
.offer-icon{
  min-width:56px;height:56px;border-radius:2px;background:var(--cream-dim);
  display:flex;align-items:center;justify-content:center;color:var(--gold);font-size:1.3rem;
}
.offer-item h6{font-weight:700;color:var(--ink-deep);margin-bottom:6px;}
.offer-item p{color:var(--gray);font-size:.92rem;margin:0;}

/* VISION / MISSION CARDS */
.vm-card{
  background:#fff;border:1px solid var(--line);border-radius:2px;padding:44px;height:100%;
  transition:border-color .3s ease, transform .3s ease;
}
.vm-card:hover{border-color:var(--gold);transform:translateY(-6px);}
.vm-card .vm-icon{color:var(--gold);font-size:1.6rem;margin-bottom:20px;}
.vm-card h3{font-size:1.4rem;font-weight:600;color:var(--ink-deep);margin-bottom:16px;}
.vm-card p{color:var(--gray);line-height:1.8;}

/* VALUES */
.value-row{display:flex;gap:28px;padding:30px 0;border-bottom:1px solid rgba(255,255,255,.1);}
.value-row:last-child{border-bottom:none;}
.value-num{font-family:'Fraunces',serif;font-size:2rem;font-weight:600;color:var(--gold-light);min-width:60px;}
.value-row h5{color:#fff;font-weight:700;margin-bottom:8px;}
.value-row p{color:rgba(255,255,255,.65);margin:0;line-height:1.7;font-size:.95rem;}

/* STATS */
.stat-strip{background:#fff;border:1px solid var(--line);border-radius:2px;padding:50px 30px;}
.stat-item{text-align:center;padding:10px;}
.stat-item .num{font-family:'Fraunces',serif;font-weight:600;font-size:2.6rem;color:var(--ink-deep);}
.stat-item .label{color:var(--gray);font-weight:600;font-size:.85rem;text-transform:uppercase;letter-spacing:.05em;margin-top:6px;}

/* PHILOSOPHY GRID */
.philo-card{
  background:var(--cream-dim);border-radius:2px;padding:36px;height:100%;
  border-left:2px solid transparent;transition:border-color .3s ease, background .3s ease;
}
.philo-card:hover{border-left-color:var(--gold);background:#fff;box-shadow:var(--shadow-card);}
.philo-num{font-family:'Fraunces',serif;color:var(--gold);font-weight:600;font-size:1.3rem;margin-bottom:10px;}
.philo-card h6{font-weight:700;color:var(--ink-deep);margin-bottom:10px;font-size:1.02rem;}
.philo-card p{color:var(--gray);font-size:.9rem;margin:0;line-height:1.6;}

/* CTA */
.cta-band{
  background:linear-gradient(120deg,var(--ink-deep),var(--navy-light));
  border-radius:2px;padding:64px;color:#fff;position:relative;overflow:hidden;
}
.cta-band::after{
  content:"";position:absolute;width:260px;height:260px;border:50px solid rgba(176,141,87,.12);
  border-radius:50%;right:-90px;top:-90px;
}
.cta-band h3{font-weight:600;font-size:2rem;}

/* FOOTER */
 
@media (max-width:991px){
  .page-hero{padding:130px 0 60px;text-align:center;}
  .page-hero p{margin-left:auto;margin-right:auto;}
  section{padding:70px 0;}
  .section-title{font-size:1.8rem;}
  .about-img-frame::before{display:none;}
  .cta-band{padding:40px;text-align:center;}
}
/* CONTACT FORM */
.contact-wrap{
  background:#fff;border:1px solid var(--line);border-radius:2px;
  padding:50px;box-shadow:var(--shadow-soft);
}
.contact-wrap label{font-weight:700;font-size:.82rem;color:var(--ink-deep);margin-bottom:8px;display:block;}
.contact-wrap .form-control, .contact-wrap .form-select{
  border:1px solid var(--line);border-radius:2px;padding:13px 16px;
  font-weight:500;margin-bottom:22px;background:var(--cream);
}
.contact-wrap .form-control:focus, .contact-wrap .form-select:focus{
  border-color:var(--gold);box-shadow:0 0 0 3px rgba(176,141,87,.12);background:#fff;
}
.contact-wrap textarea.form-control{resize:none;}

/* CONTACT INFO CARDS */
.info-card{
  display:flex;gap:20px;padding:30px 0;;
}
.info-card:last-child{border-bottom:none;}
.info-icon{
  min-width:54px;height:54px;border-radius:2px;background:var(--cream-dim);
  display:flex;align-items:center;justify-content:center;color:var(--gold);font-size:1.2rem;
}
.info-card h6{font-weight:700;color:var(--ink-deep);margin-bottom:6px;}
.info-card p, .info-card a{color:var(--gray);margin:0;font-size:.94rem;line-height:1.6;}
.info-card a:hover{color:var(--gold);}

.map-frame{
  border-radius:2px;overflow:hidden;box-shadow:var(--shadow-card);border:1px solid var(--line);
  height:340px;
}
.map-frame iframe{width:100%;height:100%;border:0;filter:grayscale(0.3) contrast(1.05);}

.social-row a{
  
  font-size:24px;
  display:inline-flex;align-items:center;justify-content:center;
  color:#8b93a9;margin-right:10px;transition:all .25s ease;
}
.social-row a:hover{background:var(--gold);border-color:var(--gold);color:#fff;}

.office-hours-row{display:flex;justify-content:space-between;padding:10px 0;border-bottom:1px dashed var(--line);font-size:.92rem;}
.office-hours-row:last-child{border-bottom:none;}
.office-hours-row span:first-child{color:var(--ink-deep);font-weight:600;}
.office-hours-row span:last-child{color:var(--gray);}





 
    .why-invicta{ 
padding:100px 7%;
position:relative;
overflow:hidden;
background:#fff;

}
 
/* RIGHT */

.sub-title{

font-size:13px;
letter-spacing:3px;
font-weight:600;
color:#d89a25;
text-transform:uppercase;

}

.right-content h2{

font-size:46px;
margin:20px 0 60px;
line-height:1.3;
color:#14213d;
font-weight:700;

}

.timeline{

position:relative;
padding-left:50px;

}

.timeline:before{

content:"";
position:absolute;
left:25px;
top:20px;
bottom:20px;
width:2px;
background:#d89a25;

}

.timeline-item{

display:flex;
align-items:flex-start;
margin-bottom:45px;
position:relative;

}

.timeline-icon{

position:absolute;
left:-8px;
width:66px;
height:66px;
border-radius:50%;
background:#fff;
border:2px solid #d89a25;
display:flex;
align-items:center;
justify-content:center;
box-shadow:0 10px 25px rgba(0,0,0,.08);

}

.timeline-icon img{

width:28px;

}

.timeline-card{

margin-left:70px;
background:#fff;
padding:28px;
border-radius:22px;
box-shadow:0 18px 50px rgba(0,0,0,.08);
transition:.35s;
border:1px solid #f1f1f1;

}

.timeline-card:hover{

transform:translateX(10px);

}

.timeline-card h3{

font-size:26px;
margin-bottom:15px;
color:#d89a25;

}

.timeline-card p{

line-height:1.8;
color:#666;

}

/* Background */

.bg-circle{

position:absolute;
border-radius:50%;
background:#d89a25;
opacity:.06;

}

.circle1{

width:420px;
height:420px;
top:-180px;
right:-150px;

}

.circle2{

width:300px;
height:300px;
bottom:-120px;
left:-120px;

}

/* Responsive */

@media(max-width:991px){

.container{

grid-template-columns:1fr;

}

.left-image img{

height:500px;

}

.right-content h2{

font-size:36px;

}

}
 
 
 
  #flipper {
      width: 100%;
      height: 100%;
      position: relative;
      transition: transform 0.5s ease;
      transform-style: preserve-3d;
    }

    #front,
    #back {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      backface-visibility: hidden; 
      align-items: center;
      justify-content: center;
      font-size: 20px;
      color: black;
      
    }
 
 #front {
      background-color: #ddd;
      border-radius: 10px;
      }
    
    #back {
        text-align:center;
        padding-top:120px;
      background-color: #f8f8f8;
      transform: rotateY(180deg);
    }
h5
{
    text-align:center;
    margin:5px 0px;
}
#front p
{
    text-align:center;
    margin:0px;
    font-size:16px;
}

    #flipper:hover {
      transform: rotateY(180deg);
    }
 
    /* Responsive Scrollable Container */
.table-container {
  width: 100%;
  overflow-x: auto; /* Enables horizontal scrolling on small screens */
  -webkit-overflow-scrolling: touch;
}

/* Base Table Styling */
table {
  width: 100%;
  border-collapse: collapse; /* Merges borders */
  font-family: Arial, sans-serif;
  margin: 0;
}

/* Header & Cell Padding / Borders */
th {
  padding: 12px 16px;
  text-align: left;
  border: 1px solid #fff;
}
td {
  padding: 12px 16px;
  text-align: left;
  border: 1px solid #f3932b;
}
/* Header (th) Styling */
th {
  background-color: #f3932b;
  color: #ffffff;
  font-weight: bold;
}

/* Zebra Striping - Odd Rows */
tbody tr:nth-child(odd) {
  background-color: #f9f9f9;
}

/* Zebra Striping - Even Rows */
tbody tr:nth-child(even) {
  background-color: #ffffff;
}

  
/* Hover Effect */
tbody tr:hover {
  background-color: #f3932b;
  color:#fff;
}

ul li
{
    list-style:none;
    line-height: 30px;
}
 ul li {
  list-style: none;
  line-height: 30px;
  font-size: 16px !important;
  font-weight: 100;
  text-align: left;
}



    /* Responsive Scrollable Container */
.table-container {
  width: 100%;
  overflow-x: auto; /* Enables horizontal scrolling on small screens */
  -webkit-overflow-scrolling: touch;
}

/* Base Table Styling */
table {
  width: 100%;
  border-collapse: collapse; /* Merges borders */
  font-family: Arial, sans-serif;
  margin: 0;
}

/* Header & Cell Padding / Borders */
th {
  padding: 12px 16px;
  text-align: left;
  border: 1px solid #fff;
}
td {
  padding: 12px 16px;
  text-align: left;
  border: 1px solid #f3932b;
}
/* Header (th) Styling */
th {
  background-color: #f3932b;
  color: #ffffff;
  font-weight: bold;
}

/* Zebra Striping - Odd Rows */
tbody tr:nth-child(odd) {
  background-color: #f9f9f9;
}

/* Zebra Striping - Even Rows */
tbody tr:nth-child(even) {
  background-color: #ffffff;
}

  
/* Hover Effect */
tbody tr:hover {
  background-color: #f3932b;
  color:#fff;
}

 