* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Poppins', sans-serif;
  /* overflow-x: hidden;
  scrollbar-width: none; */
}

body {
  background: #ffffff;
  color: #111827;
  width: 100%;
  overflow-x: hidden;
  scrollbar-width: none;
}

.header {
  position: absolute;
  top: 0;
  width: 100%;
  z-index: 10;
  background: transparent;   /* 🔥 IMPORTANT */
  border-bottom: none;
}

.navbar {
  max-width: 1200px;
  margin: auto;
  padding: 1rem 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.navbar-inner{
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 100px;
}
.logo-container{
  display: flex;
  align-items: center;
  gap: 12px;
}

.logo{
  width: 80px;
  border-radius: 10px;
}

.logo-text h3{
  margin: 0;
  font-size: 1.1rem;
  font-weight: 700;
  color: white;
}

.logo-text p{
  margin: 0;
  font-size: 0.85rem;
  /* color: #ff6b6b; */
  color: #ff6b6b;
  font-weight: 500;
}
.navbar-inner-div{
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
}

.con{
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
}
.con img{
    width: 20px;
}
.con p{
  margin: 0;
  color: white;
}

.nav-links {
  display: flex;
  gap: 1.5rem;
  list-style: none;
}

.hero {
  position: relative;
  min-height: 100vh;
  background-image: url("../img/another-bg.jpg"); /* your hero image */
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  user-select: none;
  padding-top: 140px; /* space for navbar */
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  z-index: 1;
}


.hero-content {
  display: flex;
  flex-direction: column;
  position: relative;
  margin-top: 100px;
  margin: auto;
  z-index: 2;
  max-width: 800px;
  text-align: center;
  gap: 20px;
}

.badge {
  display: inline-block;
  background: #fee2e2;
  color: #e63946;
  padding: 0.3rem 0.8rem;
  border-radius: 20px;
  font-size: 0.85rem;
  margin-bottom: 1rem;
  user-select: none;
  width: max-content;
  align-self: center;
}

.hero h1 {
  font-size: 3rem;
  margin-bottom: 1rem;
  user-select: none;
  color: white;
  font-family: 'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;
}

.hero p {
  user-select: none;
}
.p-span{
  color: white;
}
.p-span span{
  position: relative;
  font-size: 1.5rem;
  font-weight: 900;
  color: #e63946;
  transition: all 0.3s ease-in-out;
  background-color: #000;
  padding: 10px;
  border-top-left-radius: 10px;
  border-top-right-radius: 10px;
}

.p-span span::after{
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 100%;
  height: 4px;
  background: linear-gradient(to right, #ff3c3c, #ffb703);
  border-radius: 10px;
}

.hero-buttons{
  margin-top: 50px;
}

.btn {
  background: #e63947;
  color: black;
  padding: 0.5rem 1.3rem;
  border-radius: 6px;
  text-decoration: none;
  margin-right: 0.5rem;
  display: inline-block;
  transition: all 0.3s ease;
}
.btn:hover{
  transform: scale(1.08);
}
.btnog {
  padding: 0.5rem 1rem;
  border-radius: 6px;
  text-decoration: none;
  display: inline-block;
  transition: all 0.3s ease;
}
.btnog:hover{
  transform: scale(1.04);
  opacity: 0.5;
}

.active {
  background: #e63947c2;
  color: #fff;
}

.active2 {
  background: white;
  color: black;
}

.btn-outline {
  background: transparent;
  border: 2px solid #e63946;
  color: #e63946;
}

.services {
  padding: 4rem 2rem;
  display: flex;
  gap: 150px;
  justify-content: center;
  user-select: none;
}

.inner-service1{
  display: flex;
  flex-direction: column;
  max-width: 500px;
  gap: 30px;
}
.inner-service2{
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 20px;
}
.inner-services2-2{
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.services1-p1{
  color: black;
  font-size: 2.5rem;
  font-weight: bold;
}

.fireman{
  width: 500px;
  height: 500px;
  object-fit: cover;
}

.services h2 {
  margin-bottom: 2rem;
}

.services-grid {
  max-width: 900px;
  margin: auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
  gap: 1.2rem;
}

.some-desc-p1{
  text-align: center;
  margin-bottom: 10px;
}
.some-desc-p{
  max-width: 300px;
  font-size: 0.8rem;
}
.link-more {
  color: black;
  text-decoration: none;
  border-radius: 20px;
  padding: 5px 20px ;
  width: max-content;
  border: 1px solid red;
  transition: all 0.3s ease;
  align-self: flex-end;
  font-size: 1.3rem;
}
.link-more:hover{
  transform: translateY(-5px);
}

/* why us */

.why-us {
  background-color: rgb(239, 74, 74);
  display: flex;
  align-items: center;
  gap: 50px;
  padding: 50px 100px;
  position: relative;
  user-select: none;
}

.why-us-div1{
  max-width: 600px;
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.why-us-title{
  color: black;
  font-size: 3rem;
  font-weight: bold;
}

.why-us-1{
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 10px;
}
.why-us-11{
  display: flex;
  gap: 20px;
}

.one{
  padding: 5px 15px;
  border-radius: 50%;
  background-color: #fee2e2;
  color: red;
}
.title-inner{
  font-weight: bold;
  color: white;
}
.why-us-p{
  color: white;
}

.why-us-div-okay{
  display: flex;
  flex-direction: column;
  gap: 40px;
  width: 100%;
}

.why-us-div-2 {
  position: relative;
  width: fit-content;
}

/* IMAGE */
.ftruck {
  width: 800px;
  display: block;
}

/* DARK OVERLAY */
.why-us-div-2::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.55);
  z-index: 1;
}

/* TEXT OVER IMAGE */
.overlay-text {
  position: absolute;
  inset: 0;
  z-index: 2;
  color: white;

  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;

  text-align: center;
  padding: 2rem;
  gap: 12px;
}

/* OPTIONAL STYLING */
.overlay-text .title {
  font-size: 1.8rem;
  font-weight: 600;
}

.overlay-text .phone {
  font-weight: bold;
  font-size: 1.2rem;
}

.ctaaa {
  margin-top: 10px;
  padding: 8px 20px;
  border: 2px solid white;
  cursor: pointer;
  transition: 0.3s;
  text-decoration: none;
  color: white;
}

.ctaaa:hover {
  background: white;
  color: black;
}

/*  */

.footer-contact {
  background: linear-gradient(135deg, #e63946, #b91c1c);
  color: white;
  padding: 4rem 2rem;
}

.footer-contact-inner {
  max-width: 1200px;
  margin: auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 40px;
  flex-wrap: wrap;
}

.footer-left {
  flex: 1;
}

.footer-left h2 {
  font-size: 2.2rem;
  margin-bottom: 10px;
}

.footer-left p {
  max-width: 500px;
  line-height: 1.6;
}

.footer-right {
  flex: 1;
}

.footer-right p {
  margin-bottom: 8px;
}

.footer-right a {
  color: white;
  text-decoration: underline;
}

.footer-buttons {
  margin-top: 15px;
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
}

.footer-btn {
  padding: 10px 22px;
  border-radius: 6px;
  font-weight: 500;
  text-decoration: none;
  transition: 0.3s;
}

.footer-btn.white {
  background: white;
  color: #e63946;
}

.footer-btn.white:hover {
  background: #fee2e2;
}

.footer-btn.outline {
  border: 2px solid white;
  color: white;
}

.footer-btn.outline:hover {
  background: white;
  color: #e63946;
}

/*  */

.fire-footer {
  background: #000;
  color: #fff;
  padding: 60px 40px 30px;
  font-family: 'Poppins', sans-serif;
}

/* TOP SECTION */
.fire-footer-top {
  max-width: 1400px;
  margin: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
}

/* BRAND */
.footer-brand {
  display: flex;
  align-items: center;
  gap: 15px;
}

.footer-brand img {
  width: 55px;
}

.footer-brand h3 {
  line-height: 1.1;
  font-weight: 600;
}

/* INFO BLOCKS */
.footer-info {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  max-width: 260px;
}

.footer-info .icon {
  font-size: 1.2rem;
  color: #e11d2e;
}

.footer-info p {
  font-size: 0.95rem;
  line-height: 1.6;
}

/* CTA BUTTON */
.footer-cta a {
  background: #e11d2e;
  color: white;
  padding: 14px 28px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: 500;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: 0.3s;
}

.footer-cta a:hover {
  background: #ff2a3d;
}

/* DIVIDER */
.fire-footer hr {
  border: none;
  border-top: 1px solid rgba(255,255,255,0.15);
  margin: 40px 0 25px;
}

/* BOTTOM */
.fire-footer-bottom {
  max-width: 1400px;
  margin: auto;
  text-align: center;
}

.footer-links {
  list-style: none;
  display: flex;
  justify-content: center;
  gap: 30px;
  flex-wrap: wrap;
  padding: 0;
  margin-bottom: 20px;
}

.footer-links a {
  color: white;
  text-decoration: none;
  font-weight: 500;
}

.footer-links a.red {
  color: #e11d2e;
}

.footer-links a:hover {
  text-decoration: underline;
}

copyright {
  font-size: 0.9rem;
  opacity: 0.7;
}

/* FOOTER */
.footer {
  border-top: 1px solid #e5e7eb;
  text-align: center;
  padding: 1.5rem;
  color: #6b7280;
  font-size: 0.9rem;
}

.animate {
  transform: scale(0.8);
  opacity: 0;
  transition: transform 0.6s ease, opacity 0.6s ease;
}

.animate.scrollAnimate {
  transform: scale(1);
  opacity: 1;
}

/* clients */
.clients{
  background-color: wheat;
  display: flex;
  flex-direction: column;
  gap: 50px;
  padding: 50px 100px;
  position: relative;
  user-select: none;
}

.clients-div{
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 50px;
}
.clients-div-inner1{
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 30px;
}
.clients-div-inner1-p1{
  color: red;
  font-size: 2.5rem;
  font-weight: bold;
}
.clients-div-inner1-p2{
  color: black;
  font-size: 1.2rem;
  font-weight: bold;
}

.clients-div-inner2{
  max-width: 600px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 30px;
  border: 1px solid black;
  padding: 20px;
}

.clients-div-inner2-p1{
  color: red;
  font-size: 1.2rem;
  font-weight: bold;
}
.clients-div-inner2-p2{
  color: black;
}
.clients-div-inner2-p3{
  color: black;
  font-weight: bold;
}

.client-div2{
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin-top: 100px;
}

/*  */
.clients-section {
  padding: 80px 20px;
  background: #ffffff;
  text-align: center;
  overflow: hidden;
  border-radius: 10px;
}

.clients-section h2 {
  font-size: 2.6rem;
  font-weight: 600;
  margin-bottom: 10px;
  color: red;
  font-family: 'Cinzel', serif;
  font-weight: 700;
}

.clients-sub {
  color: #6b7280;
  max-width: 700px;
  margin: 0 auto 50px;
  font-family: 'Cinzel', serif;
}

/* ROW */
.logo-row {
  overflow: hidden;
  width: 100%;
  margin-bottom: 35px;
  margin-top: 100px;
}

.logo-track {
  display: flex;
  gap: 30px;
  width: max-content;
  animation: scroll-left 35s linear infinite;
}

.logo-row.reverse .logo-track {
  animation: scroll-right 40s linear infinite;
}

/* CLIENT BOX */
.client-box {
  padding: 14px 28px;
  border-radius: 999px;
  background: #f9fafb;
  border: 1px solid #e5e7eb;
  font-size: 0.95rem;
  font-weight: 500;
  color: #374151;
  white-space: nowrap;
  transition: all 0.3s ease;
}

.client-box:hover {
  background: #111827;
  color: #ffffff;
  transform: translateY(-2px);
}

.client-img{
  width: 130px;
  height: 130px;
  object-fit: contain;
}

/* ANIMATIONS */
@keyframes scroll-left {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

@keyframes scroll-right {
  from {
    transform: translateX(-50%);
  }
  to {
    transform: translateX(0);
  }
}

/* MOBILE OPTIMIZATION */
@media (max-width: 768px) {
  .client-box {
    font-size: 0.85rem;
    padding: 12px 20px;
  }
}



/* ============================= */
/* 📱 MOBILE OPTIMIZATION */
/* ============================= */

@media (max-width: 900px) {

  /* GLOBAL */
  body {
    overflow-x: hidden;
  }

  h1 {
    font-size: 2.1rem;
    line-height: 1.2;
  }

  h2 {
    font-size: 1.8rem;
  }

  p {
    font-size: 0.95rem;
  }

  /* ================= HEADER ================= */

  /* HEADER */
  .navbar {
    padding: 1rem 3rem;
    width: 100%;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  }

  .navbar-inner {
    /* flex-direction: column;
    align-items: center;
    gap: 12px; */
    width: fit-content
  }

  .logo {
    width: 65px;
  }
  .logo-container{
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  }

  .logo-text h3{
    margin: 0;
    font-size: 1.1rem;
    font-weight: 700;
    color: white;
  }

  .logo-text p{
    margin: 0;
    font-size: 0.85rem;
    color: #ff6b6b;
    font-weight: 500;
  }
  .navbar-inner-div {
    /* width: 100%;
    align-items: center;
    text-align: center;
    gap: 8px; */
    display: none;
  }

  /* CONTACT ROW */
  .con {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;

    max-width: 100%;
    flex-wrap: wrap;          
    word-break: break-word;     
    overflow-wrap: anywhere;
  }

  .con img {
    width: 18px;
    flex-shrink: 0;
  }

  .con p {
    font-size: 0.9rem;
    max-width: 100%;
    white-space: normal;       
  }

  .nav-links {
    display: grid;
    grid-template-columns: repeat(2, minmax(auto, 1fr));
    gap: 5px;
    width: fit-content;
  }
  .nav-links li {
  text-align: center;
  width: fit-content;
  }
  .nav-links a {
  text-align: center;
  width: fit-content;
  }

  .btnog {
    font-size: 0.9rem;
    padding: 6px 14px;
  }

  /* ================= HERO ================= */

  .hero {
    min-height: 100vh;
    padding: 160px 0px;
  }

  .hero-content {
    margin-top: 100px;
    padding: 0 10px;
  }

  .hero h1 {
    font-size: 2.2rem;
  }

  .badge {
    font-size: 0.75rem;
  }

  .hero-buttons {
    margin-top: 25px;
    display: flex;
    flex-direction: column;
    gap: 15px;
  }

  .btn,
  .btn-outline {
    width: 100%;
    text-align: center;
  }

  .p-span span{
  position: relative;
  font-size: 1rem;
  font-weight: 900;
  color: #e63946;
  transition: all 0.3s ease-in-out;
  background-color: #000;
  padding: 0px 5px;
  border-top-left-radius: 10px;
  border-top-right-radius: 10px;
}

.p-span span::after{
  content: "";
  position: absolute;
  left: 0;
  bottom: -3px;
  width: 100%;
  height: 2px;
  background: linear-gradient(to right, #ff3c3c, #ffb703);
  border-radius: 10px;
}

  /* ================= SERVICES ================= */

  .services {
    flex-direction: column;
    gap: 50px;
    padding: 3rem 1.2rem;
  }

  .fireman {
    width: 100%;
    height: auto;
  }

  .services1-p1 {
    font-size: 2rem;
    text-align: center;
  }

  .services-grid {
    grid-template-columns: 1fr;
  }

  .services-grid-inner {
    height: auto;
    gap: 25px;
    padding: 1rem;
  }

  .services-grid-inner img {
    width: 100%;
    max-width: 280px;
  }

  .service-card {
    position: static;
    padding: 15px;
    text-align: center;
  }

  .link-more {
    align-self: center;
    font-size: 1.1rem;
  }

  /* ================= WHY US ================= */

  .why-us {
    flex-direction: column;
    padding: 3rem 1.2rem;
    gap: 40px;
  }

  .why-us-title {
    font-size: 2.2rem;
    text-align: center;
  }

  .why-us-div1 {
    max-width: 100%;
    text-align: center;
  }

  .why-us-11 {
    justify-content: center;
  }

  .why-us-div-2 {
    width: 100%;
  }

  .ftruck {
    width: 100%;
    height: auto;
  }

  .overlay-text {
    padding: 0rem;
  }

  .overlay-text .title {
    font-size: 1.1rem;
  }

  .overlay-text .phone {
    font-size: 1.1rem;
  }

  /* ================= FOOTER CONTACT ================= */

  .footer-contact {
    padding: 3rem 1.2rem;
    text-align: center;
  }

  .footer-contact-inner {
    flex-direction: column;
    gap: 30px;
  }

  .footer-left h2 {
    font-size: 2rem;
  }

  .footer-buttons {
    justify-content: center;
  }

  .footer-btn {
    width: 100%;
    text-align: center;
  }

  /* ================= MAIN FOOTER ================= */

  .fire-footer {
    padding: 3rem 1.2rem 2rem;
  }

  .fire-footer-top {
    flex-direction: column;
    text-align: center;
    gap: 30px;
  }

  .footer-brand {
    justify-content: center;
  }

  .footer-info {
    justify-content: center;
    text-align: center;
  }

  .footer-cta a {
    width: 100%;
    justify-content: center;
  }

  .footer-links {
    gap: 15px;
    font-size: 0.9rem;
  }

  /* ================= ANIMATION ================= */

  .animate {
    transform: translateY(40px);
    opacity: 0;
  }

  .animate.scrollAnimate {
    transform: translateY(0);
    opacity: 1;
  }


  .clients {
    padding: 40px 16px;
    gap: 40px;
  }

  /* TOP CONTENT */
  .clients-div {
    flex-direction: column;
    gap: 30px;
    text-align: center;
  }

  .clients-div-inner1-p1 {
    font-size: 2rem;
  }

  .clients-div-inner1-p2 {
    font-size: 1rem;
  }

  .clients-div-inner2 {
    max-width: 100%;
    padding: 16px;
    gap: 20px;
  }

  .clients-div-inner2-p1 {
    font-size: 1.05rem;
  }

  .clients-div-inner2-p2 {
    font-size: 0.95rem;
    line-height: 1.6;
  }

  .clients-div-inner2-p3 {
    font-size: 0.95rem;
  }

  .client-div2 {
    margin-top: 60px;
  }

  /* SLIDER SECTION */
  .clients-section {
    padding: 50px 12px;
    border-radius: 0;
  }

  .clients-section h2 {
    font-size: 2rem;
  }

  .clients-sub {
    font-size: 0.95rem;
    margin-bottom: 35px;
  }

  /* LOGO ROW */
  .logo-row {
    margin-bottom: 25px;
  }

  .logo-track {
    gap: 16px;
  }

  /* CLIENT NAME BOX */
  .client-box {
    padding: 10px 18px;
    font-size: 0.8rem;
  }
}

/* ================= SMALL PHONES ================= */

@media (max-width: 480px) {
    body {
    overflow-x: hidden;
  }

  h1 {
    font-size: 1.9rem !important;
  }
  .ftruck {
    width: 100%;
    height: auto;
  }
  .hero h1 {
    font-size: 2rem;
  }

  .services1-p1 {
    font-size: 1.7rem;
  }

  .why-us-title {
    font-size: 1.9rem;
  }

  .overlay-text .title {
    font-size: 1.1rem;
  }
}
