@import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap');

:root {
  --red: #C62828;
  --red2: #C62828;
  --gold: #F0B100;
  --gold2: #F0B100;
  --dark: #1a1a1a;
  --text: #444;
  --light: #f9f9f9;
  --border: #e0e0e0;
  --bs-font-sans-serif: "Inter", sans-serif;
}

/* ════════════════════════════════════════
   BASE
════════════════════════════════════════ */
html {
  scroll-behavior: smooth;
}

body {
  font-family: "Inter", sans-serif;
  color: var(--dark);
  overflow-x: hidden;
}

::-webkit-scrollbar {
  width: 5px;
}

::-webkit-scrollbar-track {
  background: #f1f1f1;
}

::-webkit-scrollbar-thumb {
  background: var(--red);
  border-radius: 3px;
}

/* Helper */
.text-brand-red {
  color: var(--red);
}

.text-red {
  color: var(--red) !important;
}
a.navbar-brand img {
    width: 324px;
}
/* ════════════════════════════════════════
   TOPBAR
════════════════════════════════════════ */
.topbar {
  background: var(--dark);
  color: #fff;
  font-size: 12px;
  padding: 6px 5%;
}

.topbar a {
  color: var(--gold);
  text-decoration: none;
  transition: color .2s;
}

.topbar a:hover {
  color: #fff;
}

/* ════════════════════════════════════════
   NAVBAR
════════════════════════════════════════ */
#mainNav {
  box-shadow: 0 2px 16px rgba(0, 0, 0, .08);
  transition: box-shadow .3s;
}

#mainNav .container-xl {
  max-width: 1300px;
  padding-inline: 5%;
}

.logo-circle {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  flex-shrink: 0;
  background: linear-gradient(135deg, var(--gold), var(--red));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  border: 2px solid var(--gold2);
  box-shadow: 0 3px 12px rgba(245, 166, 35, .35);
}

.logo-txt .t1 {
  font-size: 15px;
  font-weight: 800;
  color: var(--red);
  line-height: 1.1;
}

.logo-txt .t2 {
  font-size: 11px;
  color: #777;
  font-weight: 500;
  letter-spacing: .4px;
}

/* Nav links */
.navbar .nav-link {
    font-size: 14px;
    font-weight: 500;
    color: var(--dark);
    border-radius: 6px;
    padding: 8px 3px !important;
    transition: color .2s, background .2s;
}

.navbar .nav-link:hover,
.navbar .nav-link.show {
  color: var(--red) !important;
  background: #fff5f2;
}

/* Dropdown */
.dropdown-menu-custom {
  border-radius: 10px !important;
  border: 1px solid var(--border) !important;
  box-shadow: 0 8px 32px rgba(0, 0, 0, .12) !important;
  min-width: 220px;
  padding: 6px 0;
  animation: dropFade .2s ease;
}

@keyframes dropFade {
  from {
    opacity: 0;
    transform: translateY(8px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.dropdown-menu-custom .dropdown-item {
  font-size: 13px;
  color: #444;
  padding: 9px 18px;
  transition: background .15s, color .15s;
}

.dropdown-menu-custom .dropdown-item:hover {
  background: #fff5f2;
  color: var(--red);
}

.dropdown-menu-custom .dropdown-divider {
  margin: 4px 0;
  border-color: var(--border);
}

/* Search btn */
.btn-nav-search {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--red);
  color: #fff;
  border: none;
  cursor: pointer;
  font-size: 13px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background .2s, transform .2s;
}

.btn-nav-search:hover {
  background: var(--red2);
  transform: scale(1.1);
}

/* ════════════════════════════════════════
   HERO
════════════════════════════════════════ */
#hero .container-xl {
  max-width: 1300px;
  padding-inline: 5%;
}

/* .hero-card {
  border: 1.5px dashed rgba(21,101,192,.18);
  border-radius: 20px;
  padding: 40px;
  box-shadow: 0 6px 40px rgba(0,0,0,.06);
  position: relative;
  background: #fff;
  overflow: hidden;
}
.hero-card::after {
  content: '';
  position: absolute; bottom: 0; left: 10%; right: 10%; height: 4px;
  background: linear-gradient(90deg, transparent, var(--gold), var(--red), transparent);
  border-radius: 0 0 20px 20px;
} */

/* Thumbnail */
.hero-thumb {
  position: relative;
  border-radius: 14px;
  overflow: hidden;
  aspect-ratio: 4/3;
  cursor: pointer;
  box-shadow: 0px 5px 8px 0px rgba(0, 0, 0, .18);
  background: var(--dark);
}

.hero-thumb-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .5s;
  z-index: 1;
}

.hero-bg-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 2;
}

.hero-thumb-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, .15);
  z-index: 3;
  transition: background .3s;
}

.hero-thumb:hover .hero-thumb-overlay {
  background: rgba(0, 0, 0, .32);
}

.hero-thumb:hover .hero-thumb-img {
  transform: scale(1.04);
}

/* Play button */
.hero-play-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 5;
  width: 68px;
  height: 68px;
  border-radius: 50%;
  background: rgba(255, 255, 255, .92);
  color: var(--red);
  font-size: 22px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 28px rgba(0, 0, 0, .3);
  transition: transform .3s, box-shadow .3s;
  pointer-events: none;
}

.hero-thumb:hover .hero-play-btn {
  transform: translate(-50%, -50%) scale(1.12);
  box-shadow: 0 10px 36px rgba(0, 0, 0, .4);
}

.play-ring {
  position: absolute;
  inset: -8px;
  border-radius: 50%;
  border: 2px solid rgba(217, 61, 26, .4);
  animation: pulseRing 2.2s ease-out infinite;
  pointer-events: none;
}

.hero-play-btn::after {
  content: '';
  position: absolute;
  inset: -18px;
  border-radius: 50%;
  border: 2px solid rgba(217, 61, 26, .18);
  animation: pulseRing 2.2s ease-out .6s infinite;
  pointer-events: none;
}

@keyframes pulseRing {
  0% {
    transform: scale(1);
    opacity: .8;
  }

  70% {
    transform: scale(1.45);
    opacity: 0;
  }

  100% {
    transform: scale(1.45);
    opacity: 0;
  }
}

.hero-thumb-badge {
  position: absolute;
  bottom: 14px;
  right: 14px;
  z-index: 5;
  background: var(--red);
  color: #fff;
  font-size: 11px;
  font-weight: 600;
  padding: 5px 12px;
  border-radius: 20px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, .25);
}

/* Hero text */
.hero-tag {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 10px;
}

.hero-title {
  font-size: clamp(30px, 3.5vw, 52px);
  font-weight: 900;
  line-height: 1.05;
  margin-bottom: 16px;
}

.text-brand-red span {
  display: block;
  font-weight: 300;
}

.hero-desc {
  font-size: 14px;
  color: #666;
  line-height: 1.8;
  margin-bottom: 24px;
  max-width: 420px;
}

/* Stats */
.hs-item strong {
  display: block;
  font-size: 26px;
  font-weight: 900;
  color: var(--red);
  line-height: 1;
}

.hs-item span {
  font-size: 11px;
  color: #888;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.hs-divider {
  width: 1px;
  height: 36px;
  background: var(--border);
}

/* Buttons */
.btn-brand-gold {
  background: var(--gold);
  color: #fff;
  border: 2px solid var(--gold);
  font-size: 13px;
  font-weight: 700;
  padding: 10px 28px;
  border-radius: 26px;
  letter-spacing: .3px;
  transition: background .2s, transform .2s, box-shadow .2s;
}

.btn-brand-gold:hover {
  background: var(--gold2);
  border-color: var(--gold2);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(245, 166, 35, .45);
}

.btn-outline-brand-red {
  background: transparent;
  color: var(--red);
  border: 2px solid var(--red);
  font-size: 13px;
  font-weight: 700;
  padding: 10px 28px;
  border-radius: 26px;
  transition: all .2s;
}

.btn-outline-brand-red:hover {
  background: var(--red);
  color: #fff;
  transform: translateY(-2px);
}

/* ════════════════════════════════════════
   CLIENTS BAND
════════════════════════════════════════ */
.clients-section {
  background: var(--red);
  overflow: hidden;
}

.clients-section .container-xl {
  max-width: 1300px;
  padding: 0 5%;
}

.clients-label {
  font-size: 34px;
  font-weight: 600;
  color: #fff;
  line-height: 1.2;
  min-width: 110px;
  padding: 24px 30px 24px 0;
  margin-right: 28px;
}

.clients-label span {
  font-size: 30px;
  font-weight: 300;
  display: block;
}

.clients-track {
  display: flex;
  gap: 20px;
  align-items: center;
  transition: transform .5s cubic-bezier(.77, 0, .18, 1);
  padding: 0px 0;
}

.client-card {
  flex-shrink: 0;
  width: 168px;
  /* background: #fff; */
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 0px 10px;
  /* box-shadow: 0 3px 16px rgba(0, 0, 0, .12); */
  transition: transform .3s, box-shadow .3s;
  cursor: pointer;
  border-right: 1px solid #f7f7f754;
}

/* .client-card:hover {
  transform: translateY(-4px) scale(1.04);
  box-shadow: 0 8px 28px rgba(0, 0, 0, .18);
} */

.client-logo-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
}

.cn-btn {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 2px solid #fff;
  background: #F0B100;
  color: #fff;
  cursor: pointer;
  font-size: 13px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background .2s, border-color .2s;
}

.client-sub {
  font-size: 9px;
  color: #888;
  margin-top: 2px;
}

.cn-btn {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: 2px solid rgba(255, 255, 255, .6);
    background: rgb(240 177 0);
    color: #fff;
    cursor: pointer;
    font-size: 13px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background .2s, border-color .2s;
    text-decoration: none;
}

.cn-btn:hover {
  background: rgba(255, 255, 255, .35);
  border-color: #fff;
}

/* ════════════════════════════════════════
   SAFETY
════════════════════════════════════════ */
#safety .container-xl {
  max-width: 1300px;
  padding-inline: 5%;
}

.safety-title {
  font-size: clamp(26px, 3.5vw, 38px);
  font-weight: 800;
  margin-bottom: 28px;
  line-height: 1.2;
  color: var(--red);
 
}

.safety-title span {
  font-weight: 400;
   border-bottom: 2px solid var(--red);
}

.safety-list {
  display: flex;
  flex-direction: column;
  gap: 0;
}
.safety-item {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 4px 0;
    opacity: 0;
    transform: translateX(-20px);
    transition: opacity .5s, transform .5s;
}

.safety-item.visible {
  opacity: 1;
  transform: translateX(0);
}

.safety-num {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  flex-shrink: 0;
  background:var(--gold);;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 700;
  margin-top: 2px;
}
.safety-num img {
    width: 18px;
}
.safety-item:nth-child(even) .safety-num {
  background: var(--gold);
}

.safety-text p {
  font-size: 16px;
  color: #000;
  line-height: 1.55;
  font-weight: 500;
  margin: 0;
}

.safety-img {
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 12px 50px rgba(0, 0, 0, .15);
  aspect-ratio: 4/3;
}

.safety-img img {
  transition: transform .5s;
}

.safety-img:hover img {
  transform: scale(1.04);
}

/* ════════════════════════════════════════
   WHY CHOOSE US
════════════════════════════════════════ */
#why .container-xl {
  max-width: 1200px;
  padding-inline: 5%;
}

.sec-label {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 8px;
}

.sec-title {
  font-size: clamp(24px, 3vw, 36px);
  font-weight: 800;
  color: var(--dark);
}

.sec-title span {
  color: var(--red);
}

.why-card {
  background: #fff;
  border-radius: 14px;
  padding: 30px 24px;
  box-shadow: 0 3px 20px rgba(0, 0, 0, .07);
  border-top: 4px solid var(--red);
  transition: transform .3s, box-shadow .3s;
  text-align: center;
}

.why-card:nth-child(1) {
  border-top-color: var(--red);
}

.why-card:nth-child(2) {
  border-top-color: var(--gold);
}

.why-card:nth-child(3) {
  border-top-color: var(--dark);
}

.col-md-4:nth-child(1) .why-card {
  border-top-color: var(--red);
}

.col-md-4:nth-child(2) .why-card {
  border-top-color: var(--gold);
}

.col-md-4:nth-child(3) .why-card {
  border-top-color: var(--dark);
}

.why-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 14px 40px rgba(0, 0, 0, .12);
}

.why-icon {
  width: 64px;
  height: 64px;
  border-radius: 14px;
  margin: 0 auto 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
}

.why-icon-1 {
  background: #fff0ed;
}

.why-icon-2 {
  background: #fffbea;
}

.why-icon-3 {
  background: #f0f0f0;
}

.why-card h4 {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 10px;
}

.why-card p {
  font-size: 13px;
  color: #666;
  line-height: 1.65;
  margin: 0;
}

/* ════════════════════════════════════════
   CONTACT STRIP
════════════════════════════════════════ */
.contact-strip {
  background: linear-gradient(135deg, var(--red), var(--red2));
}

.contact-strip .container-xl {
  max-width: 1300px;
  padding-inline: 5%;
}

.contact-title {
  font-size: clamp(22px, 3vw, 34px);
  font-weight: 800;
  color: #fff;
  margin-bottom: 10px;
}

.contact-sub {
  color: rgba(255, 255, 255, .85);
  font-size: 15px;
}

.btn-strip-white {
  background: #fff;
  color: var(--red);
  font-size: 14px;
  font-weight: 700;
  border-radius: 6px;
  padding: 12px 28px;
  transition: transform .2s, box-shadow .2s;
}

.btn-strip-white:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 24px rgba(0, 0, 0, .2);
  color: var(--red);
}

.btn-strip-outline {
  background: transparent;
  color: #fff;
  border: 2px solid rgba(255, 255, 255, .7);
  font-size: 14px;
  font-weight: 700;
  border-radius: 6px;
  padding: 12px 28px;
  transition: all .2s;
}

.btn-strip-outline:hover {
  background: rgba(255, 255, 255, .15);
  border-color: #fff;
  color: #fff;
}

/* ════════════════════════════════════════
   FOOTER
════════════════════════════════════════ */
.site-footer {
  background: var(--gold);
}

.site-footer .container-xl {
  max-width: 1300px;
  padding-inline: 5%;
}

.f-logo-icon {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #fff;
  border: 3px solid rgba(255, 255, 255, .8);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  font-weight: 800;
  color: var(--red);
  box-shadow: 0 3px 14px rgba(0, 0, 0, .15);
  flex-shrink: 0;
}

.f-logo-n1 {
  font-size: 16px;
  font-weight: 800;
  color: var(--dark);
  line-height: 1.1;
}

.f-logo-n2 {
  font-size: 11px;
  color: var(--dark);
  opacity: .7;
}

.f-brand-desc {
  font-size: 12.5px;
  color: var(--dark);
  line-height: 1.7;
  opacity: .85;
}
.f-social-btn {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: rgb(106 105 105 / 18%);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    color: var(--dark);
    text-decoration: none;
    transition: background .2s, transform .2s;
}

.f-social-btn:hover {
  background: rgba(255, 255, 255, .6);
  transform: scale(1.12);
}

.f-col-title {
  font-size: 13px;
  font-weight: 800;
  color: var(--dark);
  text-transform: uppercase;
  letter-spacing: .5px;
  margin-bottom: 16px;
}

.f-links {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.f-links a {
  font-size: 13px;
  color: rgba(0, 0, 0, .7);
  text-decoration: none;
  transition: color .2s;
}

.f-links a:hover {
  color: var(--dark);
}

.f-addr {
  font-size: 13px;
  color: rgba(0, 0, 0, .75);
  line-height: 1.9;
  font-style: normal;
}

.f-addr strong {
  color: var(--dark);
}

.f-search-box {
  border: 1.5px solid rgba(0, 0, 0, .2);
  border-radius: 26px;
  overflow: hidden;
  background: #ffffff9e;
}

.f-search-input {
  flex: 1;
  border: none;
  outline: none;
  padding: 10px 14px;
  font-size: 13px;
  font-family: 'Poppins', sans-serif;
  background: transparent;
}

.f-search-btn {
  background: transparent;
  color: #9b9393;
  border: none;
  cursor: pointer;
  padding: 0 14px;
  font-size: 14px;
  transition: background .2s;
}

.f-search-btn:hover {
  background: var(--red);
}

.f-contact {
  font-size: 13px;
  color: rgba(0, 0, 0, .75);
  line-height: 2;
}
p.f-contact i {
    color: #1E2939;
}
.f-contact strong {
  color: var(--dark);
}

.footer-bottom {
  border-top: 1px solid rgba(0, 0, 0, .15);
  padding: 14px 0;
}

.footer-bottom p {
  font-size: 12px;
  color: rgba(0, 0, 0, .6);
}
.footer-bottom p a{
  text-decoration: none;
  color: var(--red);
}

/* ════════════════════════════════════════
   SCROLL TO TOP
════════════════════════════════════════ */
#stt {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 900;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--red);
  color: #fff;
  border: none;
  cursor: pointer;
  font-size: 16px;
  opacity: 0;
  pointer-events: none;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity .3s, transform .2s;
  box-shadow: 0 4px 18px rgba(0, 0, 0, .25);
}

#stt.show {
  opacity: 1;
  pointer-events: all;
}

#stt:hover {
  transform: translateY(-3px);
}

/* ════════════════════════════════════════
   VIDEO MODAL
════════════════════════════════════════ */
#videoModal .modal-content {
  border-radius: 14px;
  overflow: hidden;
}

#videoModal .modal-header {
  background: #000;
}

#videoModal .modal-body {
  background: #000;
}

#videoModal video {
  width: 100%;
  height: 100%;
  background: #000;
}

/* ════════════════════════════════════════
   REVEAL ANIMATIONS
════════════════════════════════════════ */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .7s ease, transform .7s ease;
}

.reveal-l {
  opacity: 0;
  transform: translateX(-30px);
  transition: opacity .7s ease, transform .7s ease;
}

.reveal-r {
  opacity: 0;
  transform: translateX(30px);
  transition: opacity .7s ease, transform .7s ease;
}

.reveal.up,
.reveal-l.up,
.reveal-r.up {
  opacity: 1;
  transform: none;
}

/* ════════════════════════════════════════
   RESPONSIVE OVERRIDES
════════════════════════════════════════ */
@media (max-width: 991.98px) {
  .navbar .nav-link {
    padding: 12px 16px !important;
    border-bottom: 1px solid #f0f0f0;
    border-radius: 0;
  }

  .dropdown-menu-custom {
    box-shadow: none !important;
    border: none !important;
    padding-left: 12px;
    border-radius: 0 !important;
    animation: none;
  }

  .hero-card {
    padding: 24px 20px;
  }

  .hero-text {
    padding-left: 0 !important;
  }
}

@media (max-width: 767.98px) {
  .clients-label {
    display: none !important;
  }

  .hero-card::after {
    display: none;
  }

  .safety-grid .col-lg-6:last-child {
    order: -1;
  }
}

@media (max-width: 575.98px) {
  .topbar {
    font-size: 11px;
  }

  .hero-title {
    font-size: 28px;
  }

  .hs-item strong {
    font-size: 22px;
  }
}