/*-----------------------------------------------------------------------------------

    CSS INDEX
    ===================

    01. Theme default CSS
	02. Header
    03. Hero
	04. Footer

-----------------------------------------------------------------------------------*/
/*===========================
    01.COMMON css 
===========================*/
@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Poppins", sans-serif;
  font-weight: normal;
  font-style: normal;
  color: #5a5872;
}
html,
body {
  overflow-x: hidden;
  max-width: 100%;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
.wow {
  visibility: hidden;
}

.animated {
  visibility: visible !important;
}
img {
  max-width: 100%;
  height:auto;
}

a:focus,
input:focus,
textarea:focus,
button:focus {
  text-decoration: none;
  outline: none;
}

a:focus,
a:hover {
  text-decoration: none;
}

i,
span,
a {
  display: inline-block;
  text-decoration: none;
}

audio,
canvas,
iframe,
img,
svg,
video {
  vertical-align: middle;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Poppins", sans-serif;
  font-weight: 700;
  color: #2b2a3d;
  margin: 0px;
}

h1 {
  font-size: 48px;
}

h2 {
  font-size: 36px;
}

h3 {
  font-size: 28px;
}

h4 {
  font-size: 22px;
}

h5 {
  font-size: 18px;
}

h6 {
  font-size: 16px;
}

ul,
ol {
  margin: 0px;
  padding: 0px;
  list-style-type: none;
}

p {
  font-size: 14px;
  font-weight: 400;
  line-height: 24px;
  color: #5a5872;
  margin: 0px;
}

.bg_cover {
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
  background-attachment: fixed;
  width: 100%;
  height: 100%;
}

/*===== All Button Style =====*/
.main-btn {
  display: inline-block;
  font-weight: 500;
  text-align: center;
  white-space: nowrap;
  vertical-align: middle;
  user-select: none;
  border: 0;
  border-radius: 10px !important;
  padding: 0 40px;
  font-size: 16px;
  height: 55px;
  line-height: 55px;
  border-radius: 0;
  color: #fff;
  cursor: pointer;
  z-index: 5;
  transition: all 0.4s ease-out 0s;
  background-color: #e84e4e;
}

.main-btn:hover {
  background-color: #ff6b6b;
  color: #fff;
}

@media (max-width: 767px) {
  .main-btn {
    padding: 0 20px;
    font-size: 12px;
  }
  .about_content .main-btn {
    margin-top: 10px !important;
    width: 40%;
    height: auto;
    line-height: 3rem;
  }
}
.about-btn {
  position: relative;
  overflow: hidden;
  display: block;
  font-weight: 400;
  text-align: center;
  cursor: pointer;
  background-color: #fff;
  border: 1px solid #e84e4e;
  color: #e84e4e;
  padding: 0.375rem 0.75rem;
  margin: 10px auto 0;
  width: 120px;
  font-size: 1rem;
  line-height: 1.5;
  border-radius: 0.25rem;
  transition: color 0.3s ease;
  z-index: 1;
}

/* fill layer */
.about-btn::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  background-color: #e84e4e;
  transform: scaleY(0);
  transform-origin: bottom;
  transition: transform 0.3s ease;
  z-index: -1;
}

/* hover */
.about-btn:hover::before {
  transform: scaleY(1);
}

.about-btn:hover {
  color: #fff;
}

/*===== All Section Title Style =====*/
.section_title .title {
  font-size: 40px;
  font-weight: 700;
}

/* ===== FIXED CENTER LINE ===== */
.infinite-line {
  width: 160px;
  height: 3px;
  /* background: #d9d9d9; */
  margin: 10px auto;
  position: relative;
  overflow: hidden;
}

.infinite-line::before {
  content: "";
  width: 50px;
  height: 3px;
  background: #e84e4e;
  position: absolute;

  animation: scanner 2s cubic-bezier(0.4, 0, 0.2, 1) infinite;
}

@keyframes scanner {
  from {
    left: -50px;
  }
  to {
    left: 180px;
  }
}

.section_title p {
  margin-top: 15px;
  font-size: 18px;
  color: #9e9db3;
}

.section_title.section_title_2 .title,
.section_title.section_title_2 p {
  color: #fff;
}
.dildo {
    background-color: #e84e4e;
  width: 90%;
  margin-right: auto;
  border-bottom-right-radius: 100px;
  border-top-right-radius: 100px;
}
.dildo2 {
  background-color: #e84e4e;
  position: relative;
  width: 90%;
  border-bottom-left-radius: 100px;
  border-top-left-radius: 100px;
  margin-left: auto;
}

/*===== All Preloader Style =====*/
.preloader {
  position: fixed;
  inset: 0;
  background: #ffffff;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 99999;
}

.loader-video {
  width: clamp(160px, 35vw, 280px);
  height: auto;
}

/*===========================
     02.HEADER css 
===========================*/
/*===== NAVBAR =====*/
.header_navbar {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 999;
  background-color: #fff;
  transition: all 0.3s ease-out 0s;
}

.sticky {
  position: fixed;
  z-index: 99;
  background-color: #fff;
  box-shadow: 0px 20px 50px 0px rgba(0, 0, 0, 0.25);
  transition: all 0.3s ease-out 0s;
}

.sticky .navbar {
  padding: 15px 0;
}

.navbar {
  padding: 10px 0;
  border-radius: 5px;
  position: relative;
  transition: all 0.3s ease-out 0s;
  display: flex;
  justify-content: space-between !important;
}
.navbar-collapse {
  flex-grow: 0 !important;
}
.navbar-brand {
  padding: 0;
}

@media (max-width: 767px) {
  .navbar-brand img {
    width: 130px;
  }
}

.navbar-toggler {
  padding: 0;
  border: none !important;
  outline: none !important;
}

.navbar-toggler:focus {
  box-shadow: none;
}

.navbar-toggler .toggler-icon {
  width: 30px;
  height: 2px;
  background-color: #222;
  display: block;
  margin: 5px 0;
  position: relative;
  transition: all 0.3s ease-out 0s;
}

.navbar-toggler.active .toggler-icon:nth-of-type(1) {
  transform: rotate(45deg);
  top: 7px;
}

.navbar-toggler.active .toggler-icon:nth-of-type(2) {
  opacity: 0;
}

.navbar-toggler.active .toggler-icon:nth-of-type(3) {
  transform: rotate(135deg);
  top: -7px;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .navbar-collapse {
    position: absolute;
    top: 120%;
    left: 0;
    width: 100%;
    background-color: #fff;
    z-index: 9;
    box-shadow: 0px 15px 20px 0px rgba(0, 0, 0, 0.1);
    padding: 5px 12px;
    border-radius: 10px;
  }
}

@media (max-width: 767px) {
  .navbar-collapse {
    position: absolute;
    top: 120%;
    left: 0;
    width: 100%;
    background-color: #fff;
    z-index: 9;
    box-shadow: 0px 15px 20px 0px rgba(0, 0, 0, 0.1);
    padding: 5px 12px;
    border-radius: 10px;
  }
}

.navbar-nav .nav-item {
  position: relative;
  margin-left: 40px;
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .navbar-nav .nav-item {
    margin-left: 30px;
  }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .navbar-nav .nav-item {
    margin: 0;
  }
}

@media (max-width: 767px) {
  .navbar-nav .nav-item {
    margin: 0;
  }
}

.navbar-nav .nav-item a {
  font-size: 17px;
  font-weight: 400;
  color: #222;
  transition: all 0.3s ease-out 0s;
  padding: 10px 0;
  position: relative;
}

.navbar-nav .nav-item a::before {
  position: absolute;
  content: "";
  bottom: 0px;
  left: 0;
  width: 0;
  height: 3px;
  background-color: #e84e4e;
  transition: all 0.3s ease-out 0s;
}
.navbar-nav .nav-item a.active {
  color: #e84e4e;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .navbar-nav .nav-item a::before {
    display: none;
  }
}

@media (max-width: 767px) {
  .navbar-nav .nav-item a::before {
    display: none;
  }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .navbar-nav .nav-item a {
    display: block;
    padding: 5px 0;
    color: #222;
  }
}

@media (max-width: 767px) {
  .navbar-nav .nav-item a {
    display: block;
    padding: 4px 0;
    color: #222;
  }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .navbar-nav .nav-item a.active,
  .navbar-nav .nav-item a:hover {
    color: #e84e4e;
  }
}

@media (max-width: 767px) {
  .navbar-nav .nav-item a.active,
  .navbar-nav .nav-item a:hover {
    color: #e84e4e;
  }
}

.navbar-nav .nav-item a.active::before,
.navbar-nav .nav-item a:hover::before {
  width: 100%;
}

.navbar-nav .nav-item:hover .sub-menu {
  top: 100%;
  opacity: 1;
  visibility: visible;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .navbar-nav .nav-item:hover .sub-menu {
    top: 0;
  }
}

@media (max-width: 767px) {
  .navbar-nav .nav-item:hover .sub-menu {
    top: 0;
  }
}

.navbar-nav .nav-item .sub-menu {
  max-width: 200px;
  width: 100%;
  background-color: #fff;
  box-shadow: 0px 0px 20px 0px rgba(0, 0, 0, 0.1);
  position: absolute;
  top: 110%;
  left: 0;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease-out 0s;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .navbar-nav .nav-item .sub-menu {
    position: relative;
    width: 100%;
    top: 0;
    display: none;
    opacity: 1;
    visibility: visible;
  }
}

@media (max-width: 767px) {
  .navbar-nav .nav-item .sub-menu {
    position: relative;
    width: 100%;
    top: 0;
    display: none;
    opacity: 1;
    visibility: visible;
  }
}

.navbar-nav .nav-item .sub-menu li {
  display: block;
}

.navbar-nav .nav-item .sub-menu li a {
  display: block;
  padding: 8px 20px;
  color: #222;
}

.navbar-nav .nav-item .sub-menu li a.active,
.navbar-nav .nav-item .sub-menu li a:hover {
  padding-left: 25px;
  color: #e84e4e;
}

.navbar-nav .sub-nav-toggler {
  display: none;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .navbar-nav .sub-nav-toggler {
    display: block;
    position: absolute;
    right: 0;
    top: 0;
    background: none;
    color: #222;
    font-size: 18px;
    border: 0;
    width: 30px;
    height: 30px;
  }
}

@media (max-width: 767px) {
  .navbar-nav .sub-nav-toggler {
    display: block;
    position: absolute;
    right: 0;
    top: 0;
    background: none;
    color: #222;
    font-size: 18px;
    border: 0;
    width: 30px;
    height: 30px;
  }
}

.navbar-nav .sub-nav-toggler span {
  width: 8px;
  height: 8px;
  border-left: 1px solid #222;
  border-bottom: 1px solid #222;
  transform: rotate(-45deg);
  position: relative;
  top: -5px;
}

.sticky .navbar-toggler .toggler-icon {
  background-color: #222;
}

.sticky .navbar-nav .nav-item a {
  color: #222;
}

.sticky .navbar-nav .nav-item a::before {
  background-color: #e84e4e;
}

.sticky .navbar-nav .nav-item a.active,
.sticky .navbar-nav .nav-item a:hover {
  color: #e84e4e;
}

/*===== hero =====*/

/*.header_hero {*/
/*    position: relative;*/
/*    min-height: 100dvh;*/
/*    overflow: hidden;*/
/*}*/

/*.hero-bg {*/
/*    position: absolute;*/
/*    inset: 0;*/
/*    width: 100%;*/
/*    height: 100%;*/
/*    object-fit: cover;*/
/*    z-index: -1;*/
/*}*/

.single_hero {
  height: 750px;
  position: relative;
  overflow: hidden;
  z-index: 1;
}

@media only screen and (min-width: 1400px) {
  .single_hero {
    height: 950px;
  }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .single_hero {
    height: 700px;
  }
}

@media (max-width: 767px) {
  .single_hero {
    height: 650px;
  }
}

.single_hero::before {
  position: absolute;
  content: "";
  background-color: rgba(43, 42, 61, 0.7);
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  z-index: -1;
}

.hero_content {
  padding-top: 50px;
}

.hero_content .hero_title {
  font-size: 80px;
  line-height: 85px;
  color: #fff;
  margin-top: 15px;
}
.hero_content h4 {
  color: #fff;
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .hero_content .hero_title {
    font-size: 44px;
    line-height: 65px;
  }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .hero_content .hero_title {
    font-size: 40px;
    line-height: 60px;
  }
}

@media (max-width: 767px) {
  .hero_content .hero_title {
    font-size: 40px;
    line-height: 38px;
  }
}

@media only screen and (min-width: 576px) and (max-width: 767px) {
  .hero_content .hero_title {
    font-size: 40px;
    line-height: 60px;
  }
}

.hero_content .hero_title span {
  display: contents;
  color: #e84e4e;
}

.hero_content p {
  font-size: 18px;
  color: #fff;
  margin-top: 30px;
}

@media (max-width: 767px) {
  .hero_content p {
    font-size: 16px;
  }
}

.hero_content .main-btn {
  margin-top: 45px;
}

/*===========================
      03.FEATURES css 
===========================*/
.center-line {
  display: block;
  width: 25%;
  height: 3px;
  background: #e84e4e;
  margin: 60px auto 0;
}

.single_features {
  display: flex;
  flex-direction: column;
  height: 100%;
  padding: 25px;
}

/* icon area fixed */
.single_features .icon-wrap {
  /* min-height: 70px; */
  display: flex;
  align-items: center;
  justify-content: center;
}
.single_features i {
  font-size: 60px;
  line-height: 60px;
  color: #e84e4e;
  transition: all 0.3s ease-out 0s;
}

@media (max-width: 767px) {
  .single_features i {
    font-size: 40px;
    line-height: 45px;
  }
}

.single_features .features_title {
  min-height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #e84e4e;
}

.sub-title {
  color: #5a5872;
  font-size: 12px;
  font-weight: 200;
  transition: all 0.3s ease-out 0s;
}

.single_features .about-btn {
  margin-top: 10px;
}
@media (max-width: 767px) {
  .single_features .features_title {
    font-size: 24px;
  }
}

.single_features p {
  flex-grow: 1; /* take remaining space */
  margin-top: 15px;
  display: -webkit-box; /* optional clamp */
  -webkit-line-clamp: 4; /* same lines everywhere */
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.single_features:hover i {
  color: #e84e4e;
}

/*===========================
      04.ABOUT css 
===========================*/

.about_area {
  background-color: #fff;
  position: relative;
}

.about_image {
  position: absolute;
  top: 0;
  right: 0;
  width: 50%;
  height: 100%;
}

.about_image::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url("../../assets/images/in.webp") center / 100% no-repeat;
  transition:
    background-size 0.6s ease,
    transform 0.6s ease;
}

/* smooth zoom */
.about_image:hover::before {
  background-size: 108%;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .about_image {
    width: 100%;
    height: 500px;
    position: relative;
  }
}

@media (max-width: 767px) {
  .about_image {
    width: 100%;
    height: 400px;
    position: relative;
  }
}

.about_image .image_content {
  width: 185px;
  height: 185px;
  background-color: #e84e4e;
  display: table;
  text-align: center;
  position: relative;
  left: -92px;
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .about_image .image_content {
    width: 135px;
    height: 135px;
    left: -78px;
  }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .about_image .image_content {
    left: 0;
  }
}

@media (max-width: 767px) {
  .about_image .image_content {
    left: 0;
    width: 135px;
    height: 135px;
  }
}

.about_image .image_content .experience {
  font-size: 24px;
  color: #fff;
  font-weight: 500;
  display: table-cell;
  vertical-align: middle;
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .about_image .image_content .experience {
    font-size: 18px;
  }
}

@media (max-width: 767px) {
  .about_image .image_content .experience {
    font-size: 18px;
  }
}

.about_image .image_content .experience span {
  font-size: 44px;
  font-weight: 700;
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .about_image .image_content .experience span {
    font-size: 36px;
  }
}

@media (max-width: 767px) {
  .about_image .image_content .experience span {
    font-size: 36px;
  }
}

.about_content {
  padding-right: 50px;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .about_content {
    padding-right: 0;
  }
}

@media (max-width: 767px) {
  .about_content {
    padding-right: 0;
  }
}

.about_content .main-btn {
  margin-top: 30px;
  z-index: 99;
}

.values-section {
    /* padding: 70px 0 ; */
    background: #fff;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 20px;
    max-width: 1800px;
    margin: auto;
}

.value-card {
    background: #fff;
    padding: 35px 25px;
    border-radius: 14px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    transition: all 0.4s ease;
}

.value-card i {
    font-size: 40px;
    color: #cb2e2e;
    margin-bottom: 15px;
    transition: transform 0.4s ease;
}

.value-card h4 {
    font-size: 18px;
    margin-bottom: 12px;
}

.value-card p {
    font-size: 14.5px;
    color: #555;
    line-height: 1.6;
}

.value-card:hover {
    transform: translateY(-8px);
    box-shadow: 0rem 0rem 2rem rgb(237 88 88);
}

.value-card:hover i {
    transform: rotate(-10deg) scale(1.1);
}
.quality-statement {
    /*max-width: 1500px;*/
    margin: 40px auto;
    padding: 35px 40px;
    background: linear-gradient(135deg, #f9f9f9, #ffffff);
    border-left: 6px solid #cb2e2e;
    border-radius: 12px;
    font-size: 15.5px;
    line-height: 1.9;
    color: #444;
    text-align: justify;
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.08);
    position: relative;
    transition: 0.4s ease;
}
.quality-statement:hover {
    box-shadow: 1rem 2rem 2rem rgb(249 170 170);
    transform: translateY(-8px);
}
/* Decorative quote icon */
.quality-statement::before {
    content: "QUALITY & TRACEABILITY";
    position: absolute;
    top: -14px;
    left: 25px;
    background: #cb2e2e;
    color: #fff;
    font-size: 12px;
    padding: 6px 14px;
    border-radius: 30px;
    letter-spacing: 1px;
}

@media only screen and (max-width: 768px) {
    .quality-statement {
        margin: 30px 15px;     /* more space from edges */
        padding: 25px 20px;    /* reduce padding */
        font-size: 14.5px;
        line-height: 1.8;
    }

    .quality-statement::before {
        font-size: 10px;
        padding: 5px 10px;
        left: 15px;
    }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
    .quality-statement{
        margin: 30px 20px;
    }
}
@keyframes heartbeat {
    0% {
        transform: scale(1);
    }

    25% {
        transform: scale(1.06);
    }

    40% {
        transform: scale(1);
    }

    60% {
        transform: scale(1.06);
    }

    100% {
        transform: scale(1);
    }
}

.gallery {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
  gap: 20px;
}

.gallery-item {
    flex: 1 1 450px;
    max-width: 600px;
    aspect-ratio: 4 / 3;
    border-radius: 12px;
    overflow: hidden;
    position: relative;
    contain: layout paint;
}

/* Image */
.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    cursor: pointer;
    transform: scale(1);
    transition: transform 0.4s ease;
}

.gallery-item:hover img {
    transform: scale(1.05);
}

/* RED OVERLAY */
.gallery-item::after {
    content: "";
    position: absolute;
    inset: 0;
    background: rgb(209 74 74 / 40%);
    opacity: 0;
    transition: 0.4s;
    z-index: 1;
    pointer-events: none;
}

.gallery-item:hover::after {
    opacity: 1;
}

/* CAPTION */
.gallery-caption {
    position: absolute;
    inset: 0;
    padding: 25px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    color: #fff;
    opacity: 0;
    transform: translateY(15px);
    transition: 0.4s ease;
    z-index: 2;
    pointer-events: none;
}

.gallery-caption h5 {
    font-size: 20px;
    transform: translateY(10px);
    transition: opacity 0.4s ease, transform 0.4s ease;
    color: white;
}

.gallery-item:hover .gallery-caption {
    opacity: 1;
    transform: translateY(0);
}

.gallery-item:hover .gallery-caption h5 {
    opacity: 1;
    transform: translateY(0);
    transition-delay: 0.1s;
}

/* ARROW BASE STATE */
.gallery-caption h5 span {
    display: inline-block;
    margin-left: 8px;
    transform: rotate(0deg);
    transition: transform 0.4s ease;
    font-size: 20px;
}

/* ROTATE AFTER ALL ANIMATIONS + 1s WAIT */
.gallery-item:hover .gallery-caption h5 span {
    transform: rotate(315deg);
    transition-delay: 0.7s;
}

/* MOBILE */
@media (max-width: 768px) {
    .gallery-item {
        flex: 1 1 100%;
        max-width: 100%;
        aspect-ratio: 3 / 2;
    }
    .title2{
        font-size: 36px;
    }

    .gallery-caption {
        opacity: 0;
        transform: none;
        background: rgba(0, 0, 0, 0.4);
    }
}


#lightbox {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.85);
    display: none;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    z-index: 9999;
}

#lightbox img {
    max-width: 90%;
    max-height: 80%;
    border-radius: 12px;
}

#lightbox p {
    color: #fff;
    margin-top: 10px;
}
/*===========================
  PORTFOLIO LAYOUT
===========================*/
.portfolio_area {
  background: linear-gradient(135deg, var(--bg-light) 0%, #f1f5f9 100%);
  position: relative;
  overflow: hidden;
}

.portfolio_area::before {
  content: "";
  position: absolute;
  top: 50px;
  right: 100px;
  width: 400px;
  height: 400px;
  background: linear-gradient(135deg, #e21414, #cb2744);
  opacity: 0.04;
  border-radius: 50%;
  animation: pulse 4s ease-in-out infinite;
  pointer-events: none; /* 🔑 KEY LINE */
}
@media (max-width: 991px) {
  .portfolio_area::before {
    top: 0;
    right: -2px;
    width: 200px;
    height: 200px;
  }
}
.portfolio_wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
}

.single_portfolio {
  position: relative;
  width: calc(25% - 20px);
  height: 300px;
  overflow: hidden;
  border-radius: 12px;
  /* background: #111;  */
  transition: box-shadow 0.4s ease;
}

@media (max-width: 991px) {
  .single_portfolio {
    width: calc(50% - 20px);
  }
}

@media (max-width: 575px) {
  .portfolio_wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
  }
  .single_portfolio {
    width: 90%;
    margin-bottom: 10px;
  }
}

.portfolio_img {
  width: 100%;
  height: 100%;
}

.portfolio_img img {
  width: 100%;
  height: 100%;
  object-fit: initial;
  transition:
    transform 0.6s ease,
    filter 0.6s ease;
}
.portfolio_img::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 0.25),
    rgba(0, 0, 0, 0.05)
  );
  pointer-events: none;
}

.single_portfolio:hover .portfolio_img img {
  transform: translateY(-5%) scale(1.15);
}

.single_portfolio::before {
  content: "";
  position: absolute;
  inset: 0;

  background: rgba(232, 78, 78, 0.95);

  clip-path: circle(0% at 50% 50%);
  transition: clip-path 0.6s ease;

  z-index: 1;
}

.single_portfolio:hover::before {
  clip-path: circle(75% at 50% 50%);
}

.portfolio_content {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  opacity: 0;
  transform: translateY(40px);
  transition: all 0.5s ease;
  margin: 10px 0;
  padding: 0 10px;
}

.single_portfolio:hover .portfolio_content {
  opacity: 1;
  transform: translateY(0);
}
.portfolio_thumb {
  width: 120px;
  height: 120px;

  border-radius: 10px;
  margin-bottom: 5px;

  transform: rotate(-8deg) scale(0.8);
  transition: transform 0.5s ease;

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

.single_portfolio:hover .portfolio_thumb {
  transform: rotate(0deg) scale(1);
}

.portfolio_title {
  font-size: 22px;
  font-weight: 600;
  color: #fff;
  margin-top: 12px;
  letter-spacing: 1px;
}

.portfolio_subtitle {
  font-size: 14px;
  color: #ffecec;
  padding: 5px 0;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;

  overflow: hidden;
}

.portfolio-btn {
  display: block;

  background: #fff;
  border: 1px solid #e84e4e;

  color: #e84e4e;
  padding: 6px 12px;

  border-radius: 6px;
  transition: transform 0.3s ease;
}

.portfolio-btn:hover {
  transform: scale(1.1);
  color: #e84e4e;
}
.product-img-wrapper {
    background: linear-gradient(135deg, #f1f1f1, #ffffff);
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    overflow: hidden;
}

.product-img {
    max-width: 100%;
    transition: 0.6s ease;
    border-radius: 10px;
}

.product-img-wrapper:hover .product-img {
    animation: 2s linear flip;
}

@keyframes flip {
    from {
        -webkit-transform: perspective(400px) scale3d(1, 1, 1) translate3d(0, 0, 0) rotate3d(0, 1, 0, -360deg);
        transform: perspective(400px) scale3d(1, 1, 1) translate3d(0, 0, 0) rotate3d(0, 1, 0, -360deg);
        -webkit-animation-timing-function: ease-out;
        animation-timing-function: ease-out;
    }

    40% {
        -webkit-transform: perspective(400px) scale3d(1, 1, 1) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -190deg);
        transform: perspective(400px) scale3d(1, 1, 1) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -190deg);
        -webkit-animation-timing-function: ease-out;
        animation-timing-function: ease-out;
    }

    50% {
        -webkit-transform: perspective(400px) scale3d(1, 1, 1) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -170deg);
        transform: perspective(400px) scale3d(1, 1, 1) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -170deg);
        -webkit-animation-timing-function: ease-in;
        animation-timing-function: ease-in;
    }

    80% {
        -webkit-transform: perspective(400px) scale3d(0.95, 0.95, 0.95) translate3d(0, 0, 0) rotate3d(0, 1, 0, 0deg);
        transform: perspective(400px) scale3d(0.95, 0.95, 0.95) translate3d(0, 0, 0) rotate3d(0, 1, 0, 0deg);
        -webkit-animation-timing-function: ease-in;
        animation-timing-function: ease-in;
    }

    to {
        -webkit-transform: perspective(400px) scale3d(1, 1, 1) translate3d(0, 0, 0) rotate3d(0, 1, 0, 0deg);
        transform: perspective(400px) scale3d(1, 1, 1) translate3d(0, 0, 0) rotate3d(0, 1, 0, 0deg);
        -webkit-animation-timing-function: ease-in;
        animation-timing-function: ease-in;
    }
}

.feature-list li {
    margin-bottom: 10px;
    font-size: 16px;
}

.feature-list li span {
    color: green;
    font-size: 20px;
}
/*===========================
      06.joIN us css 
===========================*/

.join_us_area {
  position: relative;
  z-index: 1;
}

.join_us_area::before {
  position: absolute;
  content: "";
  inset: 0;
  background-color: rgba(43, 42, 61, 0.9);
  z-index: 1;
  pointer-events: none;
}

/* content above overlay */
.join_us_area .container {
  position: relative;
  z-index: 2;
}

/*===========================
     08.TESTIMONIAL css 
===========================*/
.testimonial_area {
  position: relative;
}

.testimonial_area::before {
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background-color: rgba(43, 42, 61, 0.9);
}

.testimonial_active_wrapper {
  position: relative;
  padding-bottom: 60px;
}

.testimonial_active_wrapper .tns-nav {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  text-align: center;
  margin-top: 35px;
}

.testimonial_active_wrapper .tns-nav button {
  margin: 0 5px;
  width: 18px;
  height: 5px;
  background-color: transparent;
  border-radius: 50px;
  font-size: 0;
  transition: all 0.3s ease-out 0s;
  border: 0;
  background-color: #ececec;
}

.testimonial_active_wrapper .tns-nav button.tns-nav-active {
  background-color: #e84e4e;
}

.single_testimonial img {
  display: inline-block;
  border-radius: 50%;
}

@media (max-width: 767px) {
  .single_testimonial img {
    width: 120px;
  }
}

.single_testimonial .author_name {
  font-size: 20px;
  font-weight: 600;
  color: #fff;
  margin-top: 25px;
}

.single_testimonial span {
  font-size: 14px;
  color: #fff;
}

.single_testimonial p {
  color: #fff;
  margin-top: 15px;
}

/*===========================
      Clients css 
===========================*/
.client-section {
  background: linear-gradient(135deg, white 0%, #f1f5f9 100%);
  position: relative;
  overflow: hidden;
}

.client-section::before {
  content: "";
  position: absolute;
  top: 50px;
  right: 100px;
  width: 400px;
  height: 400px;
  background: linear-gradient(135deg, #e21414, #cb2744);
  opacity: 0.04;
  border-radius: 50%;
  animation: pulse 4s ease-in-out infinite;
  pointer-events: none; /* 🔑 KEY LINE */
}
@media (max-width: 991px) {
  .client-section::before {
    top: 100px;
    right: -2px;
    width: 200px;
    height: 200px;
  }
}
@keyframes pulse {
  0%,
  100% {
    transform: scale(1);
    opacity: 0.03;
  }
  50% {
    transform: scale(1.4);
    opacity: 0.08;
  }
}

.client-logo-container {
  display: flex;
  align-items: center;
  justify-content: center;
}

.client-logo-container img {
  max-width: 150px;
  min-height: 110px;
  transform: translateY(15px);
  opacity: 0.7;
  transition: all 0.4s ease;
}

.client_features:hover .client-logo-container img {
  transform: translateY(0);
  opacity: 1;
}

.client_features i {
  font-size: 60px;
  line-height: 60px;
  color: #e84e4e;
  transition: all 0.3s ease-out 0s;
}
/* @media (max-width: 991px) {
  .client-section::before {
    content: none;
}
} */

.client_features {
  display: flex;
  flex-direction: column;
  height: 90%;
}

.client_features .features_title {
  min-height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  margin-top: 25px;
  font-size: 16px;
  font-weight: 600;
  color: #e84e4e;
  line-height: 1.3;
}

.sub-title {
  color: #5a5872;
  font-size: 12px;
  font-weight: 200;
  transition: all 0.3s ease-out 0s;
}
@media (max-width: 767px) {
  .client_features .features_title {
    font-size: 24px;
  }
  .client_features i {
    font-size: 40px;
    line-height: 45px;
  }
}
.client_features p {
  margin-top: 15px;
}
.client_features:hover i {
  color: #e84e4e;
}

/*===========================
      xyz.Certifications css 
===========================*/
.features_area {
  background: linear-gradient(135deg, white 0%, #f1f5f9 100%);
  position: relative;
  overflow: hidden;
}

.features_area::before {
  content: "";
  position: absolute;
  top: 50px;
  right: 100px;
  width: 400px;
  height: 400px;
  background: linear-gradient(135deg, #e21414, #cb2744);
  opacity: 0.04;
  border-radius: 50%;
  animation: pulse 4s ease-in-out infinite;
  pointer-events: none; /* 🔑 KEY LINE */
}
.features_area::after {
  content: "";
  position: absolute;
  bottom: 20px;
  left: 50px;
  width: 400px;
  height: 400px;
  background: linear-gradient(135deg, #1455e2, #915ada);
  opacity: 0.04;
  border-radius: 50%;
  animation: pulse 4s ease-in-out infinite;
  pointer-events: none; /* 🔑 KEY LINE */
}
@media (max-width: 991px) {
  .features_area::before {
    top: 0;
    right: -2px;
    width: 200px;
    height: 200px;
  }
  .features_area::after {
    bottom: 0;
    left: 0;
    width: 200px;
    height: 200px;
  }
}
.img-wrap {
  width: 100%;
  height: 140px; /* control visual consistency */
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  margin-bottom: 10px;
}

.img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: contain; /* 👈 keeps full image visible */
}
.single_certificate {
  height: 100%;
  padding: 25px 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
}

.single_certificate:hover {
  transform: translateY(-6px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.12);
}
.view_cert_btn {
  position: relative;
  overflow: hidden;
  display: inline-block;
  font-weight: 400;
  text-align: center;
  cursor: pointer;
  color: #e84e4e;
  background-color: #fff;
  width: 40%;
  padding: 6px 15px;
  border-radius: 20px;
  font-size: 14px;
  margin-top: 5px;
  transition: color 0.3s ease;
  z-index: 1;
  outline: none;
  border: 1px solid #e84e4e;
}
.view_cert_btn::before {
  content: "";
  position: absolute;
  inset: 0;
  background-color: #e84e4e;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease-in-out;
  /* transition: transform 0.4s cubic-bezier(0.1, 0.27, 0.9, 0.74); */
  z-index: -1;
}
.view_cert_btn:hover {
  color: #fff;
}

.view_cert_btn:hover::before {
  transform: scaleX(1);
}

.wb_card {
  background: white;
  padding: 30px 5px;
  border-radius: 10px;
  margin-bottom: 20px;
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
}
.wb_card:hover {
  box-shadow: 0 15px 35px rgba(10, 10, 10, 0.2);
}

@media (max-width: 767px) {
  .view_cert_btn {
    font-size: 10px;
    padding: 10px 0;
  }
}
/* ===============================
   Certificate Fullscreen Viewer
================================ */

.cert-lightbox {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.85);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease;
}

.cert-lightbox.active {
  opacity: 1;
  visibility: visible;
}

.cert-lightbox img {
  max-width: 90%;
  max-height: 90%;
  border-radius: 8px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.6);
  animation: zoomIn 0.4s ease;
}

/* Close button */
.cert-lightbox .close-btn {
  position: absolute;
  top: 25px;
  right: 35px;
  font-size: 40px;
  color: #fff;
  cursor: pointer;
  transition: transform 0.3s ease;
}

.cert-lightbox .close-btn:hover {
  transform: scale(1.2);
}

/* Zoom animation */
@keyframes zoomIn {
  from {
    transform: scale(0.85);
    opacity: 0;
  }
  to {
    transform: scale(1);
    opacity: 1;
  }
}

/*===========================
    10.CONTACT css 
===========================*/
.contact_area {
  position: relative;
  z-index: 0;
}
.contact_section .card {
  padding: 20px 10px;
}
.contact_area {
  background-color: rgba(43, 42, 61, 0.9);
}

p.form-message.success,
p.form-message.error {
  font-size: 16px;
  color: #2b2a3d;
  background: #f9f9f9;
  padding: 10px 15px;
  margin-top: 30px;
  background-color: #fff;
  margin-left: 15px;
}

p.form-message.success.form-message.error,
p.form-message.error.form-message.error {
  color: #f00;
}

.single_form {
  margin-top: 30px;
}

.single_form input,
.single_form textarea {
  width: 100%;
  height: 55px;
  border: 1px solid rgba(255, 255, 255, 0.6);
  padding: 0 25px;
  font-size: 16px;
  color: #fff;
  background: none;
  transition: all 0.3s ease-out 0s;
}

.single_form input:focus,
.single_form input:hover,
.single_form textarea:hover,
.single_form textarea:focus {
  border-color: #fff;
  box-shadow: 0px 5px 15px rgb(255 255 255 / 85%);
}
.field-error {
  border-color: #fff !important;
  box-shadow: 0px 5px 15px rgb(225 93 93 / 85%) !important;
}
.single_form textarea {
  height: 170px;
  resize: none;
  padding-top: 15px;
}

/*===========================
    11.FOOTER css 
===========================*/
.footer_area {
  background-color: #e84e4e;
  padding-top: 15px;
  padding-bottom: 30px;
}

.footer_menu ul li {
  display: inline-block;
  padding-top: 5px;
}

.footer_menu ul li + li {
  margin-left: 30px;
}

@media (max-width: 767px) {
  .footer_menu ul li + li {
    margin-left: 15px;
  }
}

.footer_menu ul li a {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.8);
  transition: all 0.3s ease-out 0s;
}

.footer_menu ul li a:hover {
  color: #fff;
}

.credit {
  font-size: 16px;
  color: #fff;
  padding-top: 15px;
}
@media (max-width: 767px) {
  .credit {
    font-size: 12px;
  }
}

.credit a {
  color: #fff;
}

.footer_social ul li {
  display: inline-block;
}

.footer_social ul li + li {
  margin-left: 30px;
}

.footer_social ul li a {
  font-size: 26px;
  color: rgba(255, 255, 255, 0.8);
  transition: all 0.3s ease-out 0s;
}

.footer_social ul li a:hover {
  color: #fff;
}

@media (max-width: 767px) {
  .footer_social ul li a {
    font-size: 20px;
  }
}

/*===== BACK TO TOP =====*/
.back-to-top {
  font-size: 20px;
  color: #fff;
  position: fixed;
  right: 20px;
  bottom: 20px;
  width: 40px;
  height: 40px;
  line-height: 40px;
  border-radius: 5px;
  background-color: #e84e4e;
  text-align: center;
  z-index: 998;
  transition: all 0.3s ease-out 0s;
  box-shadow: 0px 2px 5px rgba(0, 0, 0, 0.2);
  display: none;
}

.back-to-top:hover {
  color: #fff;
  background-color: #e84e4e;
}

#scrollProgress {
  position: fixed;
  bottom: 100px;
  right: 30px;
  width: 48px;
  height: 48px;
  cursor: pointer;
  background: rgba(0, 0, 0, 0.25);
  backdrop-filter: blur(20px);
  border-radius: 50%;
  transition:
    opacity 0.3s ease,
    transform 0.3s ease;
  z-index: 998;
}

/* SVG ring */
#scrollProgress svg {
  transform: rotate(-90deg);
}

#scrollProgress circle {
  fill: none;
  stroke: #fff;
  stroke-width: 4;
  stroke-dasharray: 126;
  stroke-dashoffset: 126;
  transition: stroke-dashoffset 0.2s linear;
}

/* Center icons */
#scrollProgress .icon {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 18px;
}

/* Default states */
#scrollProgress .gear {
  opacity: 0;
}

/* Active click state */
#scrollProgress.active .chevron {
  opacity: 0;
}

#scrollProgress.active .gear {
  opacity: 1;
}

#scrollProgress.active .gear i {
  animation: gearSpin 1s linear infinite;
}

@keyframes gearSpin {
  to {
    transform: rotate(360deg);
  }
}
/* Whatsapp Icon */
#whatsapp {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 48px;
  height: 48px;
  cursor: pointer;
  background: rgba(64, 226, 23, 0.8);
  box-shadow: 0 8px 25px rgba(37, 211, 102, 0.4);
  backdrop-filter: blur(20px);
  border-radius: 50%;
  z-index: 997;
  animation: bounce 2s infinite;
}
@keyframes bounce {
  0%,
  20%,
  50%,
  80%,
  100% {
    transform: translateY(0);
  }
  40% {
    transform: translateY(-10px);
  }
  60% {
    transform: translateY(-5px);
  }
}

#whatsapp .icon {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 24px;
}
@media (max-width: 767px) {
  #whatsapp {
    right: 15px;
  }
  #scrollProgress {
    right: 15px;
  }
}
input::placeholder {
  color: #d7d7d7;
}
textarea::placeholder {
  color: #d7d7d7;
}
.g-1,
.gx-1 {
  --bs-gutter-x: 0.25rem;
}
.card {
  height: 100%;
  border-radius: 12px;
  border: none;
  transition: all 0.3s ease;
  padding: 10px;
  display: flex;
  justify-content: center;
}

.card:hover {
  transform: translateY(-6px);
  box-shadow: 0 1rem 3rem rgba(0, 0, 0, 0.175) !important;
}

.card i {
  font-size: 42px;
  color: #e84e4e;
  margin-bottom: 15px;
}

.card-title {
  font-weight: 600;
  margin-bottom: 12px;
}

.card-text {
  color: #6c757d;
  line-height: 1.6;
}
.card-red {
  height: 100%;
  border-radius: 12px;
  border: none;
  padding: 25px 20px;
  transition: all 0.3s ease;

  display: flex;
  flex-direction: column; /* 🔑 important */
  align-items: center; /* center horizontally */
  text-align: center;
}

.card-red:hover {
  transform: translateY(-6px);
  box-shadow: 0 1rem 3rem rgba(232, 78, 78, 0.45);
}

.shadow {
  box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15) !important;
}

.shadow-sm {
  box-shadow: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.075) !important;
}

.shadow-lg {
  box-shadow: 0 1rem 3rem rgba(0, 0, 0, 0.175) !important;
}

.shadow-none {
  box-shadow: none !important;
}

.icon-wrap {
  position: relative;
  height: 48px;
  margin-bottom: 15px;
}
.icon-holder {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
}
.icon-holder i {
  font-size: 42px;
  color: #e84e4e;
  transition: opacity 0.25s ease;
} /* hide animated icon initially */
.icon-hover {
  opacity: 0;
  animation-play-state: paused; /* 🔑 stop FA animation */
}

/* hover swap */
.card-red:hover .icon-default {
  opacity: 0;
}

.card-red:hover .icon-hover {
  opacity: 1;
  animation-play-state: running; /* 🔑 start FA animation */
}

/* Print Format */

@media print {
  #product-print-area,
  #product-print-area * {
    visibility: visible !important;
  }

  #product-print-area {
    position: relative;
    left: 0;
    top: 100px;
    width: 100%;
    background: white;
    padding: 40px;
  }

  /* Remove animations & colors */
  * {
    animation: none !important;
    box-shadow: none !important;
  }

  a::after {
    content: "";
  }

  a.btn,
  .navbar ul,
  footer,
  #whatsapp {
    display: none !important;
  }

  img {
    max-width: 100%;
  }
}
