/* =========================
   RESET
========================= */
body{
  font-family:'Poppins', sans-serif;
}
*{
  margin:0;
  padding:0;
  box-sizing:border-box;
}

html{
  scroll-behavior:smooth;
}

body{
  font-family:'Poppins', sans-serif;
  background:#050505;
  color:#fff;
  overflow-x:hidden;
}

a{
  text-decoration:none;
}

img{
  max-width:100%;
  display:block;
}

.container{
  width:90%;
  max-width:1400px;
  margin:auto;
}

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

.site-header{
  position:fixed;
  top:0;
  left:0;
  width:100%;

  z-index:9999;

  background:#ffffff;

  padding:18px 0;

  box-shadow:
  0 5px 30px rgba(0,0,0,0.08);
}

.nav-wrapper{
  display:flex;
  align-items:center;
  justify-content:space-between;
}

.logo img{
  height:30px;
}

.main-nav{
  display:flex;
  align-items:center;
  gap:42px;
}

.main-nav a{
  color:#2d3142;

  font-size:16px;
  font-weight:600;

  transition:0.3s;

  position:relative;
}

.main-nav a::after{
  content:"";

  position:absolute;
  left:0;
  bottom:-8px;

  width:0%;
  height:2px;

  background:#ff0000;

  transition:0.3s;
}

.main-nav a:hover{
  color:#ff0000;
}

.main-nav a:hover::after{
  width:100%;
}

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

.hero{
  position:relative;
  
  min-height:100vh;

  overflow:hidden;

  display:flex;
  align-items:center;

  padding-top:20px;
}

/* VIDEO */

.hero-video{
  position:absolute;
  top:0;
  left:0;

  width:100%;
  height:100%;

  object-fit:cover;
}

/* OVERLAY */

.hero-overlay{
  position:absolute;
  top:0;
  left:0;

  width:100%;
  height:100%;

  background:
  linear-gradient(
      90deg,
      rgba(7,23,57,.70) 0%,
      rgba(225,6,0,.45) 100%
  );

  z-index:1;
}

/* RED GLOW */

.hero::before{
  content:"";

  position:absolute;

  bottom:-150px;
  left:50%;

  transform:translateX(-50%);

  width:900px;
  height:300px;

  background:rgba(255,0,0,0.18);

  filter:blur(120px);

  border-radius:50%;

  z-index:1;
}

/* CONTENT */

.hero-content{
  position:relative;

  z-index:3;

  max-width:760px;

  margin-left:40px;
}

/* BADGE */

.hero-badge{
  display:inline-flex;
  align-items:center;

  padding:12px 28px;

  border-radius:60px;

  background:rgba(0,0,0,0.45);

  border:1px solid rgba(255,255,255,0.12);

  backdrop-filter:blur(12px);

  font-size:12px;
  font-weight:400;

  letter-spacing:4px;

  margin-bottom:35px;

  text-transform:none;
}

/* TITLE */

.hero-content h1{
  font-size:58px;

  line-height:0.95;

  font-weight:700;

  margin-bottom:30px;

  text-shadow:
  0 0 20px rgba(255,0,0,0.22),
  0 0 60px rgba(255,0,0,0.12);
}

.hero-content h1 span{
  color:#ff0000;
}

/* PARAGRAPH */

.hero-content p{
  font-size:18px;

  line-height:1.8;

  color:#d6d6d6;

  max-width:650px;

  margin-bottom:20px;
}

/* BUTTONS */

.hero-buttons{
  display:flex;
  align-items:center;
  gap:22px;

  flex-wrap:wrap;

  margin-top:40px;
}

.hero-btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;

  padding:18px 42px;

  border-radius:60px;

  font-size:14px;
  font-weight:600;

  transition:0.35s ease;

  text-transform:none;

  letter-spacing:1px;
}

/* PRIMARY BUTTON */

.primary-btn{
  background:#ffffff;

  color:#d40000;

  box-shadow:
  0 15px 45px rgba(255,255,255,0.16);
}

.primary-btn:hover{
  background:#ff0000;

  color:#fff;

  transform:translateY(-5px);
}

/* SECONDARY BUTTON */

.secondary-btn{
  background:rgba(0,0,0,0.45);

  color:#fff;

  border:1px solid rgba(255,255,255,0.12);

  backdrop-filter:blur(10px);
}

.secondary-btn:hover{
  background:rgba(255,0,0,0.18);

  transform:translateY(-5px);
}

/* =========================
   STATS SECTION
========================= */

.stats-section{
  position:relative;

  margin-top:60px;

  margin-bottom:40px;

  z-index:10;
}

.stats-wrapper{
  display:grid;
  padding-left:0;
  margin-left:0;

  grid-template-columns:repeat(4,1fr);

  overflow:hidden;

  border-radius:50px;

  background:
  linear-gradient(
    135deg,
    rgba(20,20,20,0.92),
    rgba(40,0,0,0.82)
  );

  backdrop-filter:blur(18px);

  border:1px solid rgba(255,255,255,0.08);

  box-shadow:
  0 20px 80px rgba(0,0,0,0.45);
}

.stat-box{
  padding:25px;

  border-right:1px solid rgba(255,255,255,0.08);
}

.stat-box:last-child{
  border-right:none;
}

.stat-box p{
  font-size:11px;

  color:#d2d2d2;

  letter-spacing:1px;

  line-height:1.6;

  text-transform:uppercase;
}
.stat-box h2{
  font-size:28px;

  font-weight:600;

  margin-bottom:12px;

  line-height:1.1;
}

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

.site-footer{
  background:#0b0b0b;

  padding:45px 0;

  border-top:1px solid rgba(255,255,255,0.08);
}

.footer-content{
  display:flex;
  align-items:center;
  justify-content:space-between;

  gap:20px;

  flex-wrap:wrap;
}

.footer-left img{
  height:55px;
}

.footer-right{
  text-align:right;
}

.footer-right p{
  color:#aaa;

  font-size:14px;

  margin-bottom:8px;
}

.developer{
  color:#ff0000 !important;

  font-weight:700;
}

/* =========================
   RESPONSIVE
========================= */

@media(max-width:1200px){

  .hero-content h1{
    font-size:70px;
  }

  .stats-wrapper{
    grid-template-columns:repeat(2,1fr);
    padding-left:0;
    margin-left:0;
  }
  
  .main-nav{
  display:none;
}

.menu-toggle{
  display:flex;
}

.nav-right .distributor-btn{
  display:none;
}

}

@media(max-width:992px){

  .main-nav{
    gap:24px;
  }

  .hero-content h1{
    font-size:58px;
  }

  .hero-content p{
    font-size:18px;
  }

}

@media(max-width:768px){

  .site-header{
    padding:15px 0;
  }

  .logo img{
    height:48px;
  }

  .main-nav{
    display:none;
  }

.hero{
  min-height:100vh;
  height:auto;
}

.hero-content{
  margin-left:0;
  padding-top:40px;
}

  .hero-content h1{
    font-size:48px;

    line-height:1;
  }

  .hero-content p{
    font-size:16px;
  }

.hero-buttons{
  flex-direction:row;
  flex-wrap:wrap;
  align-items:center;
}

.hero-btn{
  width:auto;
  max-width:none;
}
  .stats-section{
  padding-bottom:80px;
}

  .stats-wrapper{
    grid-template-columns:repeat(2,1fr);
    padding-left:0;
    margin-left:0;
  }

  .stat-box{
    border-right:none;

    border-bottom:1px solid rgba(255,255,255,0.08);
  }

  .footer-content{
    flex-direction:column;

    text-align:center;
  }

  .footer-right{
    text-align:center;
  }

}

@media(max-width:480px){

  .hero-content h1{
  font-family:'Poppins', sans-serif;
  font-weight:900;
  font-size:40px;
}

  .hero-badge{
    font-size:11px;

    letter-spacing:2px;
  }

  .hero-content p{
    font-size:15px;
  }

  .stat-box{
    padding:35px;
  }

  .stat-box h2{
    font-size:48px;
  }

}
.text-btn{
  background:transparent;

  border:none;

  padding:0;

  height:auto;

  color:#fff;

  font-size:15px;
  font-weight:700;

  backdrop-filter:none;
}

.text-btn:hover{
  color:#ff0000;

  transform:none;
}

.distributor-btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;

  height:48px;

  padding:0 28px;

  border-radius:999px;

  background:
  linear-gradient(
    135deg,
    #ff0000 0%,
    #c40000 45%,
    #1b0000 100%
  );

  color:#fff;

  font-size:15px;
  font-weight:700;

  transition:0.35s ease;

  box-shadow:
  0 10px 30px rgba(255,0,0,0.28);
}

.distributor-btn:hover{
  transform:translateY(-3px);

  box-shadow:
  0 16px 40px rgba(255,0,0,0.35);
}

/* =========================
   MOBILE MENU
========================= */

.nav-right{
  display:flex;
  align-items:center;
  gap:18px;
}

.menu-toggle{
  width:42px;
  height:42px;

  display:none;

  flex-direction:column;
  justify-content:center;
  gap:6px;

  cursor:pointer;
}

.menu-toggle span{
  width:28px;
  height:3px;

  background:#111827;

  border-radius:20px;

  transition:0.3s;
}

/* MOBILE MENU */

.mobile-menu{
  position:fixed;

  top:0;
  right:-100%;

  width:100%;
  height:100vh;

  background:#ffffff;

  z-index:99999;

  padding:30px;

  transition:0.4s ease;

  overflow-y:auto;
}

.mobile-menu.active{
  right:0;
}

.mobile-menu-header{
  display:flex;
  align-items:center;
  justify-content:space-between;

  margin-bottom:50px;
}

.mobile-menu-header img{
  height:42px;
}

.close-menu{
  font-size:38px;

  cursor:pointer;

  color:#111827;
}

.mobile-nav{
  display:flex;
  flex-direction:column;
  gap:32px;
}

.mobile-nav a{
  color:#1f2937;

  font-size:30px;
  font-weight:600;
}

.mobile-distributor-btn{
  margin-top:50px;

  height:58px;

  border-radius:999px;

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

  background:
  linear-gradient(
    135deg,
    #ff0000,
    #700000
  );

  color:#fff;

  font-size:16px;
  font-weight:700;
}

/* =========================
   RESPONSIVE
========================= */

@media(max-width:1100px){

  .main-nav{
    display:none;
  }

  .menu-toggle{
    display:flex;
  }

}

@media(max-width:768px){

  .nav-right{
    gap:12px;
  }

  .distributor-btn{
    height:42px;

    padding:0 18px;

    font-size:13px;
  }

  .mobile-nav a{
    font-size:24px;
  }

}

@media(max-width:480px){

  .distributor-btn{
    display:flex;
  }

  .mobile-menu{
    padding:25px;
  }

}

/* =========================
   HERO WHITE FADE
========================= */

.hero::after{
  content:"";

  position:absolute;

  left:0;
  bottom:0;

  width:100%;
  height:240px;

  background:
  linear-gradient(
    to bottom,
    rgba(255,255,255,0) 0%,
    rgba(255,255,255,0.95) 100%
  );

  z-index:2;

  pointer-events:none;
}

/* =========================
   CERTIFICATION STRIP
========================= */

.certification-strip{
  position:relative;

  overflow:hidden;

  margin-top:0px;

  background:
  linear-gradient(
    to right,
    #f7f7f7,
    #ffffff,
    #f7f7f7
  );

  padding:34px 0;

  border-top:1px solid rgba(0,0,0,0.05);
  border-bottom:1px solid rgba(0,0,0,0.05);

  z-index:20;
}

/* MOVING TRACK */

.certification-track{
  display:flex;
  align-items:center;

  gap:95px;

  width:max-content;

  animation:certMove 32s linear infinite;
}

/* ITEMS */

.cert-item{
  display:flex;
  align-items:center;

  gap:14px;

  white-space:nowrap;

  transition:0.35s ease;
}

.cert-item i{
  color:#d40000;

  font-size:18px;

  filter:
  drop-shadow(0 0 10px rgba(255,0,0,0.25));
}

.cert-item span{
  color:#8d8d8d;

  font-size:14px;
  font-weight:700;

  letter-spacing:5px;

  text-transform:uppercase;
}

/* HOVER */

.cert-item:hover{
  transform:translateY(-2px);
}

.cert-item:hover span{
  color:#111;
}

.cert-item:hover i{
  color:#ff0000;
}

/* ANIMATION */

@keyframes certMove{

  from{
    transform:translateX(0);
  }

  to{
    transform:translateX(-50%);
  }

}

/* =========================
   ABOUT SECTION
========================= */

.about-section{
  padding:140px 0 120px;

  background:#f8f8f8;

  font-family:'Poppins', sans-serif;
}

.about-grid{
  display:grid;

  grid-template-columns:1.02fr 1fr;

  gap:78px;

  align-items:center;
}

/* =========================
   IMAGE
========================= */

.about-image-wrap{
  position:relative;
}

.about-image-wrap img{
  width:100%;

  border-radius:26px;

  display:block;

  object-fit:cover;

  transition:0.45s ease;

  box-shadow:
  0 15px 40px rgba(0,0,0,0.08),
  0 0 0 rgba(227,6,19,0);
}

.about-image-wrap:hover img{
  transform:translateY(-4px);

  box-shadow:
  0 20px 50px rgba(0,0,0,0.12),
  0 0 45px rgba(227,6,19,0.35),
  0 0 90px rgba(227,6,19,0.18);
}

/* FLOATING CARD */

.about-floating-card{
  position:absolute;

  right:-38px;
  bottom:-38px;

  background:#fff;

  padding:32px 38px;

  border-radius:22px;
  
  transition:0.4s ease;

  box-shadow:
  0 15px 45px rgba(0,0,0,0.08);

  border:1px solid rgba(0,0,0,0.05);

  min-width:255px;
}

.about-floating-card h3{
  font-size:38px;

  line-height:1;

  font-weight:700;

  color:#e30613;

  letter-spacing:-2px;

  margin-bottom:10px;
}

.about-floating-card p{
  color:#6a6f79;

  font-size:14px;

  letter-spacing:1px;

  text-transform:uppercase;
}

/* =========================
   CONTENT
========================= */

.about-content{
  padding-top:10px;
}

.section-label{
  display:block;

  margin-bottom:18px;

  color:#e30613;

  font-size:13px;
  font-weight:600;

  letter-spacing:6px;

  text-transform:uppercase;
}

.about-content h2{
  font-size:38px;

  line-height:1.07;

  font-weight:700;

  letter-spacing:-2px;

  color:#071739;

  margin-bottom:34px;

  max-width:720px;
}

.about-text{
  font-size:15px;

  line-height:1.85;

  color:#566070;

  max-width:760px;

  margin-bottom:42px;
}

/* =========================
   FEATURE CARDS
========================= */

.about-features{
  display:grid;

  grid-template-columns:1fr 1fr;

  gap:22px;

  margin-bottom:36px;
}

.feature-card{
  background:#fff;

  border:1px solid rgba(0,0,0,0.07);

  border-radius:20px;

  padding:34px;

  transition:0.4s ease;

  min-height:180px;

  box-shadow:
  0 10px 30px rgba(0,0,0,0.04),
  0 0 0 rgba(227,6,19,0);
}

.feature-card:hover{
  transform:translateY(-6px);

  box-shadow:
  0 22px 50px rgba(0,0,0,0.08),
  0 0 35px rgba(227,6,19,0.22),
  0 0 70px rgba(227,6,19,0.10);
}

/* ICONS */

.feature-card i{
  color:#e30613;

  font-size:15px;

  margin-bottom:24px;
}

/* TITLES */

.feature-card h4{
  font-size:15px;

  line-height:1.4;

  font-weight:700;

  color:#071739;

  margin-bottom:14px;
}

/* TEXT */

.feature-card p{
  font-size:14px;

  line-height:1.75;

  color:#667080;
}

/* =========================
   LINK
========================= */

.about-link{
  display:inline-flex;

  align-items:center;

  gap:10px;

  color:#e30613;

  font-size:18px;
  font-weight:700;

  transition:0.3s ease;
}

.about-link:hover{
  gap:18px;
}

/* =========================
   RESPONSIVE
========================= */

@media(max-width:1100px){

  .about-grid{
    grid-template-columns:1fr;

    gap:90px;
  }

  .about-content h2{
    font-size:30px;
  }

}

@media(max-width:768px){

  .about-section{
    padding:90px 0;
  }

  .about-content h2{
    font-size:36px;
  }

  .about-text{
    font-size:17px;
  }

  .about-features{
    grid-template-columns:1fr;
  }

  .about-floating-card{
    right:15px;
    bottom:15px;

    padding:22px 24px;

    min-width:auto;
  }

  .about-floating-card h3{
    font-size:38px;
  }

}

/* =========================
   PRODUCTS SECTION
========================= */

.products-section{
  position:relative;

  padding:120px 0;

  background:
  linear-gradient(
    to bottom,
    #f4f4f5,
    #ffffff
  );

  overflow:hidden;
}

/* HEADER */

.products-header{
  display:flex;

  align-items:flex-end;

  justify-content:space-between;

  gap:40px;

  margin-bottom:55px;
}

/* SMALL LABEL */

.products-label{
  display:inline-block;

  color:#e10600;

  font-size:14px;

  font-weight:600;

  letter-spacing:5px;

  text-transform:uppercase;

  margin-bottom:18px;
}

/* TITLE */

.products-title{
  font-size:38px;

  line-height:1.07;

  font-weight:700;

  color:#071739;

  letter-spacing:-2px;

  max-width:720px;
}

/* LINK */

.products-link{
  display:inline-flex;

  align-items:center;

  gap:10px;

  color:#e10600;

  font-size:19px;

  font-weight:400;
}

.products-grid{
  display:grid;

  grid-template-columns:
  repeat(5, 1fr);

  gap:24px;
}

/* CARD */

.product-card{
  position:relative;

  background:#fff;

  border-radius:22px;

  overflow:hidden;

  transition:0.45s ease;

  box-shadow:
  0 10px 30px rgba(0,0,0,0.04);
}

/* HOVER */

.product-card:hover{
  transform:translateY(-8px);

  box-shadow:
  0 25px 55px rgba(0,0,0,0.10);
}

/* IMAGE */

.product-image{
  position:relative;

  height:300px;

  overflow:hidden;
}

.product-image img{
  width:100%;
  height:100%;

  object-fit:cover;

  transition:0.6s ease;
}

/* IMAGE ZOOM */

.product-card:hover img{
  transform:scale(1.08);
}

/* OVERLAY */

.product-overlay{
  position:absolute;

  inset:0;

  display:flex;
  flex-direction:column;
  justify-content:flex-end;

  padding:16px;

 background:
linear-gradient(
  to top,
  rgba(227,6,19,0.72),
  rgba(227,6,19,0.18),
  transparent
);

  opacity:0;

  transform:translateY(30px);

  transition:0.45s ease;
}

/* SHOW DETAILS */

.product-card:hover .product-overlay{
  opacity:1;

  transform:translateY(0);
}

/* TAG */

.product-tag{
  display:inline-flex;

  width:max-content;

  padding:10px 16px;

  border-radius:40px;

  background:rgba(255,255,255,0.12);

  backdrop-filter:blur(10px);

  color:#fff;

  font-size:14px;
  font-weight:600;

  letter-spacing:2px;

  text-transform:uppercase;

  margin-bottom:16px;
}

/* OVERLAY TEXT */

.product-overlay p{
  color:#fff;

  font-size:15px;

  line-height:1.7;

  margin-bottom:22px;
}

/* BUTTON */

.product-btn{
  display:inline-flex;

  align-items:center;
  justify-content:center;

  width:max-content;

  padding:14px 22px;

  border-radius:50px;

  background:#e10600;

  color:#fff;

  font-size:14px;
  font-weight:600;

  transition:0.35s ease;
}

.product-btn:hover{
  background:#ff1f1f;

  transform:translateY(-2px);
}

/* CONTENT */

.product-content{
  padding:28px;
}

.product-content h3{
  font-size:15px;

  font-weight:600;

  color:red;

  margin-bottom:12px;
}

.product-content p{
  font-size:15px;

  line-height:1.7;

  color:#5f6875;
}

/* =========================
   MOBILE
========================= */

@media(max-width:1200px){

  .products-grid{
    grid-template-columns:
    repeat(3,1fr);
  }

}

@media(max-width:768px){

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

  .product-image{
    height:320px;
  }

}

/* =========================
   WHY SECTION
========================= */

.why-section{
  position:relative;

  padding:90px 0;

background:
linear-gradient(
  90deg,
  #ff0000 0%,
  #9d0000 18%,
  #3a0505 40%,
  #120202 100%
);

  overflow:hidden;
}

/* GRID */

.why-grid{
  display:grid;

  grid-template-columns:0.9fr 1.1fr;

  gap:80px;

  align-items:center;
}

/* LEFT SIDE */

.why-label{
  display:inline-block;

  margin-bottom:20px;

  color:#fff;

  font-size:15px;
  font-weight:600;

  letter-spacing:5px;

  text-transform:uppercase;
}

.why-content h2{
  font-size:38px;

  line-height:1.07;

  font-weight:700;

  color:#fff;

  letter-spacing:-2px;

  margin-bottom:28px;
}

.why-content p{
  font-size:15px;

  line-height:1.9;

  color:rgba(255,255,255,0.82);

  margin-bottom:38px;
}

/* BUTTON */

.why-btn{
  display:inline-flex;

  align-items:center;
  justify-content:center;

  padding:18px 30px;

  border-radius:60px;

  background:#e10600;

  color:#fff;

  font-size:15px;
  font-weight:600;

  transition:0.35s ease;

  box-shadow:
  0 12px 30px rgba(225,6,0,0.22);
}

.why-btn:hover{
  transform:translateY(-4px);

  background:#ff1c1c;

  box-shadow:
  0 20px 45px rgba(225,6,0,0.28);
}

/* RIGHT GRID */

.why-cards{
  display:grid;

  grid-template-columns:1fr 1fr;

  gap:24px;
}

/* CARD */

.why-card{
  background:rgba(255,255,255,0.10);

  backdrop-filter:blur(14px);

  padding:28px;

  border-radius:24px;

  transition:0.45s ease;

  border:1px solid rgba(255,255,255,0.12);

  box-shadow:
  0 10px 30px rgba(0,0,0,0.08);
}

/* HOVER */

.why-card:hover{
  transform:translateY(-8px);

  box-shadow:
  0 20px 55px rgba(0,0,0,0.08),
  0 0 45px rgba(225,6,0,0.10);
}

/* ICON */

.why-icon{
  width:48px;
  height:48px;

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

  border-radius:18px;

  margin-bottom:24px;

  background:
  linear-gradient(
    135deg,
    #ff1a1a,
    #b80000
  );

  box-shadow:
  0 15px 35px rgba(225,6,0,0.20);
}

.why-icon i{
  color:#fff;

  font-size:20px;
}

/* TITLE */

.why-card h3{
  font-size:19px;

  line-height:1.35;

  font-weight:600;

  color:#fff;

  margin-bottom:16px;
}

/* TEXT */

.why-card p{
  font-size:14px;

  line-height:1.8;

  color:rgba(255,255,255,0.78);
}

/* =========================
   RESPONSIVE
========================= */

@media(max-width:1100px){

  .why-grid{
    grid-template-columns:1fr;

    gap:70px;
  }

  .why-content h2{
    font-size:36px;
  }

}

@media(max-width:768px){

  .why-section{
    padding:30px 0;
  }

  .why-content h2{
    font-size:26px;
  }

  .why-content p{
    font-size:14px;
  }

  .why-cards{
    grid-template-columns:1fr;
  }

  .why-card{
    padding:30px;
  }

}

/* ========================================
   MANUFACTURING SECTION
======================================== */

.manufacturing-section{
  position:relative;

  padding:110px 0;

  background:#f8f8f8;

  overflow:hidden;
}

/* GRID */

.manufacturing-grid{
  display:grid;

  grid-template-columns:
  1fr 1fr;

  gap:80px;

  align-items:center;
}

/* ========================================
   LEFT CONTENT
======================================== */

.manufacturing-content{
  position:relative;

  z-index:2;
}

/* LABEL */

.section-label{
  display:inline-block;

  font-size:13px;
  font-weight:700;

  letter-spacing:4px;

  text-transform:uppercase;

  color:#e10600;

  margin-bottom:18px;
}

/* TITLE */

.manufacturing-content h2{
  font-size:38px;

  line-height:1.05;

  font-weight:700;

  color:#071739;

  margin-bottom:28px;

  max-width:620px;
}

/* TEXT */

.manufacturing-text{
  font-size:15px;

  line-height:1.9;

  color:#4f5968;

  margin-bottom:42px;

  max-width:650px;
}

/* ========================================
   POINTS
======================================== */

.manufacturing-points{
  display:flex;

  flex-direction:column;

  gap:12px;

  margin-bottom:42px;
}

/* SINGLE POINT */

.manufacturing-point{
  display:flex;

  align-items:flex-start;

  gap:10px;

  padding:5px 0;

  transition:0.4s ease;
}

/* ICON */

.manufacturing-point i{
  width:52px;
  height:52px;

  min-width:52px;

  display:flex;

  align-items:center;
  justify-content:center;

  border-radius:16px;

  background:
  rgba(225,6,0,0.08);

  color:#e10600;

  font-size:15px;

  transition:0.4s ease;
}

/* HOVER */

.manufacturing-point:hover{
  transform:translateX(10px);
}

.manufacturing-point:hover i{
  background:#e10600;

  color:#fff;

  box-shadow:
  0 12px 30px rgba(225,6,0,0.25);
}

/* TITLES */

.manufacturing-point h4{
  font-size:17px;

  font-weight:600;

  color:#071739;

  margin-bottom:8px;
}

/* DESCRIPTION */

.manufacturing-point p{
  font-size:15px;

  line-height:1.8;

  color:#5f6875;
}

/* ========================================
   LINK
======================================== */

.manufacturing-link{
  display:inline-flex;

  align-items:center;

  gap:10px;

  color:#e10600;

  font-size:17px;
  font-weight:700;

  transition:0.35s ease;
}

.manufacturing-link:hover{
  gap:16px;
}

/* ========================================
   RIGHT IMAGE
======================================== */

.manufacturing-image-wrap{
  position:relative;

  border-radius:34px;

  overflow:hidden;

  box-shadow:
  0 30px 80px rgba(0,0,0,0.12);

  transition:0.5s ease;
}

/* IMAGE */

.manufacturing-image-wrap img{
  width:100%;

  height:720px;

  object-fit:cover;

  display:block;

  transition:0.8s ease;
}

/* IMAGE HOVER */

.manufacturing-image-wrap:hover img{
  transform:scale(1.05);
}

/* RED GLOW */

.manufacturing-image-wrap::after{
  content:"";

  position:absolute;

  inset:0;

  background:
  linear-gradient(
    135deg,
    rgba(225,6,0,0.22),
    transparent 55%
  );

  pointer-events:none;
}

/* ========================================
   FLOATING BADGE
======================================== */

.manufacturing-badge{
  position:absolute;

  top:35px;
  left:35px;

  display:flex;

  align-items:center;

  gap:16px;

  background:#fff;

  padding:18px 22px;

  border-radius:22px;

  box-shadow:
  0 18px 45px rgba(0,0,0,0.10);

  animation:
  floatBadge 4s ease-in-out infinite;
}

/* ICON */

.manufacturing-badge i{
  width:52px;
  height:52px;

  display:flex;

  align-items:center;
  justify-content:center;

  border-radius:16px;

  background:
  rgba(225,6,0,0.08);

  color:#e10600;

  font-size:22px;
}

/* BADGE TEXT */

.manufacturing-badge h5{
  font-size:18px;

  font-weight:700;

  color:#071739;

  margin-bottom:4px;
}

.manufacturing-badge p{
  font-size:14px;

  color:#667080;
}

/* FLOAT */

@keyframes floatBadge{

  0%{
    transform:translateY(0px);
  }

  50%{
    transform:translateY(-8px);
  }

  100%{
    transform:translateY(0px);
  }

}

/* ========================================
   TABLET
======================================== */

@media(max-width:1100px){

  .manufacturing-grid{
    grid-template-columns:1fr;

    gap:60px;
  }

  .manufacturing-content h2{
    font-size:44px;
  }

  .manufacturing-image-wrap img{
    height:580px;
  }

}

/* ========================================
   MOBILE
======================================== */

@media(max-width:768px){

  .manufacturing-section{
    padding:90px 0;
  }

  .manufacturing-content h2{
    font-size:34px;
  }

  .manufacturing-text{
    font-size:16px;
  }

  .manufacturing-point{
    gap:14px;
  }

  .manufacturing-point h4{
    font-size:18px;
  }

  .manufacturing-image-wrap img{
    height:420px;
  }

  .manufacturing-badge{
    top:18px;
    left:18px;

    padding:14px 16px;
  }

  .manufacturing-badge h5{
    font-size:15px;
  }

  .manufacturing-badge p{
    font-size:12px;
  }

}

/* ========================================
   TESTIMONIALS
======================================== */

.testimonials-section{
  position:relative;

  padding:110px 0;

  overflow:hidden;

  background:
  linear-gradient(
    120deg,
    #120202 0%,
    #250404 35%,
    #4b0505 70%,
    #150202 100%
  );
}

/* RED GLOW */

.testimonials-section::before{
  content:"";

  position:absolute;

  top:-200px;
  right:-200px;

  width:500px;
  height:500px;

  background:
  radial-gradient(
    rgba(225,6,0,0.35),
    transparent 70%
  );

  filter:blur(50px);

  pointer-events:none;
}

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

.testimonials-header{
  margin-bottom:40px;

  max-width:850px;
}

.testimonials-header h2{
  font-size:38px;

  line-height:1.08;

  font-weight:700;

  color:#fff;
}

/* ========================================
   GRID
======================================== */

.testimonials-grid{
  display:grid;

  grid-template-columns:
  repeat(3,1fr);

  gap:28px;
}

/* ========================================
   CARD
======================================== */

.testimonial-card{
  position:relative;

  padding:28px;

  border-radius:28px;

  background:
  rgba(255,255,255,0.03);

  backdrop-filter:blur(12px);

  border:1px solid rgba(255,255,255,0.08);

  transition:0.45s ease;

  overflow:hidden;
}

/* HOVER */

.testimonial-card:hover{
  transform:translateY(-10px);

  border-color:
  rgba(225,6,0,0.45);

  box-shadow:
  0 20px 60px rgba(0,0,0,0.25),
  0 0 40px rgba(225,6,0,0.16);
}

/* TOP GLOW */

.testimonial-card::before{
  content:"";

  position:absolute;

  top:0;
  left:0;

  width:100%;
  height:1px;

  background:
  linear-gradient(
    90deg,
    transparent,
    rgba(225,6,0,0.7),
    transparent
  );

  opacity:0;

  transition:0.45s ease;
}

.testimonial-card:hover::before{
  opacity:1;
}

/* ========================================
   QUOTE ICON
======================================== */

.quote-icon{
  margin-bottom:4px;
}

.quote-icon i{
  font-size:20px;

  color:#ff1a1a;
}

/* ========================================
   TEXT
======================================== */

.testimonial-card p{
  font-size:15px;

  line-height:1.9;

  color:rgba(255,255,255,0.82);

  margin-bottom:5px;
}

/* ========================================
   STARS
======================================== */

.testimonial-stars{
  color:#ff1a1a;

  letter-spacing:4px;

  font-size:15px;

  margin-bottom:5px;
}

/* ========================================
   USER
======================================== */

.testimonial-user h4{
  font-size:15px;

  font-weight:600;

  color:#fff;

  margin-bottom:4px;
}

.testimonial-user span{
  font-size:14px;

  color:rgba(255,255,255,0.58);
}

/* ========================================
   TABLET
======================================== */

@media(max-width:1100px){

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

  .testimonials-header h2{
    font-size:42px;
  }

}

/* ========================================
   MOBILE
======================================== */

@media(max-width:768px){

  .testimonials-section{
    padding:90px 0;
  }

  .testimonials-header{
    margin-bottom:40px;
  }

  .testimonials-header h2{
    font-size:34px;
  }

  .testimonial-card{
    padding:28px;
  }

  .testimonial-card p{
    font-size:15px;
  }

}

/* ========================================
   CTA BANNER
======================================== */

.cta-banner{
  padding:110px 0;

  background:#f8f8f8;
}

.cta-box{
  position:relative;

  overflow:hidden;

  border-radius:36px;

  padding:30px;

  background:
  linear-gradient(
    90deg,
    #ff0000 0%,
    #b80000 0%,
    #230505 0%
  );

  box-shadow:
  0 30px 80px rgba(0,0,0,0.15);
}

/* GLOW */

.cta-box::before{
  content:"";

  position:absolute;

  top:-120px;
  right:-120px;

  width:350px;
  height:250px;

  background:
  radial-gradient(
    rgba(255,255,255,0.18),
    transparent 70%
  );

  border-radius:50%;
}

/* LAYOUT */

.cta-box{
  display:flex;

  justify-content:space-between;

  align-items:center;

  gap:60px;
}

/* TITLE */

.cta-content h2{
  color:#fff;

  font-size:38px;

  line-height:1.08;

  max-width:700px;

  margin-bottom:18px;
}

/* TEXT */

.cta-content p{
  color:rgba(255,255,255,0.82);

  font-size:15px;

  line-height:1.8;

  max-width:650px;
}

/* BUTTONS */

.cta-actions{
  display:flex;

  gap:16px;

  flex-wrap:wrap;
}

.cta-primary{
  display:inline-flex;

  align-items:center;
  justify-content:center;

  padding:18px 34px;

  border-radius:60px;

  background:#fff;

  color:#e10600;

  font-weight:600;

  transition:.35s;
}

.cta-primary:hover{
  transform:translateY(-4px);
}

.cta-secondary{
  display:inline-flex;

  align-items:center;
  justify-content:center;

  padding:18px 34px;

  border-radius:60px;

  border:1px solid rgba(255,255,255,0.25);

  color:#fff;

  backdrop-filter:blur(12px);

  transition:.35s;
}

.cta-secondary:hover{
  background:rgba(255,255,255,0.08);
}

/* RESPONSIVE */

@media(max-width:1100px){

  .cta-box{
    flex-direction:column;

    align-items:flex-start;
  }

  .cta-content h2{
    font-size:32px;
  }

}

@media(max-width:768px){

  .cta-box{
    padding:40px 30px;
  }

  .cta-content h2{
    font-size:22px;
  }

  .cta-content p{
    font-size:14px;
  }

  .cta-actions{
    width:100%;
  }

  .cta-primary,
  .cta-secondary{
    width:100%;
  }

}

/* ========================================
   PREMIUM FOOTER
======================================== */

.footer{
  position:relative;

  overflow:hidden;

  background:
  linear-gradient(
    135deg,
    #050505 0%,
    #130404 40%,
    #220606 100%
  );

  padding:
  100px 0 30px;
}

/* RED GLOW */

.footer::before{
  content:"";

  position:absolute;

  top:-250px;
  right:-250px;

  width:550px;
  height:550px;

  background:
  radial-gradient(
    rgba(225,6,0,0.20),
    transparent 70%
  );

  filter:blur(40px);

  pointer-events:none;
}

/* GRID */

.footer-grid{
  display:grid;

  grid-template-columns:
  2fr
  1fr
  1fr
  1fr;

  gap:60px;
}
.footer-company{
  white-space:nowrap;

  font-size:58px;

  line-height:1;

  margin-bottom:30px;
}

/* LOGO */

.footer-logo{
  max-width:180px;

  margin-bottom:24px;
}

/* DESCRIPTION */

.footer-brand p{
  color:
  rgba(255,255,255,0.70);

  line-height:1.9;

  font-size:15px;

  margin-bottom:20px;
}

/* TITLES */

.footer-col h4{
  color:#fff;

  font-size:19px;

  margin-bottom:24px;

  font-weight:700;
}

/* LIST */

.footer-col ul{
  list-style:none;

  padding:0;
  margin:0;
}

.footer-col li{
  margin-bottom:13px;

  color:
  rgba(255,255,255,0.70);

  font-size:14px;

  transition:0.35s ease;
}

/* LINKS */

.footer-col a{
  color:
  rgba(255,255,255,0.70);

  transition:0.35s ease;
}

.footer-col a:hover{
  color:#ff2c2c;

  padding-left:6px;
}

/* CONTACT ICONS */

.footer-col li i{
  color:#ff2c2c;

  margin-right:10px;
}

/* SOCIALS */

.footer-social{
  display:flex;

  gap:14px;
}

.footer-social a{
  width:44px;
  height:44px;

  display:flex;

  align-items:center;
  justify-content:center;

  border-radius:50%;

  background:
  rgba(255,255,255,0.06);

  color:#fff;

  transition:0.4s ease;
}

.footer-social a:hover{
  background:#e10600;

  transform:
  translateY(-4px);
}

/* BOTTOM */

.footer-bottom{
  display:flex;

  justify-content:space-between;

  align-items:center;

  gap:20px;

  padding-top:20px;

  border-top:
  1px solid rgba(255,255,255,0.08);
}

.footer-bottom p{
  color:
  rgba(255,255,255,0.65);

  font-size:14px;
}

.footer-bottom span{
  color:#ff2c2c;

  font-weight:700;
}

/* TABLET */

@media(max-width:1100px){

  .footer-grid{
    grid-template-columns:
    repeat(2,1fr);
  }

}

/* MOBILE */

@media(max-width:768px){

  .footer{
    padding:
    80px 0 25px;
  }

  .footer-grid{
    grid-template-columns:1fr;

    gap:40px;
  }

  .footer-bottom{
    flex-direction:column;

    text-align:center;
  }

}
.footer-company{
  font-size:40px;

  font-weight:700;

  color:#fff;

  margin-bottom:20px;
}

.footer-col li{
  display:flex;
  align-items:center;
  gap:14px;

  margin-bottom:20px;
}

.footer-col li i{
  width:20px;
  text-align:center;
}

.typing-word{
  display:inline-block;

  color:#ff0000;

  overflow:hidden;

  white-space:nowrap;

  border-right:3px solid #ff0000;

  width:0;

  animation:
  typing 3s steps(12,end) forwards,
  blink .8s infinite;
}

@keyframes typing{

  from{
    width:0;
  }

  to{
    width:100%;
  }

}

@keyframes blink{

  50%{
    border-color:transparent;
  }

}

/* ========================================
   PRELOADER
======================================== */

#preloader{
  position:fixed;

  top:0;
  left:0;

  width:100%;
  height:100vh;

  background:#ffffff;

  display:flex;

  justify-content:center;
  align-items:center;

  z-index:999999;

  transition:0.8s ease;
}

/* CONTENT */

.loader-content{
  text-align:center;
}

/* LOGO */

.loader-logo{
  width:180px;

  height:auto;

  margin-bottom:30px;

  animation:
  logoPulse 2s infinite ease-in-out;
}

/* LOADING LINE */

.loader-line{
  width:220px;

  height:4px;

  border-radius:50px;

  background:#eee;

  overflow:hidden;

  margin:auto;

  position:relative;
}

.loader-line::before{
  content:"";

  position:absolute;

  top:0;
  left:-100%;

  width:100%;
  height:100%;

  background:
  linear-gradient(
    90deg,
    #ff0000,
    #e10600
  );

  animation:
  loadingLine 1.5s infinite;
}

/* ANIMATIONS */

@keyframes loadingLine{

  100%{
    left:100%;
  }

}

@keyframes logoPulse{

  0%{
    transform:scale(1);
  }

  50%{
    transform:scale(1.05);
  }

  100%{
    transform:scale(1);
  }

}

html,
body{
  overflow-x:hidden !important;
  max-width:100%;
}

/* ========================================
WHO WE ARE - PREMIUM VERSION
======================================== */

.about-company{
    padding:140px 0;
    background:#f7f8fa;
    position:relative;
    overflow:hidden;
}

.about-company::before{
    content:"";

    position:absolute;

    top:-200px;
    right:-200px;

    width:500px;
    height:500px;

    background:rgba(225,6,0,.03);

    border-radius:50%;
}

.about-company-grid{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:90px;
    align-items:center;
}

/* IMAGE */

.about-company-image{
    position:relative;
    overflow:hidden;
    border-radius:30px;

    box-shadow:
    0 30px 70px rgba(0,0,0,.12);
}

.about-company-image img{
    width:100%;
    height:700px;
    object-fit:cover;
    display:block;
    transition:.8s ease;
}

.about-company-image:hover img{
    transform:scale(1.08);
}

/* FLOATING CARD */

.about-company-image::after{

    content:"Since Excellence";

    position:absolute;

    bottom:30px;
    left:30px;

    background:rgba(255,255,255,.95);

    padding:16px 22px;

    border-radius:18px;

    color:#071739;

    font-weight:700;

    backdrop-filter:blur(10px);
}

/* CONTENT */

.about-company-content{
    max-width:650px;
}

.about-company-content .section-tag{

    display:inline-block;

    color:#E10600;

    font-weight:700;

    letter-spacing:2px;

    text-transform:uppercase;

    margin-bottom:20px;
}

.about-company-content h2{

    font-size:60px;

    line-height:1.05;

    color:#071739;

    margin-bottom:30px;

    font-weight:800;
}

.about-company-content p{

    font-size:18px;

    line-height:1.95;

    color:#5F6875;

    margin-bottom:24px;
}

/* STATS */

.about-company-stats{

    display:grid;

    grid-template-columns:
    repeat(2,1fr);

    gap:24px;

    margin-top:50px;
}

.company-stat{

    background:#F7F8FA;

    padding:28px;

    border-radius:24px;

    transition:.4s ease;

    border:1px solid transparent;
}

.company-stat:hover{

    transform:translateY(-10px);

    border-color:#E10600;

    box-shadow:
    0 25px 50px rgba(0,0,0,.08);
}

.company-stat h3{

    font-size:42px;

    color:#E10600;

    margin-bottom:10px;

    font-weight:800;
}

.company-stat span{

    color:#5F6875;

    font-size:15px;

    font-weight:600;
}

/* TABLET */

@media(max-width:991px){

    .about-company-grid{
        grid-template-columns:1fr;
        gap:60px;
    }

    .about-company-content{
        max-width:100%;
    }

    .about-company-content h2{
        font-size:44px;
    }

    .about-company-image img{
        height:550px;
    }

}

/* MOBILE */

@media(max-width:768px){

    .about-company{
        padding:90px 0;
    }

    .about-company-content h2{
        font-size:34px;
    }

    .about-company-content p{
        font-size:16px;
    }

    .about-company-image img{
        height:400px;
    }

    .about-company-stats{
        grid-template-columns:1fr;
    }

    .company-stat{
        padding:24px;
    }

}

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

.about-hero{
    position:relative;

    min-height:80vh;

    display:flex;
    align-items:center;

    background:
    linear-gradient(
        rgba(7,23,57,.80),
        rgba(145,0,0,.75)
    ),
    url('../images/about-hero.webp');

    background-size:cover;
    background-position:center;
    background-repeat:no-repeat;

    padding:180px 0 120px;

    overflow:hidden;
}

.hero-content{
    max-width:800px;
    color:#fff;
    position:relative;
    z-index:2;
}

.hero-label{
    display:inline-block;

    margin-bottom:20px;

    color:#ffffff;

    font-size:14px;

    font-weight:600;

    letter-spacing:2px;

    text-transform:uppercase;
}

.about-hero h1{

    font-size:38px;

    line-height:1.05;

    font-weight:700;

    margin-bottom:30px;
}

.about-hero p{

    font-size:14px;

    line-height:1.8;

    max-width:600px;

    margin-bottom:40px;

    color:rgba(255,255,255,.9);
}

.hero-buttons{

    display:flex;

    gap:20px;

    flex-wrap:wrap;
}

/* TABLET */

@media(max-width:991px){

.about-hero h1{
    font-size:36px;
}

.about-hero p{
    font-size:14px;
}

}

/* MOBILE */

@media(max-width:768px){

.about-hero{

    min-height:auto;

    padding:150px 0 90px;
}

.about-hero h1{
    font-size:38px;
}

.about-hero p{
    font-size:14px;
}

.hero-buttons{
    flex-direction:column;
}

}

.hero-content{
    position:relative;
    z-index:2;
}

.hero-overlay{
    display:block;
}