/* BASIC RESET */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: DM Sans,sans-serif;
  overflow-x: hidden;
  background-color: #000;

}
/* -----------------------background-video -------------------------*/
.background-video {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh; 
  object-fit: cover;
  z-index: -2; 
}

.overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background: rgba(0, 0, 0, 0.5);
  z-index: -1; 
}

/* -----------------------header -------------------------*/
.header {
  position: absolute;
  top: 0;
  width: 100%;
  padding: 10px;
  display: flex;
  align-items: center;
  justify-content: space-around;
  z-index: 1;
}

.navbar {
  display: flex;
  align-items: center;
  justify-content: space-around;
}

.logo img {
  width: 50%;
  height: 50%;
  display: block;
}

.nav-links {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 60px; 
  padding: 0;
}

.nav-links a {
  color: #fff;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s, text-underline-offset 0.3s;
}

.nav-links a:hover {
  text-decoration: underline;
  text-underline-offset: 6px;
}
.menu-toggle {
  display: none;
  font-size: 24px;
  color: #fff;
  background: none;
  border: none;
  cursor: pointer;
}

.contact-btn {
  background-color: rgb(249, 17, 36);
  color: #fff;
  padding: 10px 25px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: 600;
  transition: background 0.3s;
}

.contact-btn:hover {
  background:none;
  text-decoration: none !important;
}
/* .header,
.home {
  position: relative;
  z-index: 1;
} */

/* -----------------------home-------------------------*/
.home {
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #fff;
  flex-direction: column;
  position: relative;
}
.home-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  /* gap: 40px; */
}
.home-head{
   margin-top: 130px;
}
.text-box{
   margin-top: 40px;
  font-size: 64px;
}
.home-para{
   margin-top: 40px;
   line-height: 30px;
}

.view-btn {
   margin-top: 40px;
  background-color: rgb(249, 17, 36);
  color: #fff;
  padding: 12px 30px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: 600;
  transition: background 0.3s;
}

.view-btn:hover {
  background-color: #B71C1C;
}

/*--------------- WHATSAPP BUTTON---------------------- */
.whatsapp-btn {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background-color: #25D366;
  border-radius: 50%;
  width: 55px;
  height: 55px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
  z-index: 200;
}

.whatsapp-btn img {
  width: 30px;
}

/* -----------------------product brands -------------------------*/
.product-brand{
  display: flex;
  flex-direction: column;
  background: white;
  padding:20px 80px;
}
.product-head{
  margin-top: 100px;
  color: rgb(249, 17, 36);
  text-align: center;
  font-size: 50px;
}

.product-images {
  width: 100%;
  padding: 40px 0;
  display: flex;
  gap: 20px;
}


/* -----------------------product -------------------------*/
.product{
  display: flex;
  flex-direction: column;
  background: white;
}
.product-para{
  margin-top: 50px;
  text-align: center;
  font-size: 20px;
  color:rgb(100, 107, 107);
   line-height: 30px;
}
 .product-container {
  margin-top:40px ;
            display: flex;
            width: 100%;
            justify-content: space-around;
            flex-wrap: wrap;
            
        }
         .product-container1 {
            margin-top:40px ;
            display: flex;
            width: 100%;
            flex-wrap: wrap;
            gap: 10px;
        }
        .extinguisher-img{
            width: 25%;
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
        }
        .extinguisher-img img {
            max-width: 50%;
            height: auto;
            border-radius: 20px;
        }
        .extinguisher-data{
            width: 25%;
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
        }
         .extinguisher-img1{
            width: 33%;
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
        }
        .extinguisher-img1 img {
            max-width: 80%;
            height: auto;
            border-radius: 20px;
        }
        .extinguisher-data1{
            width: 33%;
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
        }
        .exting-head {
            font-weight: bold;
            font-size: 22px;
            margin: 5px 0;
        }
        .exting-content {
            margin: 5px 0;
            font-size: 18px;
        }

        /* Pair images and data visually */
.product-container {
  grid-auto-flow: dense;
}

.product-container .extinguisher-img {
  grid-column: span 1;
}

.product-container .extinguisher-data {
  grid-column: span 1;
  grid-row: 2; /* Place data in the next row below images */
}

/* Custom styling for mobile to mimic the image layout */
.product-container {
  grid-template-columns: 1fr; /* Single column by default */
  align-items: center;
}

           .fire-safety {
  position: relative;
  display: flex;
  align-items: center;
  background-image: url('../images/fire safety door bg.avif');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  height: 100vh;
  padding: 40px 120px;
  width: 100%;
  background-attachment: fixed;
  background-color: #000;
  overflow: hidden;
}


.fire-safety::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.7); 
  backdrop-filter: blur(6px);     
  z-index: 0;
}

/* Keep your content visible above the overlay */
.fire-safety * {
  position: relative;
  z-index: 1;
}

        
        .fire-left {
            display: flex;
            
        }
        .fire-content{
          display: flex;
          flex-direction: column;
        }
        .fire{
           font-size: 48px;
          color: #ff0000;
           font-weight: 400;
        }
        .doors{
            font-size: 150px;
            /* margin: 10px 0; */
             font-weight: 700;
             color: white;
        }
         .safety-con{
          color:white;
          font-size: 20px;
          line-height: 1.5;
      
         }
         .fire-right {
          display: flex;
         }
        .fire-right img {
            margin-left: 100px;
            max-width: 75%;
            height: 100%;
            border-radius: 10px;
            border-radius: 20px;
        }
        .fire-right1 .label {
            position: absolute;
            background-color: #fff;
            color: #000;
            padding: 15px 45px;
            font-weight: 600;
            font-size: 20px;
            margin-left: 180px;
            margin-top: -30px;
        }
        .double{
          margin-left: -70px;
        }
        .safety-suit{
           margin-top:40px ;
            display: flex;
            width:100%;
            flex-wrap: wrap;
        }
/*------------------------------ Services--------------------------------  */
        .services{
          background: white;
          padding: 20px 80px;
        }
/*------------------------------ Clients--------------------------------  */
       .clients {
  background: white;
  padding: 20px 80px;
  text-align: center;
}

/*------------------------------ membership clients-------------------------------  */
        .membership{
          background: white;
          display: flex;
          padding: 40px 100px;
          width: 100%;
        }
        .membership-left{
          width:40%;
        }
        .membership-right{
          width:60%;
        }
        .membership-para{
  margin-top: 20px;
  font-size: 18px;
   line-height: 30px;
}
.membership-head{
  color: rgb(249, 17, 36);
  font-size: 50px;
}
.membership-img{
            width: 25%;
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
        }
        .membership-img img {
            width: 80%;
            height: auto;
            border-radius: 20px;
        }

/*------------------------------ About us--------------------------------  */
.about{
  background: white;
          display: flex;
          padding: 40px 100px;
          width: 100%;
        gap:100px;
}
.about-img img{
  width: 100%;
  border-radius: 20px;
}
.about-right{
  margin-top: 50px;
}
.years{
  display: flex;
  gap:100px;
  margin-top: 30px;
}
.years-head{
  font-size: 38px;
  font-weight: 700;
}
.years-content{
  margin-top: 20px;
}
/*------------------------------ Gallery--------------------------------  */
.gallery{
  background: white;
  padding: 40px 80px;
}
.gallery-container{
  background: white;
  display: flex;
  padding: 30px;
  gap: 20px;

}
.gallery-container img{
  width:108px;
  height: 108px;
  border-radius: 20px;
}
/*------------------------------ get in touch--------------------------------  */
.get-in {
  position: relative;
  background-image: url('../images/get in touch bg.avif');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  width: 100%;
  background-attachment: fixed;
  text-align: center;
  padding-bottom: 60px;
  overflow: hidden;
}

/* Dark blur overlay */
.get-in::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.7); /* dark overlay */
  backdrop-filter: blur(6px); /* adds the blur effect */
  z-index: 0;
}

/* Keep content above the overlay */
.get-in * {
  position: relative;
  z-index: 1;
}


.get-in-head {
  padding-top: 60px;
  font-size: 64px;
  text-align: center;
  font-weight: bold;
  color: #fff;
}

.get-in-para {
  padding-top: 20px;
  font-size: 18px;
  text-align: center;
  color: #fff;
  line-height: 1.6;
}

/* Center the form container itself */
.form-container {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(8px);
  border-radius: 15px;
  padding: 40px;
  width: 600px;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.3);
  margin: 40px auto 0;
}

.form-container label {
  color: #fff;
  font-size: 14px;
  margin-bottom: 6px;
  display: block;
  text-align: left;
}

.form-container input,
.form-container textarea {
  width: 500px;
  padding: 20px;
  border: none;
  outline: none;
  border-radius: 6px;
  background: #fff;
  margin-bottom: 20px;
  font-size: 16px;
}

.form-container textarea {
  resize: none;
  height: 100px;
}

.form-container button {
  /* width: 100%; */
  padding:10px 30px;
  background: rgb(23,107,224);
  border: none;
  border-radius: 50px;
  color: white;
  font-size: 16px;
  cursor: pointer;
  transition: background 0.3s;
}

.form-container button:hover {
  background: #0056b3;
}

/*------------------------------ map--------------------------------  */
        .maps{
          padding:40px 60px;
          background: white;
          width: 100%;
          height: 450px;
          overflow: hidden;
        }
        .maps iframe {
          width: 100%;
          height: 100%;
          border: none;
        }
/*------------------------------footer--------------------------------  */
        .footer{
          background-color: rgb(183, 28, 28);
          width: 100%;
          display: flex;
          justify-content: space-between;
          padding:60px 80px;
          color: white;
          line-height: 1.5;
          font-size: 20px;
        }
        .foot-left{
          display: flex;
          justify-content: space-between;
          gap: 40px;
        }
        .foot-right{
          padding-top: 50px;
        }

        
/*------------------------------ Responsive Design --------------------------- */

/* Mobile (small) 320px – 375px */
@media (max-width: 375px) {
  .header {
    padding: 10px 15px;
  }

  .logo img {
    width: 60%;
  }

  .navbar {
    position: relative;
  }

  .nav-links {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: rgba(0, 0, 0, 0.9);
    padding: 20px;
    gap: 20px;
    z-index: 100;
  }

  .nav-links.active {
    display: flex;
  }
  .menu-toggle {
    display: block;
  }

  .contact-btn {
    padding: 8px 20px;
    font-size: 14px;
  }
  .home-head{
    font-size: 10px;
  }

  .home-content {
    padding-top: 100px;
  }

  .text-box {
    font-size: 32px;
    margin-top: 20px;
  }

  .home-para {
    font-size: 16px;
    margin-top: 20px;
    padding: 0 20px;
  }

  .view-btn {
    padding: 10px 20px;
    font-size: 14px;
  }

  .whatsapp-btn {
    width: 45px;
    height: 45px;
  }

  .whatsapp-btn img {
    width: 25px;
  }

  .extinguisher-img,
  .extinguisher-data,
  .extinguisher-img1,
  .extinguisher-data1 {
    width: 100%;
  }

  .extinguisher-img img,
  .extinguisher-img1 img {
    max-width: 80%;
  }
.product-head {
    font-size: 32px;
    margin-top: 50px;
  }

  .product-para {
    font-size: 16px;
    padding: 0 20px;
  }

  .product-container {
    display: flex;
    flex-direction: row;
    justify-content: space-around;
    flex-wrap: nowrap;
  }

  .extinguisher-img,
  .extinguisher-data {
    width: 45%;
    margin-bottom: 20px;
  }

  .extinguisher-img img {
    max-width: 100%;
    height: auto; 
    object-fit: contain;
  }

  
  .product-container .extinguisher-img:nth-child(n+3),
  .product-container .extinguisher-data:nth-child(n+7) {
    display: none;
  }
  .extinguisher-data {
    margin-top: -20px; 
  }
  .fire-safety {
    flex-direction: column;
    padding: 20px;
    height: auto;
  }
  .fire {
    font-size: 32px;
  }

  .doors {
    font-size: 64px;
  }

  .safety-con {
    font-size: 16px;
  }

  .fire-right img {
    margin-left: 0;
    max-width: 100%;
    margin-top: 20px;
  }

  .fire-right1 .label {
    margin-left: 0;
    margin-top: 0;
    padding: 10px 20px;
    font-size: 16px;
  }

  .services {
    padding: 20px;
  }

  .clients {
    padding: 20px;
  }

  .coverflow-slider {
    width: 100%;
    height: 200px;
  }

  .coverflow-item {
    width: 200px;
    height: 200px;
  }

  .membership {
    flex-direction: column;
    padding: 20px;
  }

  .membership-left,
  .membership-right {
    width: 100%;
  }

  .membership-head {
    font-size: 32px;
  }

  .membership-para {
    font-size: 16px;
  }

  .membership-img {
    width: 100%;
  }

  .about {
    flex-direction: column;
    padding: 20px;
    gap: 20px;
  }

  .years {
    flex-direction: column;
    gap: 20px;
  }

  .years-head {
    font-size: 28px;
  }

  .gallery {
    padding: 20px;
  }

  .gallery-container {
    flex-direction: column;
    align-items: center;
  }

  .gallery-container img {
    width: 80px;
    height: 80px;
  }

  .get-in-head {
    font-size: 32px;
    padding-top: 30px;
  }

  .get-in-para {
    font-size: 14px;
    padding: 0 20px;
  }

  .form-container {
    width: 90%;
    padding: 20px;
  }

  .form-container input,
  .form-container textarea {
    width: 100%;
    padding: 15px;
    font-size: 14px;
  }

  .maps {
    padding: 20px;
    height: 300px;
  }

  .footer {
    flex-direction: column;
    padding: 20px;
    font-size: 16px;
  }

  .foot-left {
    flex-direction: column;
    gap: 20px;
  }

  .foot-right {
    padding-top: 20px;
  }
}

/* Mobile (medium) 375px – 425px */
@media (min-width: 376px) and (max-width: 425px) {
  .header {
    padding: 10px 20px;
  }

  .logo img {
    width: 70%;
  }

  .nav-links {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: rgba(0, 0, 0, 0.9);
    padding: 20px;
    gap: 20px;
    z-index: 100;
  }

  .nav-links.active {
    display: flex;
  }

  .menu-toggle {
    display: block;
  }

  .text-box {
    font-size: 40px;
  }

  .home-para {
    font-size: 18px;
  }
  .extinguisher-img,
  .extinguisher-data,
  .extinguisher-img1,
  .extinguisher-data1 {
    width: 100%;
  }
  .product-head {
    font-size: 36px;
  }

  .product-para {
    font-size: 18px;
  }

  .product-container {
    display: flex;
    flex-direction: row;
    justify-content: space-around;
    flex-wrap: nowrap;
  }

  .extinguisher-img,
  .extinguisher-data {
    width: 45%;
    margin-bottom: 20px;
  }

  .extinguisher-img img {
    max-width: 100%;
    height: auto;
    object-fit: contain;
  }

  .product-container .extinguisher-img:nth-child(n+3),
  .product-container .extinguisher-data:nth-child(n+7) {
    display: none;
  }

  .extinguisher-data {
    margin-top: -20px;
  }
  .fire-safety {
    padding: 20px;
    height: auto;
  }

  .fire {
    font-size: 36px;
  }

  .doors {
    font-size: 80px;
  }

  .coverflow-slider {
    width: 100%;
    height: 250px;
  }

  .coverflow-item {
    width: 250px;
    height: 250px;
  }

  .form-container {
    width: 80%;
  }
}

/* Mobile (large) 425px – 480px */
@media (min-width: 426px) and (max-width: 480px) {
  .header {
    padding: 10px 25px;
  }

  .logo img {
    width: 60%;
  }

  .nav-links {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: rgba(0, 0, 0, 0.9);
    padding: 20px;
    gap: 20px;
    z-index: 100;
  }

  .nav-links.active {
    display: flex;
  }

  .menu-toggle {
    display: block;
  }

  .text-box {
    font-size: 48px;
  }

  .home-para {
    font-size: 20px;
  }

  .product-head {
    font-size: 40px;
  }

  .extinguisher-img,
  .extinguisher-data {
    width: 50%;
  }

  .extinguisher-img1,
  .extinguisher-data1 {
    width: 50%;
  }
.product-container {
    display: flex;
    flex-direction: row;
    justify-content: space-around;
    flex-wrap: nowrap;
  }

  .extinguisher-img,
  .extinguisher-data {
    width: 45%;
    margin-bottom: 20px;
  }

  .extinguisher-img img {
    max-width: 100%;
    height: auto;
    object-fit: contain;
  }

  .product-container .extinguisher-img:nth-child(n+3),
  .product-container .extinguisher-data:nth-child(n+7) {
    display: none;
  }

  .extinguisher-data {
    margin-top: -20px;
  }
  .fire-safety {
    padding: 30px;
  }

  .fire {
    font-size: 40px;
  }

  .doors {
    font-size: 100px;
  }

  .form-container {
    width: 75%;
  }
}

/* Tablet (portrait) 768px */
@media (min-width: 481px) and (max-width: 768px) {
  .header {
    padding: 10px 30px;
  }

  .logo img {
    width: 50%;
  }

  .nav-links {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: rgba(0, 0, 0, 0.9);
    padding: 20px;
    gap: 20px;
    z-index: 100;
  }

  .nav-links.active {
    display: flex;
  }

  .menu-toggle {
    display: block;
  }

  .text-box {
    font-size: 56px;
  }

  .home-para {
    font-size: 22px;
  }

  .product-head {
    font-size: 44px;
  }

  .extinguisher-img,
  .extinguisher-data {
    width: 50%;
  }

  .extinguisher-img1,
  .extinguisher-data1 {
    width: 50%;
  }
  .product-container {
    display: grid;
    grid-template-columns: repeat(2, 1fr); /* 2 columns for tablet view */
    gap: 10px;
  }

  .extinguisher-img,
  .extinguisher-data {
    width: 100%;
    margin-bottom: 20px;
  }

  .extinguisher-img img {
    max-width: 100%;
    height: 150px;
    object-fit: cover;
  }
  .fire-safety {
    padding: 40px;
  }

  .fire {
    font-size: 44px;
  }

  .doors {
    font-size: 120px;
  }

  .coverflow-slider {
    width: 600px;
    height: 300px;
  }

  .membership {
    padding: 30px;
  }

  .about {
    padding: 30px;
    gap: 50px;
  }

  .gallery {
    padding: 30px;
  }

  .form-container {
    width: 70%;
  }

  .footer {
    padding: 40px;
  }
}