.padding-bottom10 {
  padding-bottom: 10px;
}

.padding-bottom20 {
  padding-bottom: 20px;
}

.margin-top20 {
  margin-top: 20px;
}


@media (max-width: 450px) {
  .about-section .title-content {
    padding-left: 10px;
  }
}

@media (max-width: 1199px) {
  .about-section .about--wwa .title-section .title-content {
    padding-left: 20px;
    margin-top: 20px;
  }
}

.padding-bottom50 {
  padding-bottom: 50px;
}

.padding-bottom70 {
  padding-bottom: 70px;
}

.padding-right20 {
  padding-right: 20px;
}
.padding-top50 {
  padding-top: 50px;
}

.padding-top70 {
  padding-top: 70px;
}

.header-logo img {
  width: 85%;
  height: auto;
}

/* hamburder mobile only*/
.header-right {
  display: none !important;
}

@media (max-width: 1200px) {
  .header-right {
    display: block !important;
  }
}
/* hamburder mobile only*/

/* custom submenu start */
.custom-mega-menu {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 30px;
  padding: 20px;
}

@media (max-width: 1200px) {
  .custom-mega-menu {
    display: block;
  }

  .mega-column {
    margin-bottom: 20px;
  }
}

.header-main .main-menu ul li .submenu.custom-mega-menu {
  left: 50%;
  transform: translateX(-50%) translateY(10px);
  width: 1000px;
}

/* Mobile */
@media (max-width: 992px) {
  .header-main .main-menu ul li .submenu.custom-mega-menu {
    width: 100%;
    display: block;
    padding: 10px 0;
  }

  .mega-column {
    margin-bottom: 20px;
  }
}
/* custom submenu end */

/* custom submenu start 2 */
.custom-mega-menu2 {
  display: grid;
  /* grid-template-columns: repeat(2, 1fr); */
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 30px;
  padding: 20px;
}

@media (max-width: 1200px) {
  .custom-mega-menu2 {
    display: block;
  }
}

.header-main .main-menu ul li .submenu.custom-mega-menu2 {
  left: 50%;
  transform: translateX(-50%);
  width: 270px;
}

/* Mobile */
@media (max-width: 992px) {
  .header-main .main-menu ul li .submenu.custom-mega-menu2 {
    width: 100%;
    display: block;
    padding: 10px 0;
  }
}

.custom-mega-menu li a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -3px !important;
    width: 0;
    height: 2px;
    background: #000000 !;
    transition: 0.3s;
}

/* custom submenu end */

/* custom submenu mobilefix end 1 */
/* keep submenu closed initially */
.mean-container .submenu.custom-mega-menu{
    display:none;
}

.mean-container .submenu.custom-mega-menu2{
    display:none;
}

/* open when parent is active */
.mean-container .menu-item-has-children.active > .submenu{
    display:block;
}

/* keep brand product lists visible */
.mean-container .custom-mega-menu .mega-column ul{
    display:block !important;
}

.mean-container .custom-mega-menu2 .mega-column ul{
    display:block !important;
}

/* remove extra + icons inside brands */
.mean-container .custom-mega-menu .mean-expand{
    display:none !important;
}

.mean-container .custom-mega-menu2 .mean-expand{
    display:none !important;
}
/* custom submenu mobilefix end*/

.brand--logo {
  padding-bottom: 10px;
  width: 50%;
}

.para--space {
  width: 100%;
  margin-bottom: 15px;
  text-align: justify;
}

/* parallex images end */
.parallax {
  position: relative;
  background-image: url("../images/intro/parralex.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-attachment: fixed; /* Parallax Effect */
}

.parallax::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
  z-index: 1;
}

.service-wrapper {
  position: relative;
  z-index: 2;
}

.parallax--content {
  color: #ffffff;
  letter-spacing: 3px;
}
/* parallex images end */

.service-card.style1 {
  position: relative;
  background: linear-gradient(
    145deg,
    rgba(80, 0, 0, 0.5),
    rgba(20, 0, 0, 0.5),
    transparent
  );
  border-radius: 16px;
  padding: 30px 25px;
  overflow: hidden;
  transition: all 0.4s ease;
  border: 2px solid rgba(255, 0, 0, 0.2);
}

/* Glow border effect */
.service-card.style1::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 16px;
  padding: 1px;
  background: linear-gradient(120deg, rgba(255, 0, 0, 0.6), transparent);
  -webkit-mask:
    linear-gradient(#fff 0 0) content-box,
    linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
}

/* Inner glow */
.service-card.style1::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(
    circle at top left,
    rgba(255, 0, 0, 0.2),
    transparent 60%
  );
  opacity: 0;
  transition: 0.4s;
}

/* Hover effect */
.service-card.style1:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: 0 10px 40px rgba(255, 0, 0, 0.25);
}

.service-card.style1:hover::after {
  opacity: 1;
}

/* Content styling */
.service-card .content h3 a {
  color: #fff !important;
  font-size: 20px;
  font-weight: 600;
  background: linear-gradient(45deg, #ffffff, var(--glow, #eb1e01));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  filter: drop-shadow(0 0 5px var(--glow, rgba(250, 30, 0.3)));
  animation: title-glow 3s ease-in-out infinite alternate;
}

@keyframes title-glow {
  0% {
    filter: drop-shadow(0 0 5px var(--glow, rgba(250, 30, 0.3)));
  }
  100% {
    filter: drop-shadow(0 0 15px var(--glow, rgba(250, 30, 0.7)));
  }
}

.service-card .content p {
  color: #fff !important;
}

/* Icon styling */
.service-card .icon-box {
  display: flex;
  align-items: center;
  gap: 15px;
  margin: 15px 0;
}

.service-card .icon-box img {
  width: 40px;
  filter: brightness(0) saturate(100%) invert(20%) sepia(90%) saturate(5000%)
    hue-rotate(0deg);
}

/* Number styling */
.service-card .icon-box span {
  font-size: 20px;
  font-weight: 600;
  color: #fff !important;
}

/* Divider line like UI */
.service-card .content::after {
  content: "";
  display: block;
  height: 1px;
  width: 100%;
  margin: 15px 0;
  background: linear-gradient(
    to right,
    transparent,
    rgba(255, 255, 255, 0.3),
    transparent
  );
}

.bg--2 {
  background-color: var(--theme2);
}

.bg--3{
  background-color: #f8f8f8;
}

.box--shadow {
  transition: 0.5s all ease-in-out;
  box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
}

.text--black h3 {
  color: #000 !important;
}

.offcanvas__info .offcanvas__contact-text a {
  font-size: 14px;
}

/* intro image slider start Here*/

.heroFlowBox {
  position: relative;
  width: 100%;
  height: 800px;
  overflow: hidden;
}

.heroFlowBox::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(
    circle at center,
    rgba(0, 0, 0, 0.65) 0%,
    rgba(0, 0, 0, 0.45) 35%,
    rgba(0, 0, 0, 0.25) 60%,
    rgba(0, 0, 0, 0) 100%
  );
  z-index: 5;
}

/* slides */
.heroPanel {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.heroPanel img {
  width: 100%;
  height: 100%;
  background-position: center;
  background-repeat: no-repeat;
  /* object-fit: cover; */
}

/* wipe animation */
.heroRevealFX {
  clip-path: inset(0 0 0 100%);
  animation: heroWipeMotion 1.2s ease forwards;
  z-index: 2;
}

@keyframes heroWipeMotion {
  0% {
    clip-path: inset(0 0 0 100%);
  }

  100% {
    clip-path: inset(0 0 0 0);
  }
}

.heroContentLayer {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: white;
  z-index: 20;
  max-width: 700px;
  text-align: center;
}

.heroContentLayer h2 {
  margin-bottom: 20px;
  color: #fff;
  text-align: center;
  text-shadow: 0 4px 15px rgba(0, 0, 0, 0.6);
  line-height: 1.5;
  letter-spacing: 2px;
}

.title-big-text {
  color: #ff4433;
}

.heroContentLayer p {
  font-size: 18px;
  opacity: 0.9;
  line-height: 1.6;
}

.heroArrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  font-size: 30px;
  color: white;
  border: none;
  background: none;
  cursor: pointer;
  opacity: 0.35;
  transition: all 0.3s ease;
  mix-blend-mode: overlay;
  z-index: 30;
}

.heroLeft {
  left: 50px;
}

.heroRight {
  right: 50px;
}

.heroArrow:hover {
  opacity: 1;
  filter: brightness(200%);
}

@media (max-width: 991px) {
  .heroFlowBox {
    height: 500px;
  }

  .heroContentLayer {
    margin-top: 5%;
  }

  .heroContentLayer h2 {
    font-size: 20px;
  }

  .heroArrow {
    margin-top: 5%;
    font-size: 20px;
  }
}

@media (max-width: 576px) {
  .heroFlowBox {
    height: 320px;
  }

  .heroContentLayer {
    margin-top: 10%;
  }

  .heroContentLayer h2 {
    font-size: 14px;
  }

  .heroContentLayer p {
    font-size: 14px;
  }

  .heroArrow {
    margin-top: 10%;
    font-size: 15px;
  }
}

/* intro image slider start*/

/* breadcrumb contact start*/
.breadcumb {
  background-image: url(../images/slider/contact.png);
  background: url("../images/slider/contact.png") center center / cover no-repeat;
  min-height: 380px;
  height: 60vh;
  display: flex;
  align-items: center;
}

.breadcumb::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.45); /* dark overlay */
}

.breadcumb-wrapper {
  position: relative;
  width: 100%;
  z-index: 2;
}

.page-heading {
  display: flex;
  flex-direction: column;
}

/* Tablet */
@media (max-width: 991px) {
  .breadcumb {
    height: 45vh;
  }

}

/* Mobile */
@media (max-width: 576px) {
  .breadcumb {
    height: 40vh;
  }

  .page-heading{
    margin-top: 30%;
  }
}
/* breadcrumb contact end*/

/* breadcrumb about start*/
.breadcumb--about {
  /* background-image: url(../images/slider/about.png) !important; */
  background: url("../images/slider/about.png") center center / cover no-repeat !important;
  min-height: 380px;
  height: 60vh;
  display: flex;
  align-items: center;
}

.breadcumb--brands {
  background: url("../images/slider/products.png") center center / cover no-repeat !important;
  min-height: 380px;
  height: 60vh;
  display: flex;
  align-items: center;
}


.video-box-area .video-box .abt--thumb2 img {
  border-radius: 0px !important;
  border-right: 10px solid #d32716;
}

.video-box-area .video-box .abt--thumb2 {
    margin-right: 0px;
}

/* whatsapp float function strat */
.whatsapp-float{
    position: fixed;
    bottom: 100px;
    right: 28px;
    width: 55px;
    height: 55px;
    background: #25D366;
    color: white;
    border-radius: 50%;
    text-align: center;
    font-size: 28px;
    line-height: 55px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.3);
    z-index: 9999;
    transition: 0.3s;
}

.whatsapp-float:hover{
    background:#20b858;
    transform: scale(1.1);
}
/* whatsapp float function end */

/* about testimonial start */
.testimonial--wrapper{
  display: flex;
  gap: 30px;
}

.testimonial-wrapper.style2 .testimonial-inner .right-content {
    padding-top: 15px;
}

.testimonial-wrapper.style2 .testimonial-inner .right-content li {
    color: var(--white);
    font-size: 14px;
}

.testimonial-wrapper.style2 .testimonial-inner .right-content li::before {
    content: "\f101";
    position: relative;
    color: var(--white);
    font-family: "Font Awesome 6 Pro";
    font-size: 14px;
    font-weight: 900;
    line-height: normal;
    margin-right: 15px;
}

.about--wwa{
  display: flex !important;
  align-items: center !important;
}
/* about testimonial end */

/* .brand-logo-wrapper .swiper-wrapper .brand-logo img{
  width: auto;
  height: 70px;
} */

.brand-logo-wrapper .slider-area {
    width: 100%;
}

.brand-logo-wrapper .swiper-slide {
    height: auto;
    display: flex;
    align-items: center;
    justify-content: center;
}

.brand-logo {
    width: 100%;
    height: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.brand-logo img {
    max-width: 100%;
    max-height: 70px;
    width: auto;
    height: auto;
    object-fit: contain;
}

