/*=============== GOOGLE FONTS ===============*/
@import url("https://fonts.googleapis.com/css2?family=Montserrat:wght@400;600&display=swap");

/*=============== VARIABLES CSS ===============*/
:root {
  --header-height: 3.5rem;

  /*========== Colors ==========*/
  /*Color mode HSL(hue, saturation, lightness)*/
  --black-color: hsl(220, 24%, 12%);
  --black-color-light: hsl(220, 24%, 15%);
  --black-color-lighten: hsl(220, 20%, 18%);
  --white-color: #fff;
  --body-color: #0a0a0a;

  /*========== Font and typography ==========*/
  /*.5rem = 8px | 1rem = 16px ...*/
  --body-font: "Montserrat", sans-serif;
  --normal-font-size: .938rem;

  /*========== Font weight ==========*/
  --font-regular: 400;
  --font-semi-bold: 600;

  /*========== z index ==========*/
  --z-tooltip: 10;
  --z-fixed: 100;
}

/*========== Responsive typography ==========*/
@media screen and (min-width: 1024px) {
  :root {
    --normal-font-size: 1rem;
  }
}

/*=============== BASE ===============*/
* {
  box-sizing: border-box;
  padding: 0;
  margin: 0;
}

body {
  font-family: var(--body-font);
  font-size: 14px;
  line-height: 1.42857143;
  background-color: var(--body-color);
}

ul {
  list-style: none;
  /* Color highlighting when pressed on mobile devices */
  /*-webkit-tap-highlight-color: transparent;*/
}

a {
  text-decoration: none;
}

/*=============== REUSABLE CSS CLASSES ===============*/
.container {
  max-width: 1120px;
  margin-inline: 1.5rem;
}
/* ================= TOP BAR ================= */
.top-bar{
  position:fixed;
  top:0;
  width:100%;
  background:#1c1c1c;
  color:#ccc;
  font-size:13px;
  padding:6px 40px;
  display:flex;
  justify-content:space-between;
  z-index:1001;
}

.top-bar span i{
  color:var(--yellow);
  margin-right:6px;
}

/* ================= HEADER ================= */
.header{
  position:fixed;
  width:100%;
  background:linear-gradient(to right,#000,#151515);
  z-index:1000;
}

.nav{
  max-width:1300px;
  margin:auto;
  padding:18px 40px;
  display:flex;
  align-items:center;
  justify-content:space-between;
}

/* LEFT SIDE */
.left2{
  display:flex;
  align-items:center;
  gap:16px;
}

/* LOGO */
.logo{
  color:var(--white);
  font-size:22px;
  font-weight:700;
}

/* MENU (DESKTOP) */
.menu2{
  display:flex;
  align-items:center;
  gap:35px;
}

.menu2 a{
  color:#fff;
  text-decoration:none;
  font-size:18px;
  position:relative;
  font-weight: bold;
}

.menu2 a::after{
  content:"";
  position:absolute;
  bottom:-6px;
  left:0;
  width:0;
  height:2px;
  background:var(--yellow);
  transition:.3s;
}

.menu2 a:hover::after{
  width:100%;
}

/* DROPDOWN */
.dropdown{
  position:relative;
}

.dropdown-menu{
  position:absolute;
  top:40px;
  left:0;
  background:#111;
  width:200px;
  border-radius:10px;
  box-shadow:0 25px 45px rgba(0,0,0,.7);
  opacity:0;
  visibility:hidden;
  transform:translateY(10px);
  transition:.3s;
}

.dropdown-menu a{
  display:block;
  padding:14px 18px;
}

.dropdown-menu a:hover{
  background:#ffc400;
  color:#000;
}

.dropdown:hover .dropdown-menu{
  opacity:1;
  visibility:visible;
  transform:none;
}

/* CONTACT BUTTON */
.contact-btn{
  background:#ffc400;
  color:#000 !important;
  padding:10px 24px;
  border-radius:30px;
  font-weight:600;
  white-space:nowrap;
}

/* ================= HAMBURGER ================= */
.hamburger{
  font-size:22px;
  color:#fff;
  cursor:pointer;
}

/* ================= MOBILE / OVERLAY MENU ================= */
.mobile-menu{
  position:fixed;
  inset:0;
  background:#0b0b0b;
  padding:100px 40px;
  transform:translateX(-100%);
  transition:.4s ease;
  z-index:2000;
}

.mobile-menu.active{
  transform:translateX(0);
}

.mobile-menu a{
  display:block;
  padding:18px 0;
  color:#fff;
  font-size:20px;
  border-bottom:1px solid #222;
}

.mobile-menu a:hover{
  color:#ffc400;
}

.close{
  position:absolute;
  top:30px;
  right:40px;
  font-size:28px;
  color:#ffc400;
  cursor:pointer;
}

/* RESPONSIVE */
@media(max-width:992px){
  .menu2{
    display:none;
  }
}

/*=============== HEADER ===============*/
/* .header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background-color: #0a0a0a;
  box-shadow: 0 2px 16px hsla(220, 32%, 8%, .3);
  z-index: var(--z-fixed);
} */
.text{
    color: var(--white-color);
    line-height: 25px;
}
h1{
  font-size: 30px;
  text-transform: uppercase;
  margin-bottom: 15px;
}
h2{
    text-align: center;
    color: var(--white-color);
    text-transform: uppercase;
    font-size: 30px;
}

.breadcrumb{
  float: left;
  width: 96%;
  margin-left: 10px;
  padding: 10px;
  font-size: 12px;
}




.breadcrumb a{
  color: #000;
  font-weight: bold;
}




/* Tabs container */
    .tabs {
      display: flex;
      gap: 12px;
      margin-bottom: 25px;
      flex-wrap: wrap;
      justify-content: center;
    }
    /* Each tab button */
    .tab {
      cursor: pointer;
      background: black;
      color: white;
      padding: 10px 22px;
      font-weight: 700;
      border-radius: 3px;
      user-select: none;
      transition: background-color 0.3s;
      white-space: nowrap;
      font-size: 14px;
    }
    .tab:hover {
      background: #444;
    }
    /* Active tab */
    .tab.active {
      background: #f5c400; /* yellow */
      color: black;
      font-weight: 900;
    }

    /* Products container */
    .products {
      display: none; /* hide by default */
      gap: 20px;
      display: grid;
      grid-template-columns: repeat(auto-fit,minmax(220px,1fr));
      max-width: 1100px;
      margin: 0 auto 60px auto;
    }
    .products.active {
      display: grid; /* show active category products */
    }

    /* Single product card */
    .product-card {
      background: white;
      border: 2px solid #f5c400;
      border-radius: 8px;
      padding: 15px;
      text-align: center;
      box-shadow: 0 2px 8px rgb(0 0 0 / 0.1);
      transition: box-shadow 0.3s ease;
      display: flex;
      flex-direction: column;
      justify-content: space-between;
    }
    .product-card:hover {
      box-shadow: 0 6px 16px rgb(0 0 0 / 0.15);
    }
    .product-card img {
      max-width: 100%;
      height: auto;
      border-radius: 4px;
      margin-bottom: 10px;
      object-fit: contain;
      max-height: 160px;
    }
    .product-tag {
      display: inline-block;
      font-size: 11px;
      padding: 3px 7px;
      border: 1px solid #ccc;
      border-radius: 3px;
      margin-bottom: 6px;
      color: #777;
    }
    .product-title {
      font-weight: 700;
      margin-bottom: 4px;
      color: #111;
      font-size: 18px;
      text-transform: uppercase;
    }
    .product-desc {
      font-size: 14px;
      margin-bottom: 12px;
      color: #555;
      min-height: 42px;
    }
    .btn-know-more {
      background-color: #f5c400;
      color: black;
      padding: 8px 16px;
      border: none;
      border-radius: 4px;
      font-weight: 600;
      cursor: pointer;
      text-decoration: none;
      display: inline-block;
      transition: background-color 0.3s ease;
      margin-top: auto;
    }
    .btn-know-more:hover {
      background-color: #d1a600;
    }

    /* Responsive tweaks */
    @media (max-width: 600px) {
      .tabs {
        justify-content: center;
      }
      .tab {
        font-size: 13px;
        padding: 8px 14px;
      }
    }


.who-we-are {
  background: linear-gradient(180deg, #0b0b0b, #000);
  /* padding: 50px 20px; */
  color: #fff;
}

.who-inner {
  max-width: 980px;
  margin: auto;
}

/* HEADING */
.heading-wrap {
  margin-bottom: 30px;
}


.section-heading span {
  color: #ffd400;
}

/* TEXT */
.who-inner p {
  font-size: 15px;
  line-height: 1.9;
  color: #cfcfcf;
  margin-bottom: 15px;margin-top: 30px;
}

.who-inner .intro {
  font-size: 17px;
  font-weight: 500;
  color: #e5e5e5;
}

/* BUTTON */
.who-btn {
  display: inline-block;
  margin-top:10px;margin-bottom: 20px;
  padding: 14px 32px;
  border: 2px solid #ffd400;
  color: #ffd400;
  text-decoration: none;
  font-weight: 700;
  letter-spacing: 1px;
  transition: all 0.3s ease;
}

.who-btn:hover {
  background: #ffd400;
  color: #000;
  box-shadow: 0 10px 30px rgba(255, 212, 0, 0.4);
}

/* RESPONSIVE */
@media (max-width: 768px) {
  

  .who-we-are {
    padding: 70px 20px;
  }
}


.our-products3 {
  background: linear-gradient(to bottom, #ffd400 0%, #ffd400 55%, #1c1c1c 55%);
  padding: 30px 20px 30px;
  text-align: center;
}

.our-products3 h2 {
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 20px;
  color: #000;
  letter-spacing: 1px;
}

.products-wrapper3 {
  display: flex;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
}

.product-card3 {
  position: relative;
  background-color: #000;
  border-radius: 18px;
  width: 360px;
  padding: 25px;
  text-align: center;
}

.product-card3 h3 {
  color: #fff;
  font-size: 22px;
  margin-bottom: 20px;
}

.product-card3 img {
  display: block;
  max-width: 240px;
  margin: 0 auto 30px;
}

.arrow3 {
  position: absolute;
  top: 18px;
  right: 18px;
  width: 38px;
  height: 38px;
  background-color: #ffd400;
  color: #000;
  border-radius: 50%;
  font-size: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
}

.read-more3 {
  display: inline-block;
  margin-top: 10px;
  padding: 10px 26px;
  border-radius: 30px;
  background-color: #ffd400;
  color: #000;
  text-decoration: none;
  font-size: 14px;
  font-weight: 600;
  transition: background 0.3s ease, transform 0.2s ease;
}

.read-more3:hover {
  background-color: #ffdf33;
  transform: translateY(-2px);
}



.img2{
  float: right;
}
.img1{
   float: left;
   margin-right: 20px;
}
.l-txt-r-img-txt{
  color:#fff;
  line-height: 30px;
}
.l-txt-r-img-txt ul li span{
  font-size: 22px;
}
.abt-sec{
 padding:65px 0;
}
.ban_sec {
  width: 100%;
}
.ban_img {
  width: 100%;
  position: relative;
}
.ban_img img {
  width: 100%;
}
.contact-info-text{
  margin-top: 100px;
  text-align: center;
}
.contact-info-text p{
  margin: 30px 0;
  color: #fff;text-align: center;
  font-size: 20px;
}
.ban_text {
  position: absolute;
  top:86%;
  left: 6%;
  -ms-transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  transform: translateY(-50%);
}
.ban_text strong {
  font: 800 50.22px/55px "Montserrat", sans-serif;
  color: #000;
  text-transform: uppercase;
}
.ban_text strong span {
  font:800 30.22px/30px "Montserrat", sans-serif;
  letter-spacing: 3px;
}





.nav__link {
  color: var(--white-color);
  font-weight: var(--font-semi-bold);
  padding: 1.25rem 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: background-color .3s;
  font-size:17px;
}

.nav__link:hover {
  background-color: #1e1e1e;
}

/* Show menu */
.show-menu {
  opacity: 1;
  top: 3.5rem;
  pointer-events: initial;
}

/* Show icon */
.show-icon .nav__burger {
  opacity: 0;
  transform: rotate(90deg);
}
.show-icon .nav__close {
  opacity: 1;
  transform: rotate(90deg);
}

/*=============== DROPDOWN ===============*/
.dropdown__item {
  cursor: pointer;
}

.dropdown__arrow {
  font-size: 1.25rem;
  font-weight: initial;
  transition: transform .4s;
}

.dropdown__link {
  padding: 1.25rem 1.25rem 1.25rem 2.5rem;
  color: var(--white-color);
  background-color: #0a0a0a;
  display: flex;
  align-items: center;
  column-gap: .5rem;
  font-weight: var(--font-semi-bold);
  transition: background-color .3s;
  font-size:17px;
}

.dropdown__link i {
  font-size: 1.25rem;
  font-weight: initial;
}

.dropdown__link:hover {
  background-color: var(--black-color);
}

.dropdown__menu {
  max-height: 0;
  width: 185px;
  overflow: hidden;
  transition: max-height .4s ease-out;
}

/* Show dropdown menu & submenu */
.dropdown__item:hover .dropdown__menu {
  max-height: 1000px;
  transition: max-height .4s ease-in;
}

/* Rotate dropdown icon */
.dropdown__item:hover .dropdown__arrow {
  transform: rotate(180deg);
}

/*=============== DROPDOWN SUBMENU ===============*/
.dropdown__add {
  margin-left: auto;
}

.dropdown__sublink {
  background-color: var(--black-color-lighten);
}

/*=============== BREAKPOINTS ===============*/
/* For small devices */
@media screen and (max-width: 340px) {
  .container {
    margin-inline: 1rem;
  }

  .nav__link {
    padding-inline: 1rem;
  }
}

/* For large devices */
@media screen and (min-width: 1118px) {
  .container {
    margin-inline: auto;
  }

  .nav {
    height: calc(var(--header-height) + 2rem);
    display: flex;
    justify-content: space-between;
  }
  .nav__toggle {
    display: none;
  }
  .nav__list {
    height: 100%;
    display: flex;
    column-gap: 3rem;
  }
  .nav__link {
    height: 100%;
    padding: 0;
    justify-content: initial;
    column-gap: .25rem;
  }
  .nav__link:hover {
    background-color: transparent;
  }

  .dropdown__item {
    position: relative;
  }

  .dropdown__menu {
    max-height: initial;
    overflow: initial;
    position: absolute;
    left: 0;
    top: 6rem;
    opacity: 0;
    pointer-events: none;
    transition: opacity .3s, top .3s;
  }

  .dropdown__link{
    padding-inline: 1rem 3.5rem;
  }

  /* Show dropdown menu */
  .dropdown__item:hover .dropdown__menu {
    opacity: 1;
    top: 5.5rem;
    pointer-events: initial;
    transition: top .3s;
  }

}

.about-section{
      padding:30px 8%;
      background:linear-gradient(135deg,#0b0b0b,#000);
    }

    .about-container{
      max-width:1100px;
      margin:auto;
    }

    .about-title{
      font-size:42px;
      font-weight:700;
      margin: 0;
      margin-bottom:30px;
      position:relative;
      text-align: left;
      color: #000;
    }

    .about-title span{
      color:#ffc400;
    }

    .about-title::after{
      content:"";
      width:90px;
      height:4px;
      background:#ffc400;
      display:block;
      margin-top:10px;
    }

    .about-text{
      font-size:17px;
      color:#dcdcdc;
      margin-bottom:25px;
    }

    .certifications{
      display:grid;
      grid-template-columns:repeat(auto-fit,minmax(260px,1fr));
      gap:14px 40px;
      margin:40px 0;
      padding:0;
      list-style:none;
    }

    .certifications li{
      position:relative;
      padding-left:28px;
      font-size:16px;
      color:#ffffff;
    }

    .certifications li::before{
      content:"✔";
      position:absolute;
      left:0;
      color:#ffc400;
      font-weight:bold;
    }

    .export-text{
      border-left:4px solid #ffc400;
      padding-left:20px;
      font-size:17px;
      color:#e6e6e6;
      margin-top:30px;
    }

    .closing-line{
      margin-top:40px;
      font-size:18px;
      font-weight:600;
      color:#ffffff;
    }

    @media(max-width:768px){
      .about-title{
        font-size:34px;
      }

      .about-text,
      .export-text{
        font-size:16px;
      }
    }

.about p{
  color: #fff;
  line-height: 35px;
  font-size:15px;
  text-align: justify;
}
.headtop {
    position: relative;
    width: 100%;
    height: 110vh;
    overflow: hidden;
  }

  .slideme {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 1s ease;
  }

  .slideme.active {
    opacity: 1;
  }

  /* dark overlay for text */
  .headtop::after {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.5);
    z-index: 1;
  }

  /* dots */
  .dots {
    position: absolute;
    bottom: 20px;
    width: 100%;
    display: flex;
    justify-content: center;
    gap: 10px;
    z-index: 2;
  }

  .dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255,255,255,0.4);
    cursor: pointer;
  }

  .dot.active {
    background: #fff;
  }
   

button {
    appearance: none;
    background: transparent;
    border: none;
    cursor: pointer;
    isolation: isolate;
  }
  
  .button {
    font-size: 16px;
    line-height: 1.5;
    font-weight: 500;
    width: 190px;
    border-radius: 9999rem;
    background: #efefef;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    isolation: isolate;
    overflow: hidden;
    margin-top: 30px;
  
    & > span.text {
      color: #121212;
      width: 100%;
      text-align: left;
      padding-block: 12px;
      padding-left: 24px;
      z-index: 2;
      transition: all 200ms ease;
    }
  
    & > div.overlay {
      color: #0a0a0a;
      width: 48px;
      height: calc(100% - 2px);
      display: flex;
      justify-content: flex-end;
      align-items: center;
      padding: 12px;
      border-radius: inherit;
      background: #ffcc00;
      position: absolute;
      right: 1px;
      z-index: 1;
      transition: all 400ms ease;
    }
  
    &:is(:hover, :focus) {
      & > span.text {
        color: #0a0a0a;
      }
      & > div.overlay {
        width: calc(100% - 2px);
        transition: width 200ms ease;
      }
    }
  }





/* RESPONSIVE */
@media(max-width:768px){
  .tech-title h1{
    font-size:32px;
  }
}


.section-out{
  padding:60px 40px;
  max-width:1200px;
  margin:auto;
}

.title-wrap0{
  display:flex;
  align-items:center;
  gap:20px;
  margin-bottom:40px;
}

.title11{
  background:#f5c400;
  color:#000;
  font-weight:800;
  padding:10px 20px;
  font-size:16px;
}
@media (max-width: 768px) {
  .headtop {
    height: 60vh;
    min-height: 400px;
  }
}

/* mobile */
@media (max-width: 480px) {
  .headtop {
    height: 45vh;
    min-height: 300px;
  }
}
.line11{
  flex:1;
  height:2px;
  background:#f5c400;
}

/* MAIN GRID */
.materials11{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:50px;
}

/* LEFT COLUMN (PU) */
.left11{
  display:block;
}

/* RIGHT COLUMN (Rubber + PVC stacked) */
.right11{
  display:grid;
  grid-template-rows:auto auto;
  gap:40px;
}

/* CARD */
.card11{
  display:grid;
  grid-template-columns:160px 1fr;
  gap:25px;
  align-items:start;
}

.card11 img{
  width:100%;
  border-radius:4px;
  filter:grayscale(100%);
}

.card11 h3{
  color:#f5c400;
  margin:0 0 10px;
  font-size:18px;text-align: left;
}

.card11 p{
  font-size:14px;
  line-height:1.6;
  color:#ccc;
}

/* RESPONSIVE */
@media(max-width:900px){
  .materials11{
    grid-template-columns:1fr;
  }
  .right11{
    gap:30px;
  }
}
.tech-section{
  background:#0b0b0b;
  padding:80px 6% 0 6%;
  color:#fff;
}





/* ===== ANIMATIONS ===== */
@keyframes slideFade{
  from{
    opacity:0;
    transform:translateY(25px);
  }
  to{
    opacity:1;
    transform:translateY(0);
  }
}

@keyframes fadeIn{
  to{opacity:1;}
}




/* Promise */
.promise {
  background: #ffc400;
  color: #000;
  text-align: center;
  padding: 20px 10%;
}

.promise h2 {
  font-size: 26px;
  margin-bottom: 10px;
  margin-top: 0;color: #000;
}

.promise p {
  font-size: 16px;
  line-height: 1.6;
}

/* Responsive */
@media (max-width: 1024px) {
  .tech-wrapper {
    grid-template-columns: 1fr 1fr;
  }
  .tech-block.wide {
    grid-column: span 2;
  }
}

@media (max-width: 768px) {
  .tech-wrapper {
    grid-template-columns: 1fr;
  }
  .tech-block.wide {
    grid-column: span 1;
  }
  .tech-header h1 {
    font-size: 32px;
  }
}
/* TITLE */
.section-title{
  font-size:34px;
  font-weight:800;
  margin-bottom:35px;
}

.section-title span{
  color:#ffc400;
}

/* GRID */
.material-grid{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(280px,1fr));
  gap:15px;
}

/* CARD */
.material-card{
  background:linear-gradient(180deg,#141414,#0d0d0d);
  border:1px solid rgba(255,196,0,0.15);
  border-radius:16px;
  padding:15px;
  transition:.4s ease;
  animation:fadeUp .9s ease forwards;
}

.material-card:hover{
  transform:translateY(-6px);
  border-color:#ffcc00;
  box-shadow:0 20px 40px rgba(255,196,0,.15);
}

@keyframes fadeUp{
  from{opacity:0; transform:translateY(40px);}
  to{opacity:1; transform:translateY(0);}
}

/* IMAGE */
.material-img{
  width:100%;
  height:160px;
  border-radius:12px;
  overflow:hidden;
  margin-bottom:15px;
}

.material-img img{
  width:100%;
  height:100%;
  object-fit:cover;
  transition:.4s ease;
}

.material-card:hover img{
  transform:scale(1.08);
}

/* HEAD */
.material-card h3{
  font-size:16px;
  color:#ffc400;
  margin-bottom:10px;
  font-weight:700;
}

/* TEXT */
.material-card p{
  font-size:13px;
  line-height:1.7;
  color:#d7d7d7;
}

/* SUB SECTION */
.sub-section{
  margin-top:60px;
}


/* RESPONSIVE */
@media(max-width:768px){
  .section-title{
    font-size:28px;
  }
}

.toe-caps{
  padding:70px 6%;
}



/* LEFT TEXT */
.toe-info h5{
  display:inline-block;
  background:#ffc400;
  color:#000;
  font-size:12px;
  font-weight:700;
  padding:6px 12px;
  margin-bottom:15px;
}

.toe-info h2{
  font-size:34px;
  font-weight:800;
  margin-bottom:15px;
}

.toe-info h2 span{
  color:#ffc400;
}

.toe-info p{
  font-size:14px;
  color:#e0e0e0;
  line-height:1.8;
  margin-bottom:15px;
}



/* GRID */
.cap-grid{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(240px,1fr));
  gap:30px;
}

/* CARD */
.cap-card{
  background:linear-gradient(180deg,#141414,#0d0d0d);
  border:1px solid rgba(255,196,0,.15);
  border-radius:16px;
  padding:25px;
  transition:.4s ease;
  animation:fadeUp .8s ease forwards;
}

.cap-card:hover{
  transform:translateY(-8px);
  border-color:#ffc400;
  box-shadow:0 20px 45px rgba(255,196,0,.18);
}

@keyframes fadeUp{
  from{opacity:0; transform:translateY(30px);}
  to{opacity:1; transform:translateY(0);}
}

/* ICON */
.cap-icon{
  width:46px;
  height:46px;
  margin-bottom:15px;
}

.cap-icon img{
  width:100%;
}

/* TITLE */
.cap-card h3{
  font-size:16px;
  color:#ffc400;
  margin-bottom:10px;
  font-weight:700;
}

/* LIST */
.cap-card ul{
  list-style:none;
}

.cap-card ul li{
  font-size:13px;
  line-height:1.7;
  color:#d6d6d6;
  position:relative;
  padding-left:16px;
  margin-bottom:6px;
}

.cap-card ul li::before{
  content:"•";
  position:absolute;
  left:0;
  color:#ffc400;
  font-size:18px;
}


.features-section {
        max-width: 1200px;
        margin: auto;
        padding: 40px 20px;
        background: linear-gradient(to right, #0b0b0b, #141414);
    }

    .section-title {
        font-size: 18px;
        font-weight: bold;
        color: #ffcc00;
        margin-bottom: 30px;
        letter-spacing: 1px;
    }

    .features-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
        gap: 30px;
    }

    .feature-item {
        display: flex;
        gap: 15px;
        align-items: flex-start;
        background: #121212;
        padding: 18px;
        border-left: 4px solid #ffcc00;
    }

    .icon {
        width: 40px;
        height: 40px;
        background: #ffcc00;
        border-radius: 6px;
        flex-shrink: 0;
    }

    .feature-content h3 {
        margin: 0;
        font-size: 16px;
        color: #ffcc00;
        text-align: left;
    }

    .feature-content p {
        margin: 6px 0 0;
        font-size: 14px;
        color: #b5b5b5;
        line-height: 1.5;
    }

    @media (max-width: 600px) {
        .section-title {
            text-align: center;
        }
    }


     .section1 {
        max-width: 1200px;
        margin: auto;
        padding: 40px 20px 60px;
    }

    /* Header */
    .section-header1 {
        display: flex;
        align-items: center;
        gap: 12px;
        margin-bottom: 20px;
    }

    .section-label {
        background: #ffcc00;
        color: #000;
        font-weight: bold;
        padding: 6px 12px;
        font-size: 14px;
    }

    .section-line {
        flex: 1;
        height: 1px;
        background: #ffcc00;
    }

    .description {
        font-size: 14px;
        color: #bdbdbd;
        line-height: 1.6;
        max-width: 900px;
        margin-bottom: 14px;
    }

    .certification {
        font-size: 13px;
        color: #bdbdbd;
        margin-bottom: 40px;
    }

    /* Cards */
    .mater-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
        gap: 30px;
    }

    .mater-card {
        background: #141414;
        padding: 20px;
        border-top: 4px solid #ffcc00;
    }

    .mater-image {
        height: 140px;
        background: #e0e0e0;
        margin-bottom: 15px;
    }

    .mater-title {
        color: #ffcc00;
        font-size: 16px;
        font-weight: bold;
        margin-bottom: 10px;
    }

    .mater-list {
        list-style: none;
        padding: 0;
        margin: 0;
    }

    .mater-list li {
        font-size: 13px;
        color: #bdbdbd;
        margin-bottom: 8px;
        padding-left: 14px;
        position: relative;
    }

    .mater-list li::before {
        content: "•";
        position: absolute;
        left: 0;
        color: #ffcc00;
        font-size: 10px;
        top: 2px;
    }

.spec-title,.specification h2{
  font-size:20px;
  font-weight:bold;
  margin-bottom:15px;
  border-bottom:2px solid #ffcc00;
  display:inline-block;
  padding-bottom:5px;
  color: #000;
}

  .service {
    width: 100%;
    height: auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-top:100px;
    margin-bottom: 50px;
  }
  
  .servcies-section-wrapper {
    width: 80%;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 25px;
  }
 
  
  .about{
    margin:40px 0;
  }
    

.p-head{
  color: #fff;
  text-transform: uppercase;
}

.about1{
  background-color: #fff;
}
  
.circle {
  width: 45px;
  height: 45px;
  background-color: #ffcc00;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  transition: background 0.3s ease;
  cursor: pointer;
  float:right;
}

.circle:hover {
  background-color: #ffaa00;
}

.arrow {
  width: 25px;
  height: 2px;
  background-color: #121212;
  position: relative;
transform:rotate(-45deg);
}

.arrow::after {
  content: '';
  width: 10px;
  height: 2px;
  background-color: #121212;
  position: absolute;
  right: 0;
  top: -4px;
  transform: rotate(45deg);
}

.arrow::before {
  content: '';
  width: 10px;
  height: 2px;
  background-color: #121212;
  position: absolute;
  right: 0;
  top: 4px;
  transform: rotate(-45deg);
}

  .heading{
    font-size: 34px;
    font-weight: bold;
    color: #fff;
    text-transform: capitalize;
    margin-bottom: 20px;
  }
  .yellow{
    color: #ffcc00;
  }


.essential{
    width: 100%;
    float: left;
    margin-top:80px;
}
.column {
  float: left;
  padding: 10px;
}

.left {
  width: 65%;
}

.right {
  width: 25%;
}
.dwnld {
  margin: 30px auto;
  margin-top: 50px;
}
.dwnl:after {
  content: "";
  display: table;
  clear: both;
}
h5{
  font-size: 25px;
}
.left h5,.left p{
  color: #fff;
  margin: 10px 0;
}

.download-button {
  background-color: #FFD700;
  color: #000;
  padding: 10px 20px;
  font-size: 16px;
  border: none;
  border-radius: 20px;
  cursor: pointer;
  display: inline-block;
  width: 205px;
}
.dwnl{
  margin-bottom: 50px;
}
  .row {
    margin-right: -15px;
    margin-left: -15px;
}

.row {
    display: flex;
    flex-wrap: wrap;
}
  
  


   .site-footer {
  background: #1c1c1c;
  color: #fff;
  padding: 30px 20px 40px;
  position: relative;
}

.footer-container {
  max-width: 1200px;
  margin: auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 50px;
}

.footer-col h3 {
  font-size: 22px;
  margin-bottom: 30px;
  font-weight: 700;
  position: relative;
  padding-bottom: 10px;
  text-align: left;
}

/* YELLOW UNDERLINE */
.footer-col h3::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 50px;
  height: 3px;
  background: #ffcc00;
}


/* CONTACT */
.contact-list {
  list-style: none;
  padding: 0;
}

.contact-list li {
  font-size: 14px;
  line-height: 1.7;
  color: #ccc;
  margin-bottom: 14px;
}

.contact-list .icon1 {
  color: #ffcc00;
  margin-right: 8px;
  float: left;
}

/* LINKS */
.footer-links {
  list-style: none;
  padding: 0;
}

.footer-links li {
  margin-bottom: 12px;
}

.footer-links a {
  color: #fff;
  font-size: 14px;
  text-decoration: none;
  position: relative;
  padding-left: 18px;
  transition: all 0.3s ease;
}

/* ARROW */
.footer-links a::before {
  content: "➜";
  position: absolute;
  left: 0;
  color: #ffcc00;
  transition: transform 0.3s ease;
}

/* HOVER MOVE */
.footer-links a:hover {
  color: #ffcc00;
  padding-left: 26px;
}

.footer-links a:hover::before {
  transform: translateX(6px);
}


/* SOCIAL ICONS */
.social-icons {
  margin-top: 20px;
}

.social-icons a {
  display: inline-flex;
  width: 38px;
  height: 38px;
  background: #0a0a0a;
  color: #000;
  font-weight: 700;
  align-items: center;
  justify-content: center;
  margin-right: 8px;
  text-decoration: none;
  transition: 0.3s;
}

.social-icons a:hover {
  background: #fff;
}

/* FOOTER BOTTOM */
.footer-bottom {
  text-align: center;
  font-size: 14px;
  color: #aaa;
  padding: 20px 0;
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .footer-container {
    grid-template-columns: 1fr;
    gap: 40px;
  }

}
  .update span img{
    background-color: #eaeaea;
    padding: 10px;
    border-radius: 10px;
    margin:10px;
  }
  
  ol {
    list-style: none;
    counter-reset: list;
    padding: 0 1rem;
  }
  
  ol li {
    --stop: calc(100% / var(--length) * var(--i));
    --l: 62%;
    --l2: 88%;
    --h: calc((var(--i) - 1) * (180 / var(--length)));
    --c1: hsl(var(--h), 71%, var(--l));
    --c2: hsl(var(--h), 71%, var(--l2));
    
    position: relative;
    counter-increment: list;
    padding: 2rem 1rem 1rem;
    box-shadow: 0.1rem 0.1rem 1.5rem rgba(0, 0, 0, 0.3);
    border-radius: 0.25rem;
    overflow: hidden;
  }
  
  .pu {
    display: flex;
    align-items: baseline;
    margin: 0 0 1rem;
    color: rgb(70 70 70);
  }
  
  .pu::before {
    display: flex;
    justify-content: center;
    align-items: center;
    flex: 0 0 auto;
    margin-right: 1rem;
    width: 1rem;
    height: 1rem;
    content: counter(list);
    padding: 1rem;
    border-radius: 50%;
    background-color: #ffcc00;
    color: white;
  }
  
 
  
 
  
  .footerBottom{
      background-color: #000;
      padding: 20px;
      text-align: center;
      margin-top: 20px;
  }
  .footerBottom p{
      color: white;
  }

  .values{
    float:left;
    width: 100%;
    background-color: #fff;
    padding: 20px 0;
  }

  .product-field {
    margin: auto;
    text-align: center;
}
  .product-field ul li {
    list-style: none;
    width: 47%;
    transition: 0.5s all;
    background-color: #fff;
    border-radius: 5px;
    display: inline-block;
    text-align: center;
    margin: 10px;border:1px solid #ccc;
}
picture {
  padding: 5px;
  right: 0;
  overflow: hidden;
}
picture img {
  z-index: 1;
  width: 250px;
  height: 250px;
}
.detail {
  background-color: #f3f3f3;
  padding:20px;width: 100%;display: flex;
}
.headi{
  text-transform: uppercase;font-weight: bold;
  font-size: 25px;
  color: #0a0a0a;
}
.detail > p {
  margin: 5px;
  text-align: left;
  font-size: 18px;color:#0a0a0a;
}
.listingiconbox {
  margin: 10px;
  padding: 20px 10px;text-align: center;border:1px solid #929292;
}
.col6{
float: left;
text-align: left;
color: #0a0a0a;
width:100%;
}
.abailablflex {
  text-align: right;
  height: 150px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.colrslisting {
  display: flex;
  justify-content: end;
}
.colrslisting span {
  margin-left: 0px;
}.col-3{width:80%}
.abailblin p{
  color: #0a0a0a;
  font-size: 12px ;
  margin-bottom: 10px;
}
span.ablblue {
  background: white;
  width: 20px;
  height: 20px;
  display: block;
  border-radius: 2px;
  padding: 2px;
  margin: 1px;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.5);
}
.prosize span {
  background: #f5f4f9;
  border: 1px solid #cbcaca;
  padding: 5px 10px;
}
.topi {
  color: #FFCC00;
  font-size: 20px;
  font-weight: bold;
  text-transform: uppercase;
}
.textbtmbrdr{
  margin-top:20px;
}
.textbtmbrdr p{
  padding: 10px 0;
  width: 70%;
  margin: 2px 0;
}
hr{
  border-top: 1px solid #eee;
}
.product-field h4{
  text-align: left;
  font-size: 25px;
  margin: 20px 0;
}
.col-md-3 p {
  font-size: 16px;
  margin: 0;
  font-weight: bold;
}
.col-md-3 img {
  width: 100px;
  height: 100px;
}
.col-md-3  {
  width:270px;display:inline-block;text-align:center;margin:auto;background-color: #fff;
}
.row1{
  text-align: center;
}

.section{
  display: flex;
  flex-direction: column;
  text-align: center;
  width: 90%;
  max-width: 550px;
  margin: auto;
  margin-top: 2em;
}
.sectionHeader{
  text-transform: capitalize;
  font-weight: bold;
  font-size: 1.1rem;
  color:#f1ea12;
  margin-bottom: .5em;
}

.heading{
  margin-bottom: .5em;
  font-weight: bold;
}

.heading{
  font-size: 2.5em;
}


.para{
  color: #fff;
  font-size: 1.1rem;
  line-height: 1.5em;
  margin-bottom: 1em;
}

.para2{
  text-align: left;
}
.container-con {
  width: 80%;
  margin: auto;
  padding: 20px;
  display: flex;
  gap: 20px;
}
.left-section {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.map-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  background: #fff;
  border-radius: 10px;
}
.map {
  width: 100%;
  height: 300px;
  border: 0;
}
.map-address {
  padding: 10px 0;
  background-color: #222;
  color: #fff;
  margin-bottom: 15px;
}
.right-section {
  flex: 1;
  background: #222;
  padding: 20px;
  border-radius: 10px;
}
h2, h3 {
  text-align: center;
  color: #fff;
}
form {
  display: flex;
  flex-direction: column;
}
label {
  margin-top: 10px;
  font-weight: bold;
  color: #FFD700;
}
input, textarea {
  width: 100%;
  padding: 10px;
  margin-top: 5px;
  border: 1px solid #FFD700;
  border-radius: 5px;
  background: #000;
  color: #FFD700;
}
.butt-on {
  margin-top: 15px;
  padding: 10px;
  background-color: #FFD700;
  color: #000;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  font-weight: bold;
}
.butt-on:hover {
  background-color: #FFC107;
}
@media (max-width: 768px) {
  .container-con {
      flex-direction: column;
  }
}


.whatsapp-button{
  position: fixed;
  bottom: 15px;
  right: 15px;
  z-index: 99;
  background-color: #25d366;
  border-radius: 50px;
  color: #ffffff;
  text-decoration: none;
  width: 50px;
  height: 50px;
  font-size: 30px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  -webkit-box-shadow: 0px 0px 25px -6px rgba(0,0,0,1);
  -moz-box-shadow: 0px 0px 25px -6px rgba(0,0,0,1);
  box-shadow: 0px 0px 25px -6px rgba(0,0,0,1);
  animation: effect 5s infinite ease-in;
}

@keyframes effect {
  20%, 100% {
      width: 50px;
      height: 50px;
      font-size: 30px;
  }
  0%, 10%{
      width: 55px;
      height: 55px;
      font-size: 35px;
  }
  5%{
      width: 50px;
      height: 50px;
      font-size: 30px;
  }
}
 @media (min-width: 40em) {
  
    .pu {
      font-size: 25px;
    }
    
    .pu::before {
      margin-right: 1.5rem;
    }
  }
  @media (min-width: 992px) and (max-width: 1199px) {
  
  .ban_text strong {
    font-size: 50px;
    line-height: 60px;
  }
  .ban_text strong span {
    font-size: 37px;
  }
}

@media only screen and (max-width: 991px) {
  .ban_text strong {
    font-size: 35px;
    line-height: 40px;
  }
  .ban_text strong span {
    font-size: 28px;
    line-height: 35px;
    letter-spacing: 2px;
  }
  .ban_text p {
    font-size: 14px;
    line-height: 20px;
  }
  .pro-col{
    width: 44%;
  }
  .servcies-section-wrapper{
    width: 96%;
  }
}
@media only screen and (max-width: 767px) {
  .ban_img img {
    min-height: 290px;
    object-fit: cover;
  }
  .img2{
    float: left;
    width: 100%;
    text-align: center;
  }
  .visionflex{
    width: 98%;
    margin-right: 5px;
  }
  .imgmission{
    width: auto;
  }
}/*responsive*/
  @media(max-width: 767px){
    .footer-col{
      width: 50%;
      margin-bottom: 30px;
  }
  .pro-col{
    width: 96%;
    margin: 10px;
  }
  .services-box{
    width: 180px;
    padding: 30px 5px;
    gap: 2;
  }
  .column,.right{
    width: 98%;
    float: left;
  }
  .dwnld{
    margin: 0;
  }
  }
  @media(max-width: 574px){
    .footer-col{
      width: 100%;
  }
  .abt-sec{
    padding: 20px 0;
  }
  }
@media only screen and (max-width: 575px) {
  .ban_text strong {
    background: rgba(0, 0, 0, 0.8);
    padding: 10px;
    width: 100%;
    display: block;
  }
  .img1{
    float: left;
    width: 98%;
    text-align: center;
  }
  ol{
    padding: 0;
  }
  .heading{
    line-height: 38px;
  }
}
@media only screen and (max-width: 480px) {
  .ban_text strong span {
    font-size: 22px;
    line-height: 31px;
    letter-spacing: 1px;
  }
  .ban_text {
    left: 2%;
  }
  .services-box{
    width: 98%;
  }
  h5{
    font-size: 18px;
  }
  .carousel_img{
    height: 48vh;
  }
  iframe{
    width: 100%;
  }
  .container-con{
    width: 100%;
  }
  .contact-info-text{
    margin-top: 10px;
  }
  .contact-info-text p{
    font-size: 17px;
  }
}

.colorvarient p,.sizevarient p{
  margin: 20px 0;
}
.prosize{
  margin-bottom: 20px;
}
.container1 {
  display: flex;
  flex-direction: row; /* Image on left, details on right */
  max-width: 1000px;
  margin: 50px auto;
  border-radius: 10px;
  overflow: hidden;
}

.product-image {
  width: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.product-image img {
  max-width: 100%;
  max-height: 400px;
  object-fit: contain;
  border-radius: 10px;
}


.product-details h1 {
  margin-top: 0;
  font-size: 28px;
}

.description {
  color: #555;
  line-height: 1.6;
}


/* Responsive for small screens */
@media (max-width: 768px) {
  .container1 {
    flex-direction: column;
  }

  .product-image,
  .product-details {
    width: 100%;
  }
}

.table {
  display: table;
  width: 100%;
  border-collapse: collapse;
  background-color: #f7f7fa;
  margin:20px 0;
  padding: 20px 0;
}
.ro {
  display: table-row;
}
.cell {
  display: table-cell;
  border-bottom: 1px solid #eee;
  padding: 20px 10px;
  vertical-align: middle;
  font-size: 16px;
}





/* ===== LAYOUT ===== */
.page{
  max-width:1200px;
  margin:60px auto;
  background:#fff;
  padding:30px;
}

/* ===== TOP ===== */
.product-top{
  display:grid;
  grid-template-columns: 45% 55%;
  gap:30px;
  align-items:center;
}

/* IMAGE PANEL */
.image-panel{
  background:#f0f0f0;
  padding:30px;
  border:1px solid #ddd;
  position:relative;
}

.image-panel img{
  width:100%;
  max-width:360px;
  display:block;
  margin:auto;
}

/* BADGES */
.badges{
  position:absolute;
  right:15px;
  top:20px;
  display:flex;
  flex-direction:column;
  gap:10px;
}

.badges span{
  width:38px;
  height:38px;
  border-radius:50%;
  background:#fff;
  border:1px solid #ccc;
  display:flex;
  align-items:center;
  justify-content:center;
  font-size:11px;
  font-weight:bold;
}

/* DETAILS */
.details h1{
  font-size:22px;
  margin-bottom:12px;
}

.meta{
  font-size:13px;
  margin-bottom:10px;
}

/* COLOR */
.color-dot{
  width:14px;
  height:14px;
  background:#000;
  display:inline-block;
  border:1px solid #aaa;
  margin-left:6px;
}

/* SIZE */
.size span{
  display:inline-block;
  border:1px solid #ccc;
  padding:4px 6px;
  font-size:12px;
  margin-right:5px;
  margin-top:5px;
}

/* RED STRIP */
.red-strip{
  background:#e1261c;
  color:#fff;
  padding:10px 14px;
  font-size:13px;
  font-weight:600;
  margin-top:15px;
  display:inline-block;
}

/* ===== ICON STRIP ===== */
.icon-strip{
  display:flex;
  gap:20px;
  margin:25px 0;
  flex-wrap:wrap;
}

.icon{
  display:flex;
  align-items:center;
  gap:6px;
  font-size:12px;
}

.icon span{
  width:28px;
  height:28px;
  border-radius:50%;
  background:#f4b400;
  color:#000;
  display:flex;
  align-items:center;
  justify-content:center;
  font-weight:bold;
}

/* ===== SPECIFICATION ===== */
.spec{
  margin-top:10px;
  border-top:2px solid #eee;
}

.spec-row{
  display:grid;
  grid-template-columns:120px 1fr;
  padding:12px 0;
  border-bottom:1px solid #eaeaea;
  font-size:13px;
  line-height:1.5;
}

.spec-label{
  color:#f4b400;
  font-weight:700;
  text-transform:uppercase;
}

/* ===== RESPONSIVE ===== */
@media(max-width:900px){
  .product-top{
    grid-template-columns:1fr;
  }
}.toe-caps {
  max-width: 1100px;
  margin: auto;
  padding: 10px 20px;
  position: relative;
}

/* TOP LINE + TITLE */
.header-line {
  display: flex;
  align-items: center;
  margin-bottom: 50px;
}

.header-line::before {
  content: "";
  flex: 1;
  height: 2px;
  background: #f5b301;
  margin-right: 15px;
}

.header-title {
  background: #f5b301;
  color: #000;
  font-weight: bold;
  padding: 8px 14px;
  font-size: 14px;
  letter-spacing: 1px;
}

/* GRID */
.grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px 80px;
  position: relative;
}

/* CENTER DOTTED LINES */
.grid::before,
.grid::after {
  content: "";
  position: absolute;
  background-image: repeating-linear-gradient(
    to right,
    #777,
    #777 4px,
    transparent 4px,
    transparent 10px
  );
}

.grid::before {
  width: 100%;
  height: 1px;
  top: 50%;
  left: 0;
}

.grid::after {
  width: 1px;
  height: 100%;
  left: 50%;
  top: 0;
  background-image: repeating-linear-gradient(
    to bottom,
    #777,
    #777 4px,
    transparent 4px,
    transparent 10px
  );
}

/* CARD */
.card {
  display: flex;
  gap: 20px;
  align-items: flex-start;
}

.card img {
  width: 100px;
  flex-shrink: 0;
}

.card h3 {
  color: #f5b301;
  margin-bottom: 10px;
  font-size: 18px;
}

.card ul {
  list-style: none;
}

.card li {
  font-size: 14px;
  line-height: 1.7;
  color: #ddd;
  position: relative;
  padding-left: 16px;
}

.card li::before {
  content: "•";
  position: absolute;
  left: 0;
  color: #f5b301;
  font-size: 10px;
  top: 5px;
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .grid {
    grid-template-columns: 1fr;
  }

  .grid::before,
  .grid::after {
    display: none;
  }
}


.simple-heading {
  text-align: center;
      margin: 40px 0;color: #000;
}


.services-hero.dark {
  background: linear-gradient(180deg, #0b0b0b, #000);
  color: #fff;
  padding: 90px 70px 40px 70px;
}

/* FULL WIDTH HEADING */
.hero-heading {
  max-width: 1200px;
  margin: 0 auto 50px;
}

.hero-heading h1 {
  font-size: 44px;
  font-weight: 800;
  line-height: 1.2;
  text-transform: uppercase;
}

.hero-heading h1 span {
  color: #ffd400;
}

/* BODY GRID */
.hero-body {
  max-width: 1200px;
  margin: auto;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 60px;
}
.hero-body1 {
  max-width: 1200px;
  margin: auto;
  display: grid;
  grid-template-columns: 0.9fr 1.3fr;
  gap: 60px;
}
/* CTA */
.cta-btn {
  display: inline-block;
  background: linear-gradient(135deg, #ffd400, #ffb703);
  color: #000;
  padding: 14px 26px;
  font-size: 14px;
  font-weight: 800;
  text-decoration: none;
  border-radius: 30px;
  margin-bottom: 45px;
  transition: all 0.3s ease;
}

.cta-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 30px rgba(255, 212, 0, 0.6);
}
.services-list {
  display: grid;
  gap: 26px;
}

.service-item h4 {
  font-size: 16px;
  font-weight: 700;
  color: #ffd400;
  margin-bottom: 6px;
}

.service-item p {
  line-height: 25px;
  font-size: 14px;
  font-weight: 500;
  color: #e5e5e5;
}

.services-right.two-images {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  align-items: flex-start;
}

/* TALL IMAGE */
.img-card.tall {
  height: 420px;
}

/* SHORT IMAGE */
.img-card.short {
  height: 300px;
  margin-top: 60px; /* offset for editorial look */
}

.img-card {
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0,0,0,0.7);
}

.img-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
@media (max-width: 900px) {
  .services-right.two-images {
    grid-template-columns: 1fr;
  }

  .img-card.tall,
  .img-card.short {
    height: auto;
    margin-top: 0;
  }
}


/* RESPONSIVE */
@media (max-width: 900px) {
  .services-hero.dark {
    padding: 60px 25px;
  }

  .hero-heading h1 {
    font-size: 32px;
  }

  .hero-body {
    grid-template-columns: 1fr;
  }
  .hero-body1 {
    grid-template-columns: 1fr;
  }
}


.body{
  margin:0;
  padding:40px;
  background:#fff;
}
.infrastructure1{
  padding:20px 30px;
}

.container-1{
  max-width:1200px;
  margin:auto;
}

/* TITLE */
.infrastructure1 h2{
  font-size:18px;
  font-weight:800;
  color:#ffd400;
  margin-bottom:14px;
}

.infrastructure1 .intro1{
  font-size:14px;
  line-height:26px;
  margin-bottom:50px;
}

/* TWO COLUMN GRID */
.content-grid1{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:60px;
}

/* BLOCKS */
.block1{
  margin-bottom:36px;
  border: 1px solid #ffd400;
  padding: 10px;
}

.block1 h3{
  font-size:15px;
  font-weight:700;
  color:#ffd400;
  margin-bottom:10px;
}

.block1 ul{
  list-style:none;
  padding:0;
  margin:0;
}

.block1 ul li{
  font-size:14px;
  line-height:26px;
  margin-bottom:6px;
  padding-left:16px;
  position:relative;
}

.block1 ul li::before{
  content:"–";
  position:absolute;
  left:0;
  color:#ffd400;
  font-weight:700;
}

/* RESPONSIVE */
@media(max-width:900px){
  .content-grid1{
    grid-template-columns:1fr;
    gap:40px;
  }

  .infrastructure1{
    padding:50px 22px;
  }
}

/* GRID */
.product-grid{
  display:grid;
  grid-template-columns:repeat(3, 1fr);
  gap:24px;
  margin-bottom:60px;
}
.content1{text-align: left;}
/* CARD */
.card1{
  background:#fff;
  border: 1.5px solid #ffd400;
  border-radius: 18px;padding: 10px;
}
.image-box1{
  border-radius:16px;
  overflow:hidden;
}
.image-box1 img{
  width:100%;
  object-fit:cover;
}
.content{
  padding-top:12px;
}
.tag{
  display:inline-block;
  border:1px solid #ccc;
  padding:4px 8px;
  font-size:12px;
  border-radius:6px;
  margin-bottom:6px;
}
.title{
  font-size:15px;
  font-weight:600;
  margin:6px 0;
}
.price{
  font-size:14px;
  color:#555;
}
.btn{
  margin-top:12px;
  background:#ffd400;
  color:#fff;
  border:none;
  width:150px;
  padding:12px;
  border-radius:10px;
  cursor:pointer;
}
.btn a{color: #000;}
/* RESPONSIVE */
@media(max-width:992px){
  .product-grid{
    grid-template-columns:repeat(2,1fr);
  }
}
@media(max-width:576px){
  .body{padding:20px;}
  .section-header h2{font-size:24px;}
  .product-grid{
    grid-template-columns:1fr;
  }
}


.protection-section {
  position: relative;
  min-height: 80vh;
  background: radial-gradient(circle at top, #0e1114, #050607);
  display: flex;
  align-items: center;
  padding: 20px 120px;
  color: #fff;
  overflow: hidden;
}

.heading-wrap {
  margin-bottom: 30px;
}

.top-line {
  display: block;
  width: 60px;
  height: 2px;
  background: #ffc400;
  margin-bottom: 12px;
}

.section-heading {
  font-size: 32px;
  font-weight: 800;
  letter-spacing: 2px;
  color: #ffffff;text-align: left;
}

.section-heading span {
  color: #ffc400;
}
@media (min-width: 900px) {
  .top-line {
    width: 90px;
  }
}


/* CONTENT */
.content {
  max-width: 620px;
  z-index: 2;
}

.content p {
  font-size: 14px;
  line-height: 1.8;
  color: #d0d0d0;
  margin-bottom: 24px;
}

/* SHOE IMAGE */
.shoe-image {
  position: absolute;
  right: -40px;
  top: 50%;
  transform: translateY(-50%);
  width: 520px;
  opacity: 0.35;
  z-index: 1;
}

.shoe-image img {
  width: 360px;
  filter: drop-shadow(0 40px 80px rgba(0,0,0,0.8));
}

/* RIGHT FADED TEXT */
.vertical-right {
  position: absolute;
  right: 10px;
  bottom: 100px;
  writing-mode: vertical-rl;
  font-size: 90px;
  font-weight: 800;
  color: rgba(255,255,255,0.08);
}

/* FRAME LINES */
.protection-section::before,
.protection-section::after {
  content: "";
  position: absolute;
  background: rgba(255,255,255,0.3);
}

.protection-section::before {
  width: 1px;
  height: 70%;
  left: 80px;
  top: 15%;
}

.protection-section::after {
  height: 1px;
  width: 90%;
  left: 5%;
  bottom: 40px;
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .shoe-image {
    position: static;
    transform: none;
    width: 100%;
    opacity: 0.25;
    margin-top: 40px;
  }

  .protection-section {
    padding: 60px 30px;
    flex-direction: column;
  }

  .vertical-left,
  .vertical-right {
    display: none;
  }
}




 .product-wrapper{
      max-width:1200px;
      margin:auto;
      background:#fff;
      padding:40px;
      border-radius:8px;
      box-shadow:0 20px 40px rgba(0,0,0,0.08);
      animation:fadeIn 1s ease forwards;padding-top: 125px;
    }

    /* Heading */
    .main-title{
      font-size:32px;
      font-weight:700;
      color:#e53935;
      animation:slideDown .8s ease forwards;
    }

    /* Article Row */
    .article-row{
      display:flex;
      align-items:center;
      justify-content:space-between;
      gap:20px;
      margin-bottom:10px;
      animation:slideLeft .9s ease forwards;
    }
 
    .article-left{
      display:flex;
      align-items:center;
      gap:25px;
      flex-wrap:wrap;
    }

    .article-name{
      font-size:22px;
      font-weight:700;
      color:#d32f2f;
    }

    .article-meta{
      font-size:14px;
      font-weight:500;
      color:#444;
    }

    .red-strip{
      background:#d32f2f;
      color:#fff;
      padding:6px 14px;
      display:inline-block;
      font-size:14px;
      font-weight:600;
      margin-bottom:30px;
      animation:expand .8s ease forwards;
    }

    /* Content */
    .content0{
      display:grid;
      grid-template-columns:1.1fr 0.9fr;
      gap:40px;
      align-items:start;
    }

    .specification0 h3{
      font-size:20px;
      margin-bottom:15px;
      color:#111;
      text-align: left;
    }

    .specification0 ul{
      list-style:none;
    }

    .specification0 li{
      margin-bottom:12px;
      padding-left:18px;
      position:relative;
      font-size:14px;
      line-height:1.6;
      color:#333;
      animation:fadeUp .6s ease forwards;
    }

    .specification0 li::before{
      content:'';
      width:8px;
      height:8px;
      background:#e53935;
      border-radius:50%;
      position:absolute;
      left:0;
      top:8px;
    }

    .product-image0{
      text-align:center;
      animation:slideRight 1s ease forwards;
    }

    .product-image0 img{
      max-width:100%;
      height:auto;
    }

    /* Bottom Green Bar */
    .features-bar0{
      background:#fec00f;
      padding:20px;
      border-radius:6px;
      display:flex;
      justify-content:space-around;
      align-items:center;
      animation:fadeUp 1s ease forwards;
    }
/* Vertical Premium Leather Range */
.vertical-range {
  position: absolute;
  left: -60px;
  top: 120px;
  writing-mode: vertical-rl;
  transform: rotate(180deg);
  font-size: 35px;
  font-weight: 700;
  letter-spacing: 4px;
  color: #e5e5e5;
  text-transform: uppercase;
  z-index: 1;
  animation: rangeFade 1.2s ease forwards;
  opacity: 0;
}

/* Animation */
@keyframes rangeFade {
  from {
    opacity: 0;
    transform: translateX(-20px) rotate(180deg);
  }
  to {
    opacity: 1;
    transform: translateX(0) rotate(180deg);
  }
}

/* Ensure parent allows absolute positioning */
.product-wrapper {
  position: relative;
}

    .feature0{
      text-align:center;
      font-size:12px;
      font-weight:500;
      color:#222;
    }

    .feature0 img{
      margin-bottom:6px;
    }

    /* Animations */
    @keyframes fadeIn{
      from{opacity:0}
      to{opacity:1}
    }

    @keyframes slideDown{
      from{opacity:0;transform:translateY(-20px)}
      to{opacity:1;transform:translateY(0)}
    }

    @keyframes slideLeft{
      from{opacity:0;transform:translateX(-30px)}
      to{opacity:1;transform:translateX(0)}
    }

    @keyframes slideRight{
      from{opacity:0;transform:translateX(30px)}
      to{opacity:1;transform:translateX(0)}
    }

    @keyframes fadeUp{
      from{opacity:0;transform:translateY(20px)}
      to{opacity:1;transform:translateY(0)}
    }

    @keyframes expand{
      from{width:0;opacity:0}
      to{width:auto;opacity:1}
    }

    @media(max-width:900px){
      .content0{
        grid-template-columns:1fr;
      }
      .article-row{
        flex-direction:column;
        align-items:flex-start;
      }
    }.wrapper {
  padding: 40px;
}

.panel {
  display: grid;
  grid-template-columns: 2fr 1fr;
  background: #0b0b0b;
  border: 2px solid #f5c400;
  padding: 30px;
  gap: 30px;
}
@media (max-width: 642px) {
.features-bar0{
  padding: 12px;
    flex-direction: column;
    justify-content: center;
    text-align: center;
}}
/* TEXT */
h1 {
  color: #f5c400;
  font-size: 28px;
  margin-bottom: 15px;
}

.standard {
  font-size: 15px;
  line-height: 1.6;
  color: #e0e0e0;
}

.box {
  background: #111;
  border-left: 5px solid #f5c400;
  padding: 15px 20px;
  margin-top: 20px;
}

.box h3 {
  margin: 0 0 10px;
  color: #f5c400;
  font-size: 16px;
}

.box ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.box li {
  margin-bottom: 8px;
  font-size: 14px;color:#fff;
}

/* IMAGE */
.image-area {
  background: #000;
  border: 1px solid #333;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.image-area img {
  max-width: 100%;
  height: auto;
}.poster {
  max-width: 1200px;
  margin: auto;
  background: #0f0f0f;margin-top: 80px;
}

/* HEADER */
.poster-header {
  background: #ffd400;
  color: #000;
  font-weight: 800;
  padding: 14px 24px;
  font-size: 14px;
  letter-spacing: 0.5px;
}

/* TOP SECTION */
.topp {
  display: grid;
  grid-template-columns: 320px 1fr;
  gap: 30px;
  padding: 30px;
}

/* LEGEND */
.legend {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.legend-item {
  display: flex;
  gap: 14px;
  background: #151515;
  padding: 14px;
  border-radius: 10px;
  box-shadow: inset 0 0 0 1px rgba(255,255,255,0.06);
}
.legend-item strong{color:#fff;}
.legend-item p {
  font-size: 12px;
  color: #bbb;
}

/* ICONS */
.icon {
  min-width: 34px;
  height: 34px;
  border-radius: 6px;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
}

.icon.yellow { background: #ffd400; color: #000; }
.icon.blue   { background: #212122; }
.icon.red    { background: #ff3b3b; }

/* HERO */
.hero11 {
  background: #000;
  border-radius: 16px;
  overflow: hidden;
}

.hero11 img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}


/* RESPONSIVE */
@media (max-width: 900px) {
  .topp {
    grid-template-columns: 1fr;
  }
}



.page2 {
  display: flex;
  min-height: 100vh;
}

/* ===== SIDEBAR ===== */
.sidebar2 {
  width: 300px;
  background: linear-gradient(180deg, #0f0f0f, #070707);
  padding: 40px 25px;
  border-right: 1px solid rgba(255,255,255,0.08);
}

.sidebar2 h2 {
  font-size: 18px;padding: 10px;
  margin-bottom: 25px;
  background: #ffc400;
}

.features2 {
  list-style: none;
}

.features2 li {
  display: flex;
  align-items: center;
  margin-bottom: 14px;
  font-size: 14px;
  color: #ddd;
  opacity: 0.9;
}

/* ===== TAGS ===== */
.tag1 {
  width: 38px;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 12px;
  border-radius: 6px;
  margin-right: 12px;
  background: linear-gradient(145deg, #2c2c2c, #151515);
  box-shadow: inset 0 0 0 1px rgba(255,255,255,0.08);
}

.tag1.red {
  background: linear-gradient(145deg, #ff4d4d, #b30000);
}

.tag1.blue {
  background: linear-gradient(145deg, #3fa9f5, #0b4f8a);
}

/* ===== CONTENT ===== */
.content2 {
  flex: 1;
  padding: 60px;
}

.content2 h1 {
  font-size: 32px;
  font-weight: 900;
  margin-bottom: 10px;
  background: #ffc400;
}

.content2 h3 {
  font-weight: 400;
  margin-bottom: 50px;
  color: #ccc;text-align:left;
}

/* ===== GRID ===== */
.grid2{
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
}

/* ===== CARDS ===== */
.seci {
  position: relative;
  padding: 30px 30px 35px;
  background: linear-gradient(180deg, #141414, #0b0b0b);
  border-radius: 16px;
  box-shadow:
    0 20px 40px rgba(0,0,0,0.6),
    inset 0 0 0 1px rgba(255,255,255,0.06);
  overflow: hidden;
}

.seci::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  height: 4px;
  width: 100%;
  background: linear-gradient(90deg, #ffd84d, #ff9f1c);
}

.seci h4 {
  font-size: 20px;
  margin-bottom: 12px;color:#fff;
}

.small-title {
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: #ffb703;
  margin-top: 16px;
}

.seci p,
.seci li {
  font-size: 14px;
  line-height: 1.7;
  color: #ddd;
}

.seci ul {
  margin-left: 20px;
  margin-top: 8px;
}

/* ===== HOVER EFFECT ===== */
.seci:hover {
  transform: translateY(-6px);
  transition: 0.3s ease;
  box-shadow:
    0 30px 60px rgba(0,0,0,0.8),
    inset 0 0 0 1px rgba(255,255,255,0.12);
}

/* ===== DIVIDER ===== */
.seci + .seci {
  border-top: 1px solid rgba(255,255,255,0.05);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 900px) {
  .page2 {
    flex-direction: column;
  }

  .sidebar2 {
    width: 100%;
  }

  .grid2 {
    grid-template-columns: 1fr;
  }

  .content2 {
    padding: 40px 20px;
  }
}


@media (max-width:440px){
  .protection-section::before{
    left:12px;
  }
}