* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
:root {
  --crimson: #8c191c;
  --crimson-dark: #8c191c;
  --crimson-light: #9d2236;
  --gold: #c9973a;
  --white: #fff;
  --gray-light: #f7f3f3;
  --text-on-dark: rgba(255, 255, 255, 0.85);
}
body {
  font-family: "Inter", system-ui, sans-serif;
  background: #f0eded;
  overflow-x: hidden;
}

/* ── HERO ── */
.rb-hero {
  position: relative;
  height: 75vh;
  overflow: hidden;
  background: #7e797b;
}
.rb-slide {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  padding: 0 5% 60px 6%;
  opacity: 0;
  transition:
    opacity 0.7s ease,
    transform 0.7s ease;
  transform: translateX(40px);
  pointer-events: none;
  z-index: 1;
}
.rb-slide.active {
  opacity: 1;
  transform: translateX(0);
  pointer-events: auto;
  z-index: 2;
}
.rb-slide.exit {
  opacity: 0;
  transform: translateX(-40px);
}

/* slide bg image */
.rb-slide-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.rb-slide-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.38;
  filter: saturate(0.7);
}
.rb-slide-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background:linear-gradient(100deg, rgb(140 26 29) 0%, rgba(90, 10, 30, 0.72) 45%, rgba(90, 10, 30, 0.18) 100%)
  
}

/* particles */
.rb-particles {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  overflow: hidden;
}
.rb-particle {
  position: absolute;
  border-radius: 50%;
  opacity: 0;
  animation: rb-float linear infinite;
}
@keyframes rb-float {
  0% {
    opacity: 0;
    transform: translateY(0) scale(0.6);
  }
  15% {
    opacity: 0.55;
  }
  85% {
    opacity: 0.4;
  }
  100% {
    opacity: 0;
    transform: translateY(-280px) scale(1);
  }
}

/* dna */
.rb-dna {
  position: absolute;
  right: 36%;
  top: 46%;
  transform: translateY(-50%);
  z-index: 1;
  opacity: 0.16;
  animation: rb-spin 14s linear infinite;
}
@keyframes rb-spin {
  to {
    transform: translateY(-50%) rotate(360deg);
  }
}

/* slide content */
.rb-content {
  position: relative;
  z-index: 3;
  max-width: 52%;
  min-width: 280px;
}
.rb-tag {
  display: inline-block;
  background: white;
  /* border: 1px solid rgba(201, 151, 58, 0.5); */
  color: var(--crimson);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: 20px;
  margin-bottom: 14px;
}
.rb-h1 {
  font-size: clamp(1.7rem, 3.5vw, 3.8rem);
  font-weight: 700;
  color: #fff;
  line-height: 1.18;
  margin-bottom: 10px;
}
.rb-h1 span {
  color: white;
}
.rb-sub {
  font-size: clamp(0.82rem, 1.4vw, 1rem);
  color: var(--text-on-dark);
  line-height: 1.6;
  margin-bottom: 24px;
  max-width: 400px;
}
.rb-btns {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}
.rb-btn-primary {
  background: white;
  color: var(--crimson);
  border: none;
  padding: 11px 22px;
  border-radius: 6px;
  font-size: 0.88rem;
  font-weight: 600;
  cursor: pointer;
  transition:
    background 0.2s,
    transform 0.15s;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.rb-btn-primary:hover {
     color: #fff;
  background: rgba(255, 255, 255, 0.1);
  transform: translateY(-2px);
}
.rb-btn-secondary {
  background: transparent;
  color: #fff;
  border: 1.5px solid rgba(255, 255, 255, 0.55);
  padding: 11px 22px;
  border-radius: 6px;
  font-size: 0.88rem;
  font-weight: 600;
  cursor: pointer;
  transition:
    border-color 0.2s,
    background 0.2s,
    transform 0.15s;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.rb-btn-secondary:hover {
  border-color: #fff;
  background: rgba(255, 255, 255, 0.1);
  transform: translateY(-2px);
}

/* ── HIGHLIGHT CARD ── */
.rb-highlight {
  position: absolute;
  right: 17%;
  top: 28%;
  transform: translateY(-50%);
  z-index: 10;
  width: clamp(200px, 24%, 365px);
  background: var(--crimson);
  border-radius: 14px;
  padding: 42px 20px;
animation: rb-float 3.5s ease-in-out infinite;
}
@keyframes rb-float {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
}
@keyframes rb-pulse-card {
  0%,
  100% {
    box-shadow:
      0 8px 40px rgba(123, 26, 42, 0.55),
      0 0 0 0 rgba(201, 151, 58, 0.28);
  }
  60% {
    box-shadow:
      0 12px 50px rgba(123, 26, 42, 0.7),
      0 0 0 10px rgba(201, 151, 58, 0);
  }
}
.rb-hl-badge {
  display: inline-block;
  background: rgba(201, 151, 58, 0.3);
  color: white;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 3px 10px;
  border-radius: 20px;
  margin-bottom: 10px;
  border: 1px solid rgba(201, 151, 58, 0.4);
}
.rb-hl-title {
  color: #fff;
  font-size: 1.7rem;
  font-weight: 700;
  margin-bottom: 6px;
  line-height: 1.25;
}
.rb-hl-desc {
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.88rem;
  line-height: 1.55;
  margin-bottom: 14px;
}
.rb-hl-meta {
  display: flex;
  align-items: center;
  gap: 7px;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.75rem;
  margin-bottom: 18px;
}
.rb-hl-meta svg {
  flex-shrink: 0;
  opacity: 0.8;
}
.rb-hl-btn {
  display: block;
  width: 100%;
  background: #fff;
  color: var(--crimson);
  text-align: center;
  border: none;
  padding: 10px;
  border-radius: 8px;
  font-size: 0.88rem;
  font-weight: 700;
  cursor: pointer;
  transition:
    background 0.2s,
    transform 0.15s;
  text-decoration: none;
}
.rb-hl-btn:hover {
  background: var(--gold);
  color: #fff;
  transform: scale(1.03);
}
.rb-highlight::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 14px;
  background: linear-gradient(
    135deg,
    rgba(255, 255, 255, 0.12) 0%,
    transparent 60%
  );
  pointer-events: none;
}
.rb-highlight::after {
  content: "";
  position: absolute;
  inset: -2px;
  border-radius: 16px;
  background: conic-gradient(from 0deg, transparent 60%, rgb(203 183 146 / 36%) 80%, transparent 100%);
  z-index: -1;
  animation: rb-border-spin 80s linear infinite;
}
@keyframes rb-border-spin {
  to {
    transform: rotate(360deg);
  }
}
.faq-img img{
  max-height:300px;
}

/* dots */
.rb-dots {
  position: absolute;
  bottom: 86px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 8px;
  z-index: 20;
}
.rb-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.35);
  cursor: pointer;
  transition:
    background 0.25s,
    width 0.25s,
    border-radius 0.25s;
  border: none;
}
.rb-dot.active {
  background: var(--gold);
  width: 24px;
  border-radius: 4px;
}

/* arrows */
.rb-arrow {
   
  position: absolute;
  top: 46%;
  transform: translateY(-50%);
  z-index: 20;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.25);
  color: #fff;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  transition: background 0.2s;
  backdrop-filter: blur(4px);
}
.rb-arrow:hover {
  background: rgba(255, 255, 255, 0.25);
}
.rb-arrow-left {
     display: none;
  left: 14px;
}
.rb-arrow-right {
     display: none;
  right: calc(26% + 16px);
}

/* ── STATS STRIP — half in banner, half below ── */
.rb-stats-wrap {
  position: relative;
  z-index: 30;
  margin-top: -62px;
  padding: 0 15%;
}
.rb-stats {
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 8px 40px rgba(0, 0, 0, 0.13);
  padding: 0 10px;
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 0;
}
.rb-stat {
  text-align: center;
  padding: 18px 6px;
  border-right: 1px solid #f0eded;
  cursor: default;
  transition:
    background 0.2s,
    transform 0.18s;
  position: relative;
}
.rb-stat:last-child {
  border-right: none;
}
.rb-stat:hover {
  background: #fdf8f8;
  transform: translateY(-4px);
}
.rb-stat-icon {
  font-size: 1.5rem;
  margin-bottom: 5px;
  display: block;
  animation: rb-icon-bob 2.5s ease-in-out infinite;
}
.rb-stat:nth-child(2) .rb-stat-icon {
  animation-delay: 0.4s;
}
.rb-stat:nth-child(3) .rb-stat-icon {
  animation-delay: 0.8s;
}
.rb-stat:nth-child(4) .rb-stat-icon {
  animation-delay: 1.2s;
}
.rb-stat:nth-child(5) .rb-stat-icon {
  animation-delay: 1.6s;
}
.rb-stat:nth-child(6) .rb-stat-icon {
  animation-delay: 2s;
}
@keyframes rb-icon-bob {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-4px);
  }
}
.rb-stat-num {
  font-size: clamp(1.3rem, 2vw, 1.75rem);
  font-weight: 700;
  color: var(--crimson);
  display: block;
  line-height: 1;
}
.rb-stat-label {
  font-size: 0.68rem;
  color: #888;
  margin-top: 5px;
  font-weight: 500;
  line-height: 1.3;
}

/* page body below */
.rb-body {
  background: #f0eded;
  padding: 40px 5%;
}

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
  .rb-stats {
    grid-template-columns: repeat(3, 1fr);
  }
  .rb-stat:nth-child(3) {
    border-right: none;
  }
  .rb-stat:nth-child(4) {
    border-top: 1px solid #f0eded;
  }
  .rb-stat:nth-child(5) {
    border-top: 1px solid #f0eded;
  }
  .rb-stat:nth-child(6) {
    border-top: 1px solid #f0eded;
    border-right: none;
  }
}
@media (max-width: 640px) {
  .rb-hero {
    height: auto;
    min-height: 80vh;
  }
  .rb-slide {
    flex-direction: column;
    padding: 70px 5% 120px;
    align-items: flex-start;
  }
  .rb-content {
    max-width: 100%;
  }
  .rb-highlight {
    position: relative;
    right: -90px;
    padding:22px 20px;
    top: auto;
    transform: none;
    width: 80%;
    margin-top: 358px;
    border-radius: 10px;
  }
  .rb-arrow-right {
    right: 14px;
  }
  .rb-dna {
    display: none;
  }
  .rb-stats {
    grid-template-columns: repeat(2, 1fr);
  }
  .rb-stat:nth-child(2) {
    border-right: none;
  }
  .rb-stat:nth-child(3) {
    border-right: 1px solid #f0eded;
    border-top: 1px solid #f0eded;
  }
  .rb-stat:nth-child(4) {
    border-top: 1px solid #f0eded;
    border-right: none;
  }
  .rb-stat:nth-child(5) {
    border-top: 1px solid #f0eded;
    border-right: 1px solid #f0eded;
  }
  .rb-stat:nth-child(6) {
    border-top: 1px solid #f0eded;
    border-right: none;
  }
  .rb-dots {
    bottom: 100px;
  }
}
.stat-lbl{
    transition:transform .7s ease;
    transform-style:preserve-3d;
}

.stat-cell:hover .stat-num,
.stat-cell:hover .stat-lbl{
    transform:rotateY(360deg);
}
.stat-num{
    perspective:800px;
}

.flip-number{
    display:inline-block;
    transition:transform .6s ease;
    transform-style:preserve-3d;
    transform-origin:center;
}

.stat-cell:hover .flip-number{
    transform:rotateX(360deg);
}
/* Initial state */
.rb-tag,
.rb-h1,
.rb-sub,
.rb-btns {
    opacity: 0;
    transform: perspective(1200px) rotateY(-35deg) translateX(-40px);
    transform-origin: left center;
    backface-visibility: hidden;
    will-change: transform, opacity;
}

/* Animate when slide becomes active */
.rb-slide.active .rb-tag {
    animation: smoothFlipRight .8s cubic-bezier(.22,.61,.36,1) forwards;
}

.rb-slide.active .rb-h1 {
    animation: smoothFlipRight .8s .15s cubic-bezier(.22,.61,.36,1) forwards;
}

.rb-slide.active .rb-sub {
    animation: smoothFlipRight .8s .3s cubic-bezier(.22,.61,.36,1) forwards;
}

.rb-slide.active .rb-btns {
    animation: smoothFlipRight .8s .45s cubic-bezier(.22,.61,.36,1) forwards;
}

@keyframes smoothFlipRight {
    from {
        opacity: 0;
        transform: perspective(1200px) rotateY(-20deg) translateX(-30px) scale(.97);
    }

    to {
        opacity: 1;
        transform: perspective(1200px) rotateY(0) translateX(0) scale(1);
    }
}
.registerbtn{
   background: var(--maroon);
              font-size: 0.85rem;
              border-radius: 6px;
              padding: 12px;
}
.trnsition-delay{
  transition-delay: 0.08s;
}

.dept-showcase-section{
    background:#f8f7f2;
    padding:90px 0;
}

.dept-showcase-subtitle{
    color:#8b1822;
    font-style:italic;
    font-weight:600;
}

.dept-showcase-title{
    font-size:48px;
    font-weight:700;
    margin-top:10px;
}

.dept-showcase-card{
    height:320px;
    perspective:1200px;
}

.dept-showcase-card-inner{
    position:relative;
    width:100%;
    height:100%;
    transform-style:preserve-3d;
    transition:.8s;
}

.dept-showcase-card:hover
.dept-showcase-card-inner{
    transform:rotateY(180deg);
}

.dept-showcase-front,
.dept-showcase-back{
    position:absolute;
    inset:0;
    border-radius:12px;
    backface-visibility:hidden;
    overflow:hidden;
    box-shadow:0 15px 40px rgba(0,0,0,.08);
}

.dept-showcase-front{
    background:#fff;
    display:flex;
    flex-direction:column;
    justify-content:center;
    align-items:center;
    text-align:center;
    padding:40px;
}

.dept-showcase-front::before{
    content:"";
    position:absolute;
    left:0;
    top:0;
    width:100%;
    height:5px;
    background:#861c25;
}

.dept-showcase-icon{
    width:80px;
    height:80px;
    border-radius:50%;
    background:#861c25;
    color:#fff;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:34px;
    margin-bottom:25px;
}

.dept-showcase-front h4{
    font-weight:700;
}

.dept-showcase-front p{
    color:#666;
}

.dept-showcase-back{
    background:linear-gradient(135deg,#861c25,#5c1118);
    color:#fff;
    transform:rotateY(180deg);
    display:flex;
    flex-direction:column;
    justify-content:center;
    align-items:center;
    text-align:center;
    padding:35px;
}

.dept-showcase-btn{
    display:inline-flex;
    align-items:center;
    gap:8px;
    margin-top:15px;
    padding:12px 28px;
    background:#fff;
    color:#861c25;
    text-decoration:none;
    border-radius:40px;
    font-weight:600;
    transition:.3s;
}

.dept-showcase-btn:hover{
    background:#ffe7ea;
    color:#861c25;
}

@media (max-width:991px){

    .dept-showcase-title{
        font-size:38px;
    }

}

@media (max-width:767px){

    .dept-showcase-title{
        font-size:30px;
    }

    .dept-showcase-card{
        height:280px;
    }

}

/* ============================================================
       WHY CHOOSE TESLA SCANS SECTION
    ============================================================ */
    .ht-why-section {
      position: relative; overflow: hidden; padding: 90px 0;
    
    }
    .ht-why-section::before {
      content: ''; position: absolute; inset: 0;
      background: radial-gradient(ellipse 80% 60% at 70% 50%, rgba(143, 10, 10, 0.12) 0%, transparent 70%);
      pointer-events: none;
    }

    /* Left column */
    .ht-why-heading {
      font-size: clamp(1.7rem,3.8vw,2.6rem); font-weight: 800;
   line-height: 1.2;
    }
    .ht-why-heading span { }
    .ht-why-sub {
      font-size: 1rem; 
      line-height: 1.75; margin: 16px 0 32px;
    }
    .ht-why-feature {
      display: flex; align-items: flex-start; gap: 14px;
      margin-bottom: 22px;
    }
    .ht-why-icon {
      flex-shrink: 0; width: 46px; height: 46px;
      background: #9d2a2d; border: 1px solid rgba(10,122,143,0.3);
      border-radius: 12px; display: flex; align-items: center; justify-content: center;
      font-size: 1.25rem; color: var(--ht-accent-glow);
      transition: background var(--ht-transition), transform var(--ht-transition);
    }
    .ht-why-feature:hover .ht-why-icon {
      background: var(--ht-accent); transform: scale(1.1);
    }
    .ht-why-feat-title {
      font-weight: 700; font-size: 0.97rem; 
    }
    .ht-why-feat-desc {
      font-size: 0.83rem; color: rgba(68, 68, 68, 0.58); margin-top: 3px; line-height: 1.55;
    }

    /* Right column - orbital image */
    .ht-orbital-wrap {
      position: relative; display: flex;
      align-items: center; justify-content: center;
      min-height: 480px;
    }

    /* Dashed rotating rings */
    .ht-orbit-ring {
      position: absolute; border-radius: 50%;
      border: 3.5px dashed rgb(157 42 45 / 27%);
      top: 50%; left: 50%; transform: translate(-50%,-50%);
    }
    .ht-orbit-ring-1 {
      width: 320px; height: 320px;
      animation: htOrbitSpin 18s linear infinite;
    }
    .ht-orbit-ring-2 {
      width: 400px; height: 400px;
      animation: htOrbitSpin 28s linear infinite reverse;
    }
    .ht-orbit-ring-3 {
      width: 470px; height: 470px;
      animation: htOrbitSpin 38s linear infinite;
      border-color:rgb(157 42 45 / 27%);
    }
    @keyframes htOrbitSpin {
      from { transform: translate(-50%,-50%) rotate(0deg); }
      to   { transform: translate(-50%,-50%) rotate(360deg); }
    }

    /* Teal accent ring */
    .ht-orbit-accent {
      position: absolute; border-radius: 50%;
      top: 50%; left: 50%; transform: translate(-50%,-50%);
      width: 250px; height: 250px;
      border: 6px solid var(--ht-accent);
      box-shadow: 0 0 0 3px rgba(7,88,105,0.4), inset 0 0 32px rgba(7,88,105,0.25);
      animation: htOrbitSpin 12s linear infinite;
    }
    .ht-orbit-accent-outer {
      position: absolute; border-radius: 50%;
      top: 50%; left: 50%; transform: translate(-50%,-50%);
      width: 280px; height: 280px;
      border: 2px solid rgba(13,143,168,0.5);
      animation: htOrbitSpin 20s linear infinite reverse;
    }

    /* Centre image circle */
    .ht-orbit-img-wrap {
      position: relative; z-index: 2;
      width: 370px; height: 370px; border-radius: 50%;
      overflow: hidden; flex-shrink: 0;
      border: 1px solid #032530;
      box-shadow: 0 0 0 4px var(--ht-accent), 0 8px 40px rgba(0,0,0,0.6);
    }
    .ht-orbit-img-wrap img {
      width: 100%; height: 100%; object-fit: cover;
    }

    /* Feature buttons orbiting – positioned absolutely around circle */
    .ht-orbit-btn {
      position: absolute; z-index: 3;
      background: #9d2a2d;
      /* backdrop-filter: blur(8px); */
      border: 1px solid rgba(10,122,143,0.45);
      border-radius: 10px 18px; padding: 10px 18px;
      font-size: 1rem; font-weight: 600;
      color: #fff; white-space: nowrap;
      /* cursor: pointer; */
      transition: background var(--ht-transition), box-shadow var(--ht-transition), transform 0.2s;
      animation: htWave 3s ease-in-out infinite;
      text-decoration: none;
    }
    /* .ht-orbit-btn:hover {
      background: var(--ht-accent);
      box-shadow: 0 0 16px rgba(10,122,143,0.55);
      transform: scale(1.07) !important;
      color: #054643;
    } */
    .ht-orbit-btn i { margin-right: 5px; color: var(--ht-accent-glow); }

    /* Wavy stagger delays */
    .ht-orbit-btn:nth-child(1) { animation-delay: 0s; }
    .ht-orbit-btn:nth-child(2) { animation-delay: 0.4s; }
    .ht-orbit-btn:nth-child(3) { animation-delay: 0.8s; }
    .ht-orbit-btn:nth-child(4) { animation-delay: 1.2s; }
    .ht-orbit-btn:nth-child(5) { animation-delay: 1.6s; }
    .ht-orbit-btn:nth-child(6) { animation-delay: 2.0s; }

    @keyframes htWave {
      0%,100% { transform: translateY(0) scale(1); }
      50%      { transform: translateY(-6px) scale(1.04); }
    }

    /* Button positions around the orbital (desktop) */
    .ht-orbit-btn-top    { top: 4%;  left: 50%; transform: translateX(-50%); }
    .ht-orbit-btn-bl     { bottom: 14%; left: 2%; }
    .ht-orbit-btn-br     { bottom: 14%; right: -10%; }
    .ht-orbit-btn-tl     { top: 20%;  left: 0%; }
    .ht-orbit-btn-tr     { top: 20%;  right: -10%; }
    .ht-orbit-btn-bot    { bottom: 2%; left: 50%; transform: translateX(-50%); }

    /* Mobile stacked layout */
    @media (max-width: 767.98px) {
      .ht-orbital-wrap { min-height: 360px; }
      .ht-orbit-ring-1 { width: 240px; height: 240px; }
      .ht-orbit-ring-2 { width: 300px; height: 300px; }
      .ht-orbit-ring-3 { width: 350px; height: 350px; }
      .ht-orbit-accent { width: 188px; height: 188px; }
      .ht-orbit-accent-outer { width: 212px; height: 212px; }
      .ht-orbit-img-wrap { width: 165px; height: 165px; }
      .ht-orbit-btn { font-size: 0.72rem; padding: 8px 12px; }
      .ht-orbit-btn-tl { top: 14%; left: -2%; }
      .ht-orbit-btn-tr { top: 14%; right: -2%; }
      .ht-orbit-btn-bl { bottom: 10%; left: -2%; }
      .ht-orbit-btn-br { bottom: 10%; right: -2%; }
    }

    @media (max-width: 575.98px) {
      .ht-orbit-btn-top,
      .ht-orbit-btn-bot { display: none; } /* hide top/bot on very small screens */
      .ht-why-section { padding: 60px 0; }
    }

.top-menu{
    position: absolute;
    left: 50%;
    transform: translateX(-35%);
    display: flex;
    gap: 22px;
    align-items: center;
}

.top-menu a{
    color: #fff;
    text-decoration: none;
    /*font-size: 13px;*/
    font-weight: 500;
    transition: .3s;
}

.top-menu a:hover{
    color: #ffffff;
}

@media (max-width:991.98px){
    .top-menu{
        display:none !important;
    }
}

.top-bar-inner{
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:20px;
    min-height:45px;
}

.top-contact,
.top-social,
.top-menu{
    display:flex;
    align-items:center;
}

.top-contact{
    gap:18px;
}

.top-contact a,
.top-contact span,
.top-social a,
.top-menu a{
    color:#fff;
    text-decoration:none;
}

.top-menu{
    gap:22px;
}

.top-menu a{
    position:relative;
    font-size:13px;
    font-weight:500;
    text-transform:uppercase;
    letter-spacing:.4px;
    transition:.3s;
}

.top-menu a::after{
    content:"";
    position:absolute;
    left:0;
    bottom:-4px;
    width:0;
    height:2px;
    background:#ffffff;
    transition:.3s;
}

.top-menu a:hover{
    color:#ffffff;
}

.top-menu a:hover::after{
    width:100%;
}

.top-bar {
  background: var(--maroon);
  font-size: 0.78rem;
  padding: 6px 0;
  padding-inline: 40px;
  letter-spacing: 0.02em;
}

.top-social a{
    width:32px;
    height:32px;
    display:flex;
    align-items:center;
    justify-content:center;
    border-radius:50%;
    transition:.3s;
}

.top-social a:hover{
    background:rgba(255,255,255,.15);
    color:#ffffff;
}

@media (max-width:991.98px){
    .top-bar-inner{
        justify-content:space-between;
    }

    .top-menu{
        display:none !important;
    }
}
@media (max-width: 1400px) {
.top-menu a{
    font-size: 0.65rem;
}
}