.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;
  margin-top: 10px;
}

/* 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;
}


/* =====================================mobile canvas */

.offcanvas__contact ul li {
    align-items: flex-start !important;
    gap: 14px;
}

.offcanvas__contact-icon {
    width: 22px;
    min-width: 22px;
    margin-right: 0 !important;
    padding-top: 3px;
    display: flex;
    justify-content: center;
}

.offcanvas__contact-text {
    flex: 1;
    min-width: 0;
    line-height: 1.7;
}

.offcanvas__contact-text a,
.offcanvas__contact-text span {
    font-size: 15px;
    font-weight: 600;
    color: #111;
    word-break: normal;
}

.offcanvas__contact-text .phone-wrap {
    display: flex;
    flex-wrap: wrap;
    gap: 4px 6px;
}

.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: linear-gradient(
    to right,
    rgba(0, 0, 0, 0.4) 0%,
    rgba(0, 0, 0, 0.4) 35%,
    rgba(0, 0, 0, 0) 100%
  );
}

.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/banners/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;
}

/* ============================================================== download popup*/

.download-modal {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.65);
  z-index: 999999;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.download-modal.active {
  display: flex;
}

.download-modal-box {
  width: 100%;
  max-width: 460px;
  background: #fff;
  border-radius: 22px;
  padding: 38px 34px;
  position: relative;
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.22);
  animation: downloadModalAnim 0.3s ease;
}

@keyframes downloadModalAnim {
  from {
    opacity: 0;
    transform: translateY(20px) scale(0.96);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

.download-close {
  position: absolute;
  top: 12px;
  right: 18px;
  border: 0;
  background: transparent;
  font-size: 32px;
  cursor: pointer;
  color: #222;
}

.download-modal-box h3 {
  margin-bottom: 10px;
  font-size: 30px;
  font-weight: 800;
  color: #111;
}

.download-modal-box p {
  margin-bottom: 24px;
  color: #666;
  line-height: 1.7;
  font-size: 15px;
}

.download-form-group {
  margin-bottom: 15px;
}

.download-form-group input {
  width: 100%;
  height: 54px;
  border: 1px solid #ddd;
  border-radius: 12px;
  padding: 0 18px;
  font-size: 15px;
  outline: none;
  transition: 0.3s ease;
}

.download-form-group input:focus {
  border-color: #d32716;
}

.download-submit-btn {
  width: 100%;
  height: 54px;
  border: 0;
  border-radius: 12px;
  background: #d32716;
  color: #fff;
  font-size: 15px;
  font-weight: 800;
  cursor: pointer;
  transition: 0.3s ease;
}

.download-submit-btn:hover {
  background: #b51f11;
}

@media (max-width: 575px) {
  .download-modal-box {
    padding: 34px 22px;
    border-radius: 18px;
  }

  .download-modal-box h3 {
    font-size: 24px;
  }
}



/* =========================================================
   ABOUT IMAGE SIDE
========================================================= */

.about-video-content,
.video-box-area,
.video-box,
.video-thumb.abt--thumb2 {
    width: 100%;
}

.video-thumb.abt--thumb2 img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: left center;
    display: block;
}

/* 1200px+ */
@media (min-width: 1200px) {
    .video-thumb.abt--thumb2 {
        height: 340px;
    }
}

/* 992px - 1199px */
@media (min-width: 992px) and (max-width: 1199.98px) {
    .video-thumb.abt--thumb2 {
        height: 310px;
        border-right-width: 10px;
    }
}

/* 768px - 991px */
@media (min-width: 768px) and (max-width: 991.98px) {
    .video-thumb.abt--thumb2 {
        height: 360px;
        border-right: 0;
        margin-bottom: 30px;
    }
}

/* 576px - 767px */
@media (min-width: 576px) and (max-width: 767.98px) {
    .video-thumb.abt--thumb2 {
        height: 300px;
        border-right: 0;
        margin-bottom: 26px;
    }
}

/* 375px - 575px */
@media (min-width: 375px) and (max-width: 575.98px) {
    .video-thumb.abt--thumb2 {
        height: 240px;
        border-right: 0;
        margin-bottom: 22px;
    }
}

/* below 375px */
@media (max-width: 374.98px) {
    .video-thumb.abt--thumb2 {
        height: 220px;
        border-right: 0;
        margin-bottom: 20px;
    }
}

/* ========================================================download sucess */
.download-success-box {
    text-align: center;
    padding: 10px 0 4px;
}

.download-success-icon {
    width: 52px;
    height: 52px;
    margin: 0 auto 14px;
    border-radius: 50%;
    background: #18b15f;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 22px;
}

.download-success-box h4 {
    margin: 0 0 8px;
    font-size: 26px;
    font-weight: 800;
    color: #151515;
}

.download-success-box p {
    margin: 0 0 22px;
    font-size: 15px;
    color: #666;
}

.download-success-box .download-submit-btn {
    width: 100%;
    display: block;
    text-align: center;
    text-decoration: none;
}

.download-success-box {
    text-align: center;
    padding: 26px 0 6px;
    animation: successFadeUp 0.45s ease forwards;
}

.success-checkmark {
    width: 64px;
    height: 64px;
    margin: 0 auto 18px;
    border-radius: 50%;
    background: linear-gradient(135deg, #13b866, #0b8f4c);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
    box-shadow: 0 14px 35px rgba(19, 184, 102, 0.28);
    animation: successPop 0.45s ease forwards;
}

.download-success-box h4 {
    margin: 0 0 8px;
    font-size: 28px;
    line-height: 1.1;
    font-weight: 800;
    color: #171717;
}

.download-success-box p {
    max-width: 330px;
    margin: 0 auto 24px;
    font-size: 15px;
    line-height: 1.5;
    color: #666;
}

.download-success-box .download-submit-btn {
    width: 100%;
    height: 54px;
    border-radius: 12px;
    background: #e1251b;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-weight: 800;
    text-decoration: none;
    transition: 0.25s ease;
}

.download-success-box .download-submit-btn:hover {
    background: #c91f16;
    color: #ffffff !important;
    transform: translateY(-2px);
    box-shadow: 0 12px 28px rgba(225, 37, 27, 0.28);
}

@keyframes successFadeUp {
    from {
        opacity: 0;
        transform: translateY(14px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes successPop {
    0% {
        opacity: 0;
        transform: scale(0.65);
    }
    70% {
        transform: scale(1.08);
    }
    100% {
        opacity: 1;
        transform: scale(1);
    }
}