*{margin:0;padding:0;box-sizing:border-box}
body{
  font-family:'Segoe UI',sans-serif;
  color:#222;
  overflow-x:hidden;
  background:#fff;
}
a{text-decoration:none}

:root{
  --fire:#e62e00;
  --orange:#ff6a00;
  --dark:#090b10;
  --yellow:#ffc400;
  --red:#b30000;
}

.topbar{
  background:linear-gradient(90deg,#070707,#3b0500,#070707);
  color:#fff;
  padding:9px 0;
  font-size:14px;
}
.topbar i{color:var(--yellow);margin-right:6px}

.navbar{
  background:rgba(255,255,255,.96);
  backdrop-filter:blur(10px);
  box-shadow:0 10px 35px rgba(0,0,0,.12);
}
.navbar-brand{
  font-size:31px;
  font-weight:950;
  color:var(--fire)!important;
  text-transform:uppercase;
}
.navbar-brand i{
  color:var(--orange);
  text-shadow:0 0 18px rgba(255,106,0,.8);
}
.navbar-brand span{color:#111}
.nav-link{
  font-weight:900;
  color:#111!important;
  margin:0 8px;
  position:relative;
}
.nav-link:after{
  content:"";
  position:absolute;
  left:8px;
  bottom:3px;
  width:0;
  height:3px;
  background:linear-gradient(90deg,var(--fire),var(--yellow));
  border-radius:10px;
  transition:.35s;
}
.nav-link:hover:after{width:70%}
.nav-link:hover{color:var(--fire)!important}

.btn-fire{
  background:linear-gradient(45deg,#b30000,#ff3b00,#ff9900);
  color:#fff;
  border:0;
  padding:14px 32px;
  border-radius:50px;
  font-weight:950;
  box-shadow:0 14px 35px rgba(230,46,0,.45);
  transition:.3s;
}
.btn-fire:hover{
  color:#fff;
  transform:translateY(-4px);
  box-shadow:0 20px 45px rgba(230,46,0,.65);
}
.btn-white{
  background:#fff;
  color:#111;
  padding:14px 32px;
  border-radius:50px;
  font-weight:950;
  margin-left:10px;
}
.btn-white:hover{background:var(--yellow);color:#111}

.hero{
  height:92vh;
  position:relative;
  overflow:hidden;
}
.hero:after{
  content:"";
  position:absolute;
  inset:0;
  background:
    radial-gradient(circle at 80% 20%,rgba(255,106,0,.28),transparent 30%),
    radial-gradient(circle at 10% 90%,rgba(255,196,0,.18),transparent 30%);
  pointer-events:none;
  z-index:2;
}
.slide{
  position:absolute;
  inset:0;
  background-size:cover;
  background-position:center;
  opacity:0;
  visibility:hidden;
  transition:1.2s;
  display:flex;
  align-items:center;
  transform:scale(1.05);
}
.slide:before{
  content:"";
  position:absolute;
  inset:0;
  background:
    linear-gradient(90deg,rgba(0,0,0,.92),rgba(71,5,0,.65),rgba(0,0,0,.25)),
    repeating-linear-gradient(45deg,rgba(255,196,0,.08) 0 10px,transparent 10px 24px);
}
.slide.active{
  opacity:1;
  visibility:visible;
  transform:scale(1);
}
.hero-content{
  position:relative;
  z-index:4;
  color:#fff;
}
.hero-content h1{
  font-size:68px;
  line-height:1.05;
  font-weight:1000;
  text-transform:uppercase;
  max-width:900px;
  text-shadow:0 8px 25px rgba(0,0,0,.65);
}
.hero-content h1 span{
  color:var(--yellow);
  text-shadow:0 0 25px rgba(255,196,0,.7);
}
.hero-content p{
  max-width:720px;
  font-size:21px;
  margin:24px 0;
  color:#f3f3f3;
}

.slider-btn{
  position:absolute;
  top:50%;
  transform:translateY(-50%);
  z-index:8;
  width:52px;
  height:52px;
  border:0;
  border-radius:50%;
  background:rgba(255,255,255,.95);
  color:var(--fire);
  font-size:25px;
  box-shadow:0 10px 25px rgba(0,0,0,.25);
}
.prev{left:24px}
.next{right:24px}

.marquee{
  background:
    linear-gradient(90deg,#111,#3b0500,#111);
  color:#fff;
  padding:18px 0;
  overflow:hidden;
  border-top:4px solid var(--yellow);
  border-bottom:4px solid var(--yellow);
}
.marquee-track{
  display:flex;
  gap:50px;
  white-space:nowrap;
  animation:moveText 17s linear infinite;
  font-weight:950;
  font-size:20px;
  text-transform:uppercase;
}
.marquee-track span i{
  color:var(--yellow);
  margin-right:8px;
}
@keyframes moveText{
  from{transform:translateX(100%)}
  to{transform:translateX(-100%)}
}

.section{padding:85px 0}
.section-title{text-align:center;margin-bottom:55px}
.section-title h2{
  font-size:45px;
  font-weight:1000;
  text-transform:uppercase;
}
.section-title h2 span{color:var(--fire)}
.section-title p{color:#666;font-weight:600}

.service-card{
  background:#fff;
  padding:36px 30px;
  border-radius:26px;
  height:100%;
  box-shadow:0 18px 45px rgba(0,0,0,.09);
  transition:.35s;
  position:relative;
  overflow:hidden;
  border:1px solid rgba(230,46,0,.12);
}
.service-card:before{
  content:"";
  position:absolute;
  width:150px;
  height:150px;
  right:-55px;
  top:-55px;
  background:radial-gradient(circle,var(--orange),transparent 65%);
  opacity:.22;
}
.service-card:after{
  content:"FIRE SAFE";
  position:absolute;
  right:-35px;
  bottom:18px;
  font-size:26px;
  font-weight:1000;
  color:rgba(230,46,0,.06);
  transform:rotate(-25deg);
}
.service-card:hover{
  transform:translateY(-14px);
  box-shadow:0 25px 65px rgba(230,46,0,.25);
}
.service-card i{
  width:78px;
  height:78px;
  background:linear-gradient(45deg,#b30000,var(--fire),var(--orange));
  color:#fff;
  border-radius:24px;
  display:flex;
  align-items:center;
  justify-content:center;
  font-size:36px;
  margin-bottom:22px;
  box-shadow:0 15px 30px rgba(230,46,0,.35);
}
.service-card h4{font-weight:950}

.about{
  background:
    linear-gradient(135deg,#f7f8fb 0%,#fff3ec 100%);
}
.about-img{position:relative}
.about-img img{
  border-radius:30px;
  box-shadow:0 25px 60px rgba(0,0,0,.22);
  border:8px solid #fff;
}
.about-badge{
  position:absolute;
  bottom:-28px;
  right:30px;
  background:linear-gradient(45deg,#b30000,var(--fire),var(--orange));
  color:#fff;
  padding:24px 30px;
  border-radius:22px;
  font-weight:1000;
  box-shadow:0 18px 40px rgba(230,46,0,.45);
}
.about h2{
  font-size:45px;
  font-weight:1000;
}
.about ul{list-style:none;padding:0;margin-top:20px}
.about li{
  font-weight:850;
  margin:13px 0;
  background:#fff;
  padding:12px 16px;
  border-radius:14px;
  box-shadow:0 8px 20px rgba(0,0,0,.05);
}
.about li i{color:var(--fire);margin-right:10px}

.counter{
  background:
    linear-gradient(rgba(120,0,0,.88),rgba(230,46,0,.9)),
    url('https://images.unsplash.com/photo-1504917595217-d4dc5ebe6122?auto=format&fit=crop&w=1600&q=80') center/cover fixed;
  color:#fff;
  padding:75px 0;
}
.counter h3{
  font-size:52px;
  font-weight:1000;
  text-shadow:0 8px 20px rgba(0,0,0,.35);
}
.counter p{font-weight:850;text-transform:uppercase}

.product-slider{overflow:hidden}
.product-track{
  display:flex;
  gap:28px;
  animation:productMove 18s linear infinite;
}
.product-track:hover{animation-play-state:paused}
.product-card{
  min-width:330px;
  background:#fff;
  border-radius:26px;
  overflow:hidden;
  box-shadow:0 18px 45px rgba(0,0,0,.10);
  border-bottom:5px solid var(--fire);
}
.product-card img{
  width:100%;
  height:240px;
  object-fit:cover;
  transition:.4s;
}
.product-card:hover img{transform:scale(1.08)}
.product-card .pbox{padding:25px}
.product-card h5{font-weight:1000;color:#111}
@keyframes productMove{
  0%{transform:translateX(0)}
  100%{transform:translateX(-720px)}
}

.brands{
  background:#0b0e15;
  color:#fff;
}
.brands .section-title p{color:#ddd}
.brand-slider{overflow:hidden;padding:10px 0}
.brand-track{
  display:flex;
  gap:25px;
  animation:brandMove 22s linear infinite;
  width:max-content;
}
.brand-track:hover{animation-play-state:paused}
.brand-box{
  min-width:200px;
  height:96px;
  background:linear-gradient(145deg,#fff,#f5f5f5);
  border-radius:20px;
  box-shadow:0 12px 30px rgba(0,0,0,.25);
  display:flex;
  align-items:center;
  justify-content:center;
  font-size:23px;
  font-weight:1000;
  color:#111;
  border-bottom:5px solid var(--yellow);
}
.brand-box:hover{
  background:linear-gradient(45deg,var(--fire),var(--orange));
  color:#fff;
}
@keyframes brandMove{
  0%{transform:translateX(0)}
  100%{transform:translateX(-1125px)}
}

.contact-box{
  background:#fff;
  padding:36px;
  border-radius:26px;
  box-shadow:0 18px 45px rgba(0,0,0,.10);
  border-top:5px solid var(--fire);
}
.contact-box h4{font-weight:1000}
.contact-box i{color:var(--fire);margin-right:8px}
.form-control,.form-select{
  height:56px;
  border-radius:15px;
  border:1px solid #ddd;
}
textarea.form-control{height:140px}

.main-footer{
  background:
    linear-gradient(rgba(8,11,18,.96),rgba(8,11,18,.96)),
    repeating-linear-gradient(45deg,rgba(255,196,0,.08) 0 10px,transparent 10px 25px);
  color:#bbb;
}
.footer-top{padding:70px 0 48px}
.footer-widget h3{
  font-size:34px;
  color:var(--fire);
  font-weight:1000;
  margin-bottom:18px;
}
.footer-widget h3 span{color:#fff}
.footer-widget h4{
  color:#fff;
  font-weight:1000;
  margin-bottom:22px;
}
.footer-widget h4:after{
  content:"";
  display:block;
  width:55px;
  height:4px;
  background:linear-gradient(90deg,var(--fire),var(--yellow));
  margin-top:10px;
  border-radius:20px;
}
.footer-widget a{
  display:block;
  color:#bbb;
  margin:9px 0;
  transition:.3s;
}
.footer-widget a:hover{
  color:var(--yellow);
  padding-left:7px;
}
.footer-widget i{
  color:var(--yellow);
  margin-right:8px;
}
.footer-social{
  display:flex;
  gap:10px;
  margin-top:20px;
}
.footer-social a{
  width:44px;
  height:44px;
  background:#151a25;
  color:#fff;
  border-radius:50%;
  display:flex;
  align-items:center;
  justify-content:center;
  padding:0;
  margin:0;
}
.footer-social a:hover{
  background:linear-gradient(45deg,var(--fire),var(--orange));
  padding:0;
}
.footer-bottom{
  background:#05070d;
  padding:16px 0;
}
.footer-bottom p{margin:0}
.footer-bottom a{color:#bbb}
.footer-bottom a:hover{color:var(--yellow)}

.whatsapp{
  position:fixed;
  right:22px;
  bottom:22px;
  width:64px;
  height:64px;
  background:#25d366;
  color:#fff;
  border-radius:50%;
  display:flex;
  align-items:center;
  justify-content:center;
  font-size:35px;
  z-index:99;
  box-shadow:0 12px 28px rgba(0,0,0,.28);
}
.back-top{
  position:fixed;
  right:27px;
  bottom:98px;
  width:48px;
  height:48px;
  border:0;
  border-radius:50%;
  background:linear-gradient(45deg,var(--fire),var(--orange));
  color:#fff;
  z-index:99;
}

@media(max-width:768px){
  .hero{height:78vh}
  .hero-content h1{font-size:38px}
  .hero-content p{font-size:17px}
  .btn-white{margin-left:0;margin-top:12px}
  .section{padding:58px 0}
  .slider-btn{display:none}
  .footer-bottom{text-align:center}
  .brand-box{min-width:170px}
}