/* ===== LOADER ===== */
#loader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 99999999;
  transition: opacity 1s ease, visibility 1s ease;
}

#loader.hide {
  opacity: 0;
  visibility: hidden;
}

/* ===== TEXT ANIMATION ===== */
.loader-text {
  position: relative;
  font-family: var(--title-font);
  font-weight: 700;
  font-size: 80px;
  color: #292929; /* base light color */
  overflow: hidden;
}

.loader-text::before {
  content: attr(data-text);
  position: absolute;
  top: 0;
  left: 0;
  width: 0%;
  height: 100%;
  color: #ffcc00; /* yellow highlight color */
  white-space: nowrap;
  overflow: hidden;
  border-right: 2px solid #ffcc00;
  animation: fillText 4s ease-in-out forwards;
}

/* ===== ANIMATIONS ===== */
@keyframes fillText {
  0% {
    width: 0%;
  }
  50% {
    width: 100%;
  }
  100% {
    width: 100%;
    border-right: 0;
  }
}

/* ===== MAIN SITE ===== */
body {
  margin: 0;
  background: #f8f9fb;
}

.main-content {
  opacity: 0;
  transition: opacity 1s ease;
  text-align: center;
  font-family: "Poppins", sans-serif;
  margin-top: 200px;
}

body.loaded .main-content {
  opacity: 1;
}






/* web site top header */
.top-header{
  background-color: var(--primary-light-color);
  padding: 15px 0;
  margin: 0;
}

.top-header .icon-block{
  padding:0;
  margin: 0;
}

.top-header .left-block {
  padding: 0;
  margin: 0;
}

.top-header .left-block .icon-block .icon{
  text-decoration: none;
  color: #fff !important;
  padding:0;
  margin: 0;
}

.top-header .icon-block .icon i{
font-size: clamp(0.875rem, 0.8287rem + 0.2469vw, 1.125rem);
  color: #fff !important;
  padding:0;
  margin: 0;
}

.top-header .icon-block a{
font-family: var(--semi-title-font);
font-style: normal;
font-weight: 400;
font-size: 13px;
line-height: 1.2;
text-decoration: none;
color: #FFFFFF;
  padding:0;
  margin: 0;
}

/* header */
header{
  position: absolute;
  z-index: 9999;
  width: 100%;
background: rgba(0, 0, 0, 0.4);
  padding: 15px 0;
  margin: 0;
  transition: 0.4s;
}

header .logo-block{
  width: 300px;
  padding:  0;
  margin: 0;
}

header .primary-btn i{
  font-size: 22px;
  line-height: 1;
}
/* banner */
.banner {
  position: relative;
  overflow: hidden;
  width: 100%;
  height: 730px;
  overflow: hidden;
}
.banner .worker-block {
  position: absolute;
  z-index: 99;
  bottom: -100%;
  left: 42%;
  transition: bottom 1.2s ease-out;
}

/* When section visible */
.banner.show .worker-block {
  bottom: 0;
}

.banner .left-block{
  background-color: var(--primary-light-color);
  overflow: hidden;
  width: 100%;
  height: 746px;
  overflow: hidden;
}
.banner .col-xxl-7 , .col-xx-7 , .col-lg-7 , .col-xxl-5 , .col-xx-5 , .col-lg-5{
  padding: 0;
}

/* Content inside section */
.banner .left-block .hero-text {
  position: absolute;
  top: 36%;
  left: 12%;
  max-width: 40%;
}

.banner .left-block .hero-text h1 {
  font-family: var(--title-font);
  font-weight: 700;
  font-size: clamp(1.875rem, 1.4352rem + 2.3457vw, 4.25rem);
  color: #292929;
  margin-bottom: 25px;
  line-height: 1.1;
}

.banner .left-block .hero-text p {
  font-family: var(--regular-font);
  font-weight: 400;
  font-size: clamp(0.875rem, 0.8056rem + 0.3704vw, 1.25rem);
  color: #292929;
  max-width: 70%;
  margin-bottom: 25px;
  line-height: 1.4;
}

.banner .left-block .hero-text .primary-btn {
  background-color: #292929;
  color: var(--primary-light-color);
}

/* Animation */
.word {
  opacity: 0;
  transform: translateY(15px);
  display: inline-block;
  animation: fadeUp 0.6s forwards;
}

@keyframes fadeUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.banner .right-block{
  padding: 0;
  margin: 0;
}

.banner .right-block .video-block{
  width: 100%;
  height: 730px;
  overflow: hidden;
  padding: 0;
  margin: 0;
}

.banner .right-block .video-block video{
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
/* support both possible class names in case of typo */
.banner .right-block  .brad-logo,
.banner .right-block .brad-loog {
  position: absolute;
  top: 19%;
  right: 3%;
  z-index: 9;
  padding: 0;
  margin: 0;

  /* make sure transform can affect the element */
  display: block;               /* or inline-block if you prefer */
  transform-origin: 50% 50%;
  -webkit-transform-origin: 50% 50%;
  will-change: transform;
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;

  /* animation */
  -webkit-animation: rotateSoft 12s linear infinite !important;
  animation: rotateSoft 12s linear infinite !important;
}

/* Keyframes with prefix */
@-webkit-keyframes rotateSoft {
  0%   { -webkit-transform: rotate(0deg); transform: rotate(0deg); }
  100% { -webkit-transform: rotate(360deg); transform: rotate(360deg); }
}
@keyframes rotateSoft {
  0%   { -webkit-transform: rotate(0deg); transform: rotate(0deg); }
  100% { -webkit-transform: rotate(360deg); transform: rotate(360deg); }
}

/* Optional: debug helper — temporarily visible border to ensure the element is present */
.banner .right-block .brad-logo.debug,
.banner .right-block .brad-loog.debug {
  outline: 2px dashed rgba(255,0,0,0.6);
}


/* verified */
.verified{
  background-color: #151515;
  padding: 40px 0;
  margin: 0;
}

.verified .content{
  padding:0;
  margin: 0;
}
.verified .text-content .icon-block {
  width: 87px;
  height: 87px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  margin: 0 auto;
  background: linear-gradient(135deg, #6a11cb, #2575fc);
  box-shadow: 0 0 20px rgba(37, 117, 252, 0.3);
  animation: bgShift 6s ease-in-out infinite;
  transition: all 0.5s ease;
  perspective: 600px;
}

.verified .text-content .icon-block i {
font-size: clamp(1.5rem, 1.3843rem + 0.6173vw, 2.125rem);
  color: #ffffff;
  animation: iconFlip 4s ease-in-out infinite, iconColor 6s ease-in-out infinite;
  transform-style: preserve-3d;
  transition: all 0.4s ease;
}

/* 🌈 Smooth gradient background transition */
@keyframes bgShift {
  0% {
    background: linear-gradient(135deg, #F29B06, #ecc40e);
    box-shadow: 0 0 20px rgba(37, 117, 252, 0.3);
  }
  50% {
    background: linear-gradient(135deg, #ecc40e,  #F29B06);
    box-shadow: 0 0 30px rgba(106, 17, 203, 0.4);
  }
  100% {
    background: linear-gradient(135deg,  #F29B06, #ecc40e);
    box-shadow: 0 0 20px rgba(37, 117, 252, 0.3);
  }
}

/* 🔁 Icon 3D flip animation */
@keyframes iconFlip {
  0%, 100% {
    transform: rotateY(0deg);
  }
  50% {
    transform: rotateY(180deg);
  }
}

/* 🎨 Icon color shift animation */
@keyframes iconColor {
  0%, 100% {
    color: #ffffff;
    text-shadow: 0 0 10px rgba(49, 49, 49, 0.562);
  }
  50% {
    color: #202020;
    text-shadow: 0 0 20px rgba(0, 255, 224, 0.8);
  }
}


.verified .text-content h4{
font-family:var(--regular-font);
font-weight: 600;
font-size: clamp(1.25rem, 1.2037rem + 0.2469vw, 1.5rem);
line-height: 1.1;
text-align: center;
color: #FFFFFF;
padding: 0;
margin-top: 10px;

}

.verified .text-content p{
font-family:var(--regular-font);
font-style: normal;
font-weight: 400;
font-size: 14px;
line-height: 1.2;
text-align: center;
color: #E4E4E4;
padding: 0;
margin-top: 10px;
}

.verified .text-content a{
font-family:var(--regular-font);
font-style: normal;
font-weight: 700;
text-transform: capitalize;
text-decoration: none;
font-size: clamp(1rem, 0.9769rem + 0.1235vw, 1.125rem);
line-height: 1.1;
color: #F29B06;
padding: 0;
margin-top: 20px;
}

.verified .text-content a i{
font-size: 18px;
line-height: 1.1;
color: #F29B06;
}

/* about-us */
.about-us {
  position: relative;
  background: url('../images/about-bgi.png') center/cover no-repeat; /* 🔹 Replace with your image path */
  width: 100%;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  background-position: top;
  background-attachment: fixed;
  padding: 50px 0;
  margin: 0;
}

/* Overlay (Gradient + Blur + Light Shade) */
.about-us::before {
  content: "";
  position: absolute;
  inset: 0;
background: linear-gradient(
  180deg,
  rgba(249, 243, 225, 0.6) 0%,
  rgba(249, 245, 225, 0.2) 100%
);
backdrop-filter: blur(6px);
-webkit-backdrop-filter: blur(6px);

}

/* Content */
.about-us .img-block , .img-block2 , .text-content {
  position: relative;
  z-index: 2;
}
.about-us .img-block{
  width: 100%;
  height: 460px;
  overflow: hidden;
}

.about-us .img-block2{
  width: 100%;
  height: 230px;
  overflow: hidden;
}

.about-us .img-block img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.about-us .img-block2 img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.about-us .text-content{
  padding: 0;
  margin: 0;
}

.about-us .text-content h4{
font-family: var(--semi-regular-font);
font-style: normal;
font-weight: 400;
text-transform: capitalize;
font-size: clamp(1.75rem, 1.7037rem + 0.2469vw, 2rem);
line-height: 1.1;
color: var(--primary-light-color);
  padding: 0;
  margin-bottom: 20px;
}

.about-us .text-content h5{
font-family: var(--title-font);
font-style: normal;
font-weight: 600;
font-size: clamp(2rem, 1.9074rem + 0.4938vw, 2.5rem);
line-height: 1.2;
color: #333333;
padding: 0;
  margin-bottom: 14px;

}

.about-us .text-content p{
font-family:var(--regular-font);
font-style: normal;
font-weight: 400;
font-size: clamp(1rem, 0.9769rem + 0.1235vw, 1.125rem);
line-height: 1.2;
color: #525252;
padding: 0;
margin-bottom: 24px;

}
.about-us .text-content .primary-btn{
  border-radius: 0;
}

.about-us .text-content .counter{
  background-color: var(--primary-light-color);
  padding: 15px;
  width: 500px;
  margin-top: 30px;
}

.about-us .text-content .counter .status{
padding: 0;
margin: 0;
}

.about-us .text-content .counter .status h3{
font-family: var(--regular-font);
font-style: normal;
font-weight: 600;
font-size: clamp(1.875rem, 1.7593rem + 0.6173vw, 2.5rem);
line-height: 1.2;
color: #EDF0F5;
padding: 0;
margin-bottom: 10px;
}

.about-us .text-content .counter .status p{
font-family: var(--semi-regular-font);
font-style: normal;
font-weight: 700;
font-size: clamp(0.875rem, 0.8519rem + 0.1235vw, 1rem);
line-height: 1.1;
color: #EDF0F5;
padding: 0;
margin: 0 !important;
}

/* our-products */
.our-products{
  background-color: #f7f1e6;
  padding: 50px 0;
  
}
.our-products .product{
  background-color: #E1EBF9;
  padding: 0;
  margin: 0 8px;
}
.our-products .product .img-block{
overflow: hidden;
  padding: 0;
  margin: 0;
}

.our-products .product .img-block img{
width: 100%;
height: 100%;
object-fit: cover;
object-position: center;
  padding: 0;
  margin: 0;
}

.our-products .product .text-content{
  padding: 15px;
  background-color: var(--primary-light-color);
  margin: 0;
}

.our-products .product .text-content h4{
font-family: var(--semi-regular-font);
font-style: normal;
font-weight: 500;
font-size: clamp(1.5rem, 1.3611rem + 0.7407vw, 2.25rem);
line-height: 1.1;
color: #FFFFFF;
  padding: 0;
  margin-top: 10px;
}

.our-products .product .text-content p{
font-family:var(--regular-font);
font-style: normal;
font-weight: 400;
font-size: clamp(1rem, 0.9769rem + 0.1235vw, 1.125rem);
line-height: 23px;
color: #EFEFEF;
  padding: 0;
  margin-top: 10px;
}

.our-products .product .text-content .primary-btn{
  background-color: #ffffff;
  color: var(--primary-light-color);
  border-radius: 0;
}

.our-products  button.slick-prev.slick-arrow {
border: none;
background-color: var(--primary-light-color);
border-radius: 50%;
width: 83px;
height: 83px;
position: absolute;
top: 50%;
left: -7%;
}

 .our-products  button.slick-next.slick-arrow{
border: none;
background-color: var(--primary-light-color);
border-radius: 50%;
width: 83px;
height: 83px;
position: absolute;
top: 50%;
right: -7%;
}

.our-products  button.slick-prev.slick-arrow i  {
font-size: clamp(1.875rem, 1.7593rem + 0.6173vw, 2.5rem);
  color: #fff;
}

.our-products  button.slick-next.slick-arrow i  {
font-size: clamp(1.875rem, 1.7593rem + 0.6173vw, 2.5rem);
  color: #fff;
}


/* Our Aplications */
.aplications {
  padding: 50px 0;
  margin: 0;
  background: linear-gradient(
    180deg,
    rgba(249, 241, 225, 0.85) 0%,
    rgba(249, 246, 225, 0.4) 100%
  ),
  url('../images/aplication-bgi.png');  /* change image path */
  background-size: cover;
  background-position: center;
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  background-attachment: fixed;
}


.aplications .aplication{
  padding:0;
  margin: 30px 0;
  position: relative;
}
.aplications .aplication .icon-block {
  width: 96px;
  height: 96px;
  background: radial-gradient(circle at 30% 30%, #7207F4, #4B00C9);
  border-radius: 50%;
  border: 5px solid #fff;
  display: grid;
  place-items: center;
  position: absolute;
  left: 50%;
  top: -15%;
  transform: translateX(-50%);
  box-shadow: 0 0 25px rgba(114, 7, 244, 0.5);
  animation: floatUpDown 4s ease-in-out infinite, bgFlow 6s ease-in-out infinite;
  overflow: hidden;
}

/* rotating inner glow ring */
.aplications .aplication .icon-block::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: conic-gradient(
    rgba(255, 255, 255, 0.05),
    rgba(255, 255, 255, 0.4),
    rgba(255, 255, 255, 0.05)
  );
  animation: rotateGlow 8s linear infinite;
  z-index: 0;
}

.aplications .aplication .icon-block i {
font-size: clamp(1.5rem, 1.4306rem + 0.3704vw, 1.875rem);
  color: #ffffff;
  line-height: 0;
  z-index: 1;
  animation: iconPulse 3s ease-in-out infinite;
  text-shadow: 0 0 12px rgba(250, 165, 38, 0.8);
}

/* 🌈 smooth purple gradient flow */
@keyframes bgFlow {
  0%, 100% {
    background: radial-gradient(circle at 30% 30%, #F29B06, #f37813);
    box-shadow: 0 0 25px rgba(244, 141, 7, 0.5);
  }
  50% {
    background: radial-gradient(circle at 70% 70%, #f37813, #F29B06);
    box-shadow: 0 0 35px #ee8906c0;
  }
}

/* 🔄 rotating conic glow */
@keyframes rotateGlow {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

/* 🌬 floating bounce effect */
@keyframes floatUpDown {
  0%, 100% {
    transform: translateX(-50%) translateY(0);
  }
  50% {
    transform: translateX(-50%) translateY(-10px);
  }
}

/* 💡 icon pulse and glow */
@keyframes iconPulse {
  0%, 100% {
    transform: scale(1);
    color: #ffffff;
  }
  50% {
    transform: scale(1.15);
    color: #292929;
  }
}


.aplications .aplication .img-block{
  overflow: hidden;
  width: 100%;
  height: 250px;
  border-radius: 5px;
  padding:0;
  margin: 0;
}

.aplications .aplication .img-block img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  padding:0;
  margin: 0;
}

.aplications .aplication .text-content{
  padding: 10px;
  margin: 0;
}

.aplications .aplication .text-content h4{
font-family: var(--semi-regular-font);
font-weight: 600;
font-size: clamp(1.5rem, 1.4074rem + 0.4938vw, 2rem);
line-height: 1.2;
color: #373737;
text-align: center;
  padding: 0;
  margin-bottom: 10px;
}
.aplications .aplication .text-content p{
font-family: var(--regular-font);
font-style: normal;
font-weight: 400;
font-size: clamp(0.875rem, 0.8519rem + 0.1235vw, 1rem);
line-height: 20px;
text-align: center;
color: #353535;

}


/* Why Choose us */
.why-Choose{
  padding: 50px 0;
  margin: 0;
  background-color: #151515;
}

.why-Choose .section-semi-title{
color: #fff;
}

.why-Choose .img-block{
  width: 100%;
  height: 300px;
  overflow: hidden;
}

.why-Choose .img-block img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position:center;
}

.why-Choose .text-content{
padding: 0;
margin: 0;
}

.why-Choose .text-content h4{
font-family: var(--regular-font);
font-style: normal;
font-weight: 500;
font-size: clamp(1.875rem, 1.7593rem + 0.6173vw, 2.5rem);
line-height: 1.1;
color: #E6E6E6;
padding: 0;
margin-bottom: 20px;
}

.why-Choose .text-content p{
font-family: var(--regular-font);
font-style: normal;
font-weight: 400;
font-size: clamp(0.875rem, 0.8287rem + 0.2469vw, 1.125rem);
line-height: 1.1;
color: #A7A7A7;
padding: 0;
margin-bottom: 30px;
}

.why-Choose .text-content .primary-btn{
  border-radius: 0;
}

.why-Choose .all-cards .card{
border: none;
border-radius: 0;
padding: 15px;
background-color: var(--primary-light-color);
cursor: pointer;
}

.why-Choose .all-cards{
margin-top: 60px;
position: relative;
margin-bottom: -130px;

}
.why-Choose .all-cards .card i {
font-size: clamp(1.75rem, 1.588rem + 0.8642vw, 2.625rem);
  color: #ffffff;
  text-align: center;
  margin-bottom: 12px;
  display: inline-block;
  animation: handMotion 2s ease-in-out infinite, handGlow 3.5s ease-in-out infinite;
  text-shadow: 0 0 15px rgba(255, 255, 255, 0.4);
  transition: all 0.4s ease;
}

/* 👇 Bounce + Tilt Motion */
@keyframes handMotion {
  0% {
    transform: translateY(0) rotate(0deg) scale(1);
  }
  20% {
    transform: translateY(6px) rotate(5deg) scale(1.05);
  }
  40% {
    transform: translateY(-3px) rotate(-3deg) scale(0.98);
  }
  60% {
    transform: translateY(6px) rotate(3deg) scale(1.04);
  }
  80% {
    transform: translateY(-2px) rotate(-2deg) scale(1);
  }
  100% {
    transform: translateY(0) rotate(0deg) scale(1);
  }
}

/* 💡 Vibrant Glow + Color Pulse */
@keyframes handGlow {
  0%, 100% {
    color: #ffffff;
    text-shadow:
      0 0 10px rgba(255, 255, 255, 0.4),
      0 0 20px rgba(114, 7, 244, 0.3);
  }
  50% {
    color: #7207F4; /* main violet tone */
    text-shadow:
      0 0 20px rgba(114, 7, 244, 0.7),
      0 0 40px rgba(178, 130, 255, 0.8),
      0 0 60px rgba(114, 7, 244, 0.5);
  }
}

/* ✨ Optional: Make it react stronger on hover */
.why-Choose .all-cards .card i:hover {
  animation: handMotion 1.2s ease-in-out infinite, handGlow 2s ease-in-out infinite;
  transform: scale(1.1);
  text-shadow:
    0 0 25px rgba(178, 130, 255, 0.9),
    0 0 40px rgba(114, 7, 244, 0.8);
}


.why-Choose .all-cards .card h6{
font-family: var(--regular-font);
font-style: normal;
font-weight: 600;
font-size: clamp(1.25rem, 1.2037rem + 0.2469vw, 1.5rem);
line-height: 1.1;
text-align: center;
color: #FFFFFF;
margin-bottom: 6px;
padding: 0;
}

.why-Choose .all-cards .card p{
font-family:var(--regular-font);
font-style: normal;
font-weight: 400;
font-size: clamp(0.875rem, 0.8519rem + 0.1235vw, 1rem);
line-height: 1.3;
text-align: center;
color: #CACACA;
margin: 0;
padding: 0;
}

.why-Choose .all-cards .card-light{
border: none;
border-radius: 0;
padding: 15px;
background-color: #f7f1e6;
cursor: pointer;
}

.why-Choose .all-cards .card-light i {
font-size: clamp(1.75rem, 1.588rem + 0.8642vw, 2.625rem);
  color: #373737;
  display: block;
  text-align: center !important;
  margin-bottom: 12px;
  animation: handMotionLight 2s ease-in-out infinite, handGlowLight 3.5s ease-in-out infinite;
  text-shadow: 0 0 6px rgba(55, 55, 55, 0.3);
  transition: all 0.4s ease;
}

/* 👇 same bounce + tilt as dark version */
@keyframes handMotionLight {
  0% {
    transform: translateY(0) rotate(0deg) scale(1);
  }
  20% {
    transform: translateY(6px) rotate(5deg) scale(1.05);
  }
  40% {
    transform: translateY(-3px) rotate(-3deg) scale(0.98);
  }
  60% {
    transform: translateY(6px) rotate(3deg) scale(1.04);
  }
  80% {
    transform: translateY(-2px) rotate(-2deg) scale(1);
  }
  100% {
    transform: translateY(0) rotate(0deg) scale(1);
  }
}

/* 💡 subtle dark-to-purple glow effect */
@keyframes handGlowLight {
  0%, 100% {
    color: #373737;
    text-shadow:
      0 0 6px rgba(55, 55, 55, 0.2),
      0 0 10px rgba(114, 7, 244, 0.2);
  }
  50% {
    color: #7207F4; /* violet accent */
    text-shadow:
      0 0 15px rgba(114, 7, 244, 0.5),
      0 0 25px rgba(178, 130, 255, 0.6);
  }
}

/* 🌟 optional hover boost */
.why-Choose .all-cards .card-light i:hover {
  animation: handMotionLight 1.3s ease-in-out infinite, handGlowLight 2s ease-in-out infinite;
  transform: scale(1.1);
  text-shadow:
    0 0 25px rgba(114, 7, 244, 0.8),
    0 0 40px rgba(178, 130, 255, 0.9);
}


.why-Choose .all-cards .card-light h6{
font-family: var(--regular-font);
font-style: normal;
font-weight: 600;
font-size: clamp(1.25rem, 1.2037rem + 0.2469vw, 1.5rem);
line-height: 1.1;
text-align: center;
color: #373737;
margin-bottom: 6px;
padding: 0;
}

.why-Choose .all-cards .card-light p{
font-family:var(--regular-font);
font-style: normal;
font-weight: 400;
font-size: clamp(0.875rem, 0.8519rem + 0.1235vw, 1rem);
line-height: 1.3;
text-align: center;
color: #373737;
margin: 0;
padding: 0;
}

.why-Choose > .col-xl-3 , .col-lg-3{
padding: 0 !important;
margin: 0 !important;
}

/* Our Category */
.our-categories{
   background-color: #f7f1e6;
  padding: 130px 0 50px 0;
  margin: 0;
}
.our-categories .card{
  border-radius: 0 !important;
  border: none;
  width: 100%;
  height: 550px;
  border: 1px solid #ccc;
  overflow: hidden;
  position: relative;
  margin-bottom: 30px;
}

.our-categories .card img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.our-categories .text-content{
  position: absolute;
  top: 65%;
  width: 100% !important;
  background-color: #2D2D2D;
padding: 10px;
margin: 0;
}

.our-categories .text-content .left-block{
padding: 0;
margin: 0;
}

.our-categories .text-content .left-block h6{
font-family:var(--semi-regular-font);
font-style: normal;
font-weight: 600;
font-size: clamp(1.375rem, 1.3171rem + 0.3086vw, 1.6875rem);
line-height: 1.1;
color: #FFFFFF;
margin-bottom: 8px;
padding: 0;
}

.our-categories .text-content .left-block p{
font-family: var(--regular-font);
font-style: normal;
font-weight: 400;
font-size: clamp(0.875rem, 0.8519rem + 0.1235vw, 1rem);
line-height: 1.3;
color: #EFEFEF;
margin-bottom: 6px;
padding: 0;
}

.our-categories .text-content .right{
padding: 0;
margin: 0;
}
.our-categories .text-content .right {
  width: 78px;
  height: 76px;
  border-radius: 6px;
  background-color: var(--primary-light-color);
  display: grid;
  place-items: center;
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.15);
  animation: bgPulse 3.5s ease-in-out infinite;
  transition: all 0.4s ease;
  overflow: hidden;
}

/* link + icon base */
.our-categories .text-content .right a {
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
}

.our-categories .text-content .right a i {
  font-size: clamp(1.5rem, 1.3611rem + 0.7407vw, 2.25rem);
  color: #fff;
  animation: arrowSlide 1.8s ease-in-out infinite;
  transition: all 0.4s ease;
}

/* 🌈 background pulsing (light → deep → light) */
@keyframes bgPulse {
  0%, 100% {
    background-color: var(--primary-light-color);
    box-shadow: 0 0 5px rgba(7, 149, 244, 0.3);
  }
  50% {
    background-color: #f36513; /* deeper tone of #7207F4 */
    box-shadow: 0 0 12px rgba(244, 114, 7, 0.6);
  }
}

/* ➡️ icon “slide right” effect */
@keyframes arrowSlide {
  0% {
    transform: translateX(0);
    opacity: 1;
  }
  40% {
    transform: translateX(8px);
    opacity: 0.8;
  }
  60% {
    transform: translateX(-4px);
    opacity: 0.9;
  }
  100% {
    transform: translateX(0);
    opacity: 1;
  }
}

/* ✨ optional hover boost */
.our-categories .text-content .right:hover {
  background-color: #7207F4;
  box-shadow: 0 0 25px rgba(114, 7, 244, 0.6);
}

.our-categories .text-content .right:hover a i {
  transform: translateX(6px);
  transition: transform 0.3s ease;
}


.our-categories .primary-btn{
  border-radius: 0;
  display: block;
  margin: 0 auto;
  width: fit-content;
  margin-top: 30px;
}

/* client-testimonials */
.client-testimonials{
  background-color: #151515;
  padding: 50px 0;
  margin: 0;
}

.client-testimonials .all-clients{
  padding:0;
  margin-top: 30px !important;
}

.client-testimonials .all-clients .client{
  padding:0;
  margin: 0;
}

.client-testimonials .all-clients .client .profile {
    width: 1000px !important;
    padding: 0;
    margin: 0;
}

.client-testimonials .all-clients .client .profile .img-block{
  width: 89px;
  height: 89px;
  border: 2px solid #fff;
  border-radius: 30% !important;
  overflow: hidden;
  padding:0;
  margin: 0;
}

.client-testimonials .all-clients .client .profile .img-block img{
width: 100%;
height: 100%;
object-fit: cover;
  padding:0;
  margin: 0;
}

.client-testimonials .all-clients .client .profile .details{
  padding: 0;
  margin: 0;
}

.client-testimonials .all-clients .client .profile .details h4{
font-family: var(--semi-regular-font);
font-style: normal;
font-weight: 700;
font-size: clamp(1rem, 0.9537rem + 0.2469vw, 1.25rem);
line-height: 1.1;
color: #FFFFFF;
  padding: 0;
}

.client-testimonials .all-clients .client .profile .details p{
font-family: var(--regular-font);
font-style: normal;
font-weight: 400;
font-size: clamp(0.75rem, 0.7269rem + 0.1235vw, 0.875rem);
line-height: 1.1;
color: #F4F4F4;
  padding: 0;
  margin: 0;
}

.client-testimonials .all-clients .client .description{
  border-left: 3px solid #4D4D4D;
  padding: 0;
  margin: 0;
}

.client-testimonials .all-clients .client .description p{
font-family: var(--regular-font);
font-style: normal;
font-weight: 500;
font-size: clamp(1.125rem, 1.0556rem + 0.3704vw, 1.5rem);
line-height: 1.3;
color: #FFFFFF;
  padding: 0;
  margin-left: 30px;
}

.client-testimonials .all-clients .client .description li {
    position: absolute;
    top: -6%;
}

button.slick-next.slick-arrow {
    width: 47px;
    height: 47px;
    border-radius: 50%;
    border: none;
    background: rgba(255, 255, 255, 0.51);
    position: absolute;
    right: 0;
    top: -12%;
}

button.slick-next.slick-arrow i {
color: #fff;
font-size: 20px;
}

button.slick-prev.slick-arrow {
    width: 47px;
    height: 47px;
    border-radius: 50%;
    border: none;
    background: rgba(255, 255, 255, 0.51);
    position: absolute;
    right: 5%;
    top: -12%;
}

button.slick-prev.slick-arrow i {
color: #fff;
font-size: 20px;
}

/* contact us */
.contact-us{
    background: linear-gradient(
    180deg,
    rgba(52, 137, 255, 0.85) 0%,
    rgba(175, 208, 255, 0.4) 100%
  ),
  url('../images/contact-usbgi.png');  /* change image path */
  background-size: cover;
  background-position: center;
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  background-attachment: fixed;
  padding: 50px 0 200px 0;
  margin: 0;
}

.contact-us .contact-bar{
background: rgba(247, 242, 236, 0.53);
border: 1px solid #FFFFFF;
}
.contact-us .contact-bar .map-box{
  width: 100%;
  height: 100%;
  overflow: hidden;
  padding: 0;
  margin: 0;
}

.contact-us .contact-bar .map-box iframe{ 
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  padding: 0;
  margin: 0;
}

.contact-us .contact-bar .form-block{
  padding: 15px 15px 15px 0;
  margin: 0;
}

.contact-us .contact-bar .form-block h4{
font-family: var(--semi-regular-font);
font-style: normal;
font-weight: 400;
font-size: clamp(1.75rem, 1.6574rem + 0.4938vw, 2.25rem);
line-height: 1.1;
color: #207CF4;
  padding: 0;
  margin-bottom: 8px;
}

.contact-us .contact-bar .form-block p{
font-family: var(--regular-font);
font-style: normal;
font-weight: 400;
font-size: clamp(1rem, 0.9769rem + 0.1235vw, 1.125rem);
line-height: 1.3;
color: #FFFFFF;
padding: 0;
margin-bottom: 20px;
}

.contact-us .contact-bar .form-block input , 
.contact-us .contact-bar .form-block textarea  {
  width: 100%;
  height: auto;
  padding: 10px;
  border-radius: 0;
  border: 1px solid var(--primary-light-color);
  margin-bottom: 10px;
}

.contact-us .contact-bar .form-block .primary-btn{
  border-radius: 0;
  margin-top: 30px;
}

/* footer */
footer{
  position: relative;
  border-radius: 154px 0 0 0;
  background-color: #151515;
  padding: 50px 0;
  margin-top: -140px;
}

footer .text-content{
  padding:0;
  margin: 0;
}

footer .text-content .logo-block{
  width: 300px;
  padding:0;
 margin-bottom: 20px;
}

footer .text-content .logo-block img{
  width: 100%;
  padding:0;
  margin: 0;
}
footer .text-content p{
font-family: var(--regular-font);
font-style: normal;
font-weight: 500;
font-size: clamp(0.875rem, 0.8519rem + 0.1235vw, 1rem);
line-height: 1.2;
color: #FFF6F6;
margin-top: -20px;
padding: 0;
}

footer .text-content h4{
font-family: var(--semi-regular-font);
font-style: normal;
text-transform: capitalize;
font-weight: 400;
font-size: clamp(1rem, 0.9537rem + 0.2469vw, 1.25rem);
line-height: 1.1;
color: var(--primary-light-color);
margin-bottom: 30px;
}
footer .text-content li{
  list-style: none;
  margin-bottom: 5px;
}
footer .text-content li a{
font-family: var(--regular-font);
font-style: normal;
font-weight: 500;
text-decoration: none;
text-transform: capitalize;
font-size: clamp(0.875rem, 0.8519rem + 0.1235vw, 1rem);
line-height: 1.2;
color: #FFF6F6;
padding: 0;
transition: 0.2s;
}
footer .text-content li a:hover{
  color: var(--primary-light-color);
}
footer .text-content .icon{
  width:40px;
  height:40px;
  border-radius: 50%;
  background-color: var(--primary-light-color);
  display: grid;
  place-items: center;
}
footer .text-content .icon a{
  text-decoration: none;
}
footer .text-content .icon a i{
color: #fff;
font-size: 20px;
line-height: 0;
}
/* Only hover effect — your normal CSS remains untouched */
footer .text-content .icon:hover {
  background: linear-gradient(135deg, #f37813, #e4730a);
  box-shadow: 0 0 20px rgba(244, 201, 7, 0.7), 0 0 30px rgba(236, 109, 5, 0.5);
  transform: scale(1.1);
  transition: all 0.4s ease;
}

footer .text-content .icon:hover a i {
  color: #ffffff;
  text-shadow:
    0 0 10px rgba(255, 255, 255, 0.7),
    0 0 20px rgba(178, 130, 255, 0.6);
}


.down-footer{
  background-color:var(--primary-light-color);
  padding: 15px 0;
  margin: 0;
}

.down-footer a{
font-size: clamp(1.125rem, 1.1019rem + 0.1235vw, 1.25rem);
  font-weight: 500;
  color: #fff;
  font-family: var(--regular-font);
  padding:0;
  margin: 0;
}

/* fixed icon */
.fixed-icons {
  position: fixed;
  right: 20px;
  top: 60%;
  display: flex;
  flex-direction: column;
  gap: 20px;
  z-index: 99999999;
}

.fixed-icons .icon {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  color: #fff;
  font-size: 30px;
  background: #25d366; /* WhatsApp color */
  text-decoration: none;
  box-shadow: 0 4px 15px rgba(0,0,0,0.3);
  transition: all 0.3s ease;
  animation: bounce 2s infinite;
  overflow: hidden;
}

/* Mail color */
.fixed-icons .icon.mail {
  background: #0072c6; /* mail color */
}

/* Animated border using ::before */
.fixed-icons .icon::before {
  content: "";
  position: absolute;
  top: -5px;
  left: -5px;
  width: calc(100% + 10px);
  height: calc(100% + 10px);
  border-radius: 50%;
  border: 2px solid #fff;
  animation: borderBlend 3s linear infinite;
  opacity: 0.5;
}

/* Bounce animation */
@keyframes bounce {
  0%, 20%, 50%, 80%, 100% { transform: translateY(0); }
  40% { transform: translateY(-10px); }
  60% { transform: translateY(-5px); }
}

/* Border blending animation */
@keyframes borderBlend {
  0% { transform: rotate(0deg); border-color: #fff; }
  25% { transform: rotate(90deg); border-color: #ff0; }
  50% { transform: rotate(180deg); border-color: #f0f; }
  75% { transform: rotate(270deg); border-color: #0ff; }
  100% { transform: rotate(360deg); border-color: #fff; }
}

/* Hover effect */
.fixed-icons .icon:hover {
  transform: scale(1.2) rotate(10deg);
  box-shadow: 0 8px 20px rgba(0,0,0,0.5);
}

/* Responsive */
@media (max-width: 768px) {
  .fixed-icons {
    right: 10px;
    top: 35%;
  }
  .fixed-icons .icon {
    width: 50px;
    height: 50px;
    font-size: 24px;
  }
  .fixed-icons .icon::before {
    width: calc(100% + 8px);
    height: calc(100% + 8px);
  }
}


.fixed-icons .icon.scroll-top {
  background: var(--primary-light-color); /* orange color for scroll up */
  position: relative;
  cursor: pointer;
  transition: all 0.3s ease;
  animation: bounce 2s infinite;
  border: none;
}

/* Hover effect */
.fixed-icons .icon.scroll-top:hover {
  transform: scale(1.2) rotate(10deg);

}

/* Animated border (same as other icons) */
.fixed-icons .icon.scroll-top::before {
  content: "";
  position: absolute;
  top: -5px;
  left: -5px;
  width: calc(100% + 10px);
  height: calc(100% + 10px);
  border-radius: 50%;
  border: 2px solid #fff;
  animation: borderBlend 3s linear infinite;
  opacity: 0.5;
}

body.scroll-down header{
    position: fixed;
    margin-top: -49px;
    backdrop-filter: blur(20px);
}

body.scroll-up header{
    position: fixed;
    margin-top: -49px;
    backdrop-filter: blur(20px);
  
}


/* INNER PAGE STYLE */
.inner-banners{
    width: 100%;
    height: 470px;
    overflow: hidden;
    position: relative;
}
.inner-banners .video-block {
  width: 100%;
  height: 100%;
  overflow: hidden; /* important to hide overflow edges */
  position: relative;
}

.inner-banners .video-block video {
  width: 100%;
  height: 100%;
  object-fit: cover;       /* fills the div completely */
  object-position: center; /* keeps focus centered */
  position: absolute;      /* ensures it stretches properly */
  top: 0;
  left: 0;
}

.inner-banners .dark-shade{
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(223, 191, 10, 0.329), rgba(39, 39, 39, 1.2));
    position: absolute;
    z-index: 2;
    top: 0;
}
.inner-banners h2{
font-family: var(--semi-regular-font);
font-size: clamp(1rem, 0.5096rem + 2.6154vw, 3.125rem);;
text-transform: capitalize;
color: #fff;
position: absolute;
z-index: 4;
top: 50%;
left: 50%;
transform: translate(-50%, -50%);
}


ol.breadcrumb.breadcrumb-center {
    position: absolute;
    z-index: 9 !important;
    top: 70%;
    left: 50%;
    transform: translate(-50%,-50%);
}

ol.breadcrumb.breadcrumb-center li a{
    font-family: var(--regular-font);
    font-size: clamp(0.9375rem, 0.8654rem + 0.3846vw, 1.25rem);
    color: #ffff;
    font-weight: 700;
    white-space: nowrap;
    text-decoration: none;
    transition: 0.3s;    
}

ol.breadcrumb.breadcrumb-center li a:hover{
    color: var(--theme-color);
}

ol.breadcrumb.breadcrumb-center li {
    font-family: var(--regular-font);
    font-size: clamp(0.9375rem, 0.8654rem + 0.3846vw, 1.25rem);
    color: #ffff;
    white-space: nowrap;
    font-weight: 500;
    text-decoration: none;
    margin-left: -5px;
    
}

/* inner-categories */
.inner-categories{
  padding: 50px 0;
  margin: 0;
  background-color: #f7f1e6;
}

.inner-categories .section-title{
  text-align: left;
  margin-bottom: 30px;
  padding: 0;
}

.inner-categories .inner-card{
  background-color: #cecece;
  padding: 15px;
  margin: 25px 0;
  box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
}

.inner-categories .inner-card .img-block{
  width: 100%;
  height: auto;
  overflow: hidden;
}

.inner-categories .inner-card .img-block img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.inner-categories .inner-card .text-content{
padding: 0;
margin: 0;
}

.inner-categories .inner-card .text-content h4{
  font-family: var(--semi-regular-font);
  font-size: clamp(2.5rem, 2.7308rem + -1.2308vw, 1.5rem);
  font-weight: 600;
  line-height: 1;
  text-transform: capitalize;
  color: #2b2b2b;
padding: 0;
margin-bottom: 25px;
}

.inner-categories .inner-card .text-content p{
  font-family: var(--regular-font);
  font-size: clamp(0.875rem, 0.8173rem + 0.3077vw, 1.125rem);
  font-weight: 400;
  line-height: 1.3;
  color: #424242;
padding: 0;
margin-bottom: 25px;
}

/* details */

.product-details {
  background-color: #f7f1e6;
    padding: 50px 0;
    margin: 0;
}

.product-details  .inner-card{
    margin: 30px 0;
}

.product-details  .inner-card .img-block {
    width: 100%;  
    display: flex;
    justify-content: center;
    object-fit: cover;
    overflow: hidden;
    padding-bottom: 30px;
    box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
}


.product-details .inner-card .img-block img {
    width: 100%;
    height: auto;
    object-fit: cover;
    overflow: hidden;
}

.product-details .inner-card  .sticky {
    position: sticky;
    top: 100px;
}

 .sticky {
    position: sticky;
    top: 110px;
}

.product-details .inner-card .text-content{
    padding: 0;
    margin: 0;
}

.product-details .inner-card .text-content h4{
    font-family: var(--semi-regular-font);
    font-size: clamp(1.5rem, 1.3269rem + 0.9231vw, 2.25rem);
    font-weight: 600;
    color: #1d1d1d;
    text-transform: capitalize;
    padding: 0;
    margin-bottom: 30px;
}

.product-details .inner-card .text-content p{
    font-family: var(--regular-font);
    font-size: clamp(0.75rem, 0.6923rem + 0.3077vw, 1rem);
    font-weight: 400;
    color: #1d1d1d;
    text-transform: capitalize;
    padding: 0;
    margin-bottom: 20px; 
}

.product-details .specifications {
  margin: 20px 0;
}

.product-details .specifications h3 {
    font-family: var(--regular-font);
    color: #303030;
  font-size: 20px;
  font-weight: bold;
  margin-bottom: 15px;
  border-bottom: 2px solid #eee;
  padding-bottom: 5px;
}

.product-details .spec-table {
  width: 100%;
  border-collapse: collapse;
  font-family: Arial, sans-serif;
  font-size: 15px;
}

.product-details .spec-table td {
    font-family: var(--regular-font);
    font-size: 16px;
    color: #2c2b2b;
  border: 1px solid #b4b4b4;
  padding: 10px 12px;
  vertical-align: top;
}

.product-details .spec-table td strong{
    font-family: var(--regular-font);
    font-size: 18px;
    color: #e0e0e0;
}
.product-details .spec-table td:first-child {
  width: 30%;
  font-weight: bold;
  background: #fff4b7;
}


/* inner about */
.inner-about{
    background-color: #f7f1e6;
  padding: 60px 0;
}

.inner-about .sticky {
    position: sticky;
    top: 0;
}

.inner-about .sticky .left-block {
   padding: 0;
   margin: 0;
}

.inner-about .sticky .left-block .img-block{
  width: 100%;
  height: 450px;
  padding: 15px !important;
  overflow: hidden;
   padding: 0;
   margin: 15px 0;
}

.inner-about .sticky .left-block .img-block img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
   padding: 0;
   margin: 0;
}

.inner-about .right-block{
  padding: 0;
  margin: 0;
}

.inner-about .right-block .text-content{
  padding: 5px;
  margin: 0;
}

.inner-about .right-block .text-content i{
  font-size: 36px;
  color:#fff;
  padding:12px;
  margin: 0;
}

.inner-about .right-block .text-content h5{
  font-family: var(--title-font);
  font-size: clamp(1.375rem, 1.2308rem + 0.7692vw, 2rem);
  font-weight: 700;
  color: #fff;
  background-color:var(--primary-light-color);
  text-transform: capitalize;
  margin-top: 30px;
  padding: 10px;
  display: flex;
  align-items: center;
  gap: 15px;
}

.inner-about .right-block h3{
  font-family: var(--title-font);
  font-size: 40px;
  font-weight: 700;
  color: #272727;
  text-transform: capitalize;
  margin-top: 40px;
  margin-bottom: -15px;
  max-width: fit-content;
  border-bottom: 4px solid var(--primary-light-color);
}

.inner-about .right-block .text-content h6{
  font-family: var(--regular-font);
  font-size: clamp(0.9375rem, 0.8942rem + 0.2308vw, 1.125rem);
  color: #181818cc;
  font-weight: 500;
  line-height: 1.5;
  margin:0; 
  padding: 12px ;
  background-color: #fdf0b4;
}
