:root {
  --primary-color: #1E1E1E;
  --secondary-color: #bd0000e3;
  --text-color: #7b7b7b;
  --arrow-color: #385280;
  --accent-color: #612e11;
  --white-color: #FFFFFF;
  --divider-color: #EAEAEA;
  --dark-divider-color: #FFFFFF1A;
  --btn-color: #FFFFFFCC;
  --btn6-color: #efb708;
  --btn1-color: #a78b76;
  --othr-color: #612e11;
  --dark-bg: #44444E;

  --font: 'Cambria', sans-serif;


}


html {
  font-size: 100%;
}


a {
  text-decoration: none !important;
}



h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0;
  font-family: var(--font) !important;

  line-height: 1.2em;
  font-family: var(--font) !important;


}

p {
  font-family: var(--font) !important;

  font-size: 18px !important;
}

li {
  font-family: var(--font) !important;


}





/* Body and HTML structure */
html,
body {
  width: 100%;
  overflow-x: clip;
  font-family: var(--font) !important;

}

/* Image animation effect */
.image-anime {
  position: relative;
  overflow: hidden;
}

/* header.sticky #primary li a {
  background-image: linear-gradient(to right, #000, #23abd4 50%, #000 50%);

} */

.image-anime:after {
  content: "";
  position: absolute;
  width: 200%;
  height: 0%;
  left: 50%;
  top: 50%;
  background-color: rgba(255, 255, 255, .3);
  transform: translate(-50%, -50%) rotate(-45deg);
  z-index: 1;
}

.para {
  font-size: 18px;
  line-height: 25px;
  color: var(--text-color);

  font-weight: 400;
}

.career img {
  height: 462px;
  object-fit: cover;
}

.main-content p,
li {
  font-size: 18px;
  color: #414141;
  font-weight: 400;
  font-family: var(--font);
  /* line-height: 26px; */
}

.btn-secondarys {
  margin-top: 10px;
  background-color: #a00c02;
  color: white;
  border: none;
  padding: 12px 28px;
  font-size: 16px;
  font-weight: 700;
  border-radius: 10px;
  cursor: pointer;
  transition: background-color 0.3s;
  user-select: none;
  box-shadow: 0 6px 18px rgb(37 99 235 / 0.4);
  display: inline-block;
}

.step-description p {
  color: #222 !important;
}

.global_padding {
  padding: 60px 0;
}

.image-anime:hover:after {
  height: 250%;
  transition: all 600ms linear;
  background-color: transparent;
}

/* Reveal animation classes */
.reveal {
  position: relative;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  overflow: hidden;
}

.reveal img {
  height: 100%;
  width: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  -webkit-transform-origin: left;
  transform-origin: left;
  transition: transform 1s ease-out, visibility 0s 0s;
  transform: translateX(-100%);
}

.reveal.show img {
  transform: translateX(0);
  visibility: visible;
}

.reveal1 {
  position: relative;
  display: inline-flex;
  overflow: hidden;
}

.reveal1 img {
  width: 100%;
  height: auto;
  object-fit: cover;
  transform-origin: right;
  transform: translateX(100%);
  transition: transform 1s ease-out;
  visibility: hidden;
}

.reveal1.show img {
  transform: translateX(0);
  visibility: visible;
}

/* Body styling */
body {
  font-size: 1rem;
  font-weight: 400;
}

/* Container fluid max-width */
.container-fluid {
  max-width: 1920px;
}

/* Keyframe animations */
@keyframes slideInLeft {
  0% {
    transform: translateX(-100px);
    opacity: 0;
  }

  100% {
    transform: translateX(0);
    opacity: 1;
  }
}

@keyframes slideInRight {
  0% {
    transform: translateX(100px);
    opacity: 0;
  }

  100% {
    transform: translateX(0);
    opacity: 1;
  }
}

/* Fixed position buttons */
.back-to-top,
.whatsapp-btn {
  position: fixed;
  width: 45px;
  height: 45px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 1.2rem;
  color: #ffffff;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.6);
  cursor: pointer;
  z-index: 1000;
  transition: transform 0.3s ease;
}

.whatsapp-btn {
  bottom: 30px;
  right: 30px;
  background-color: #25D366;
  animation: slideInRight 0.5s forwards;
  text-decoration: none;
}

.whatsapp-btn:hover {
  transform: scale(1.1);
}

.whatsapp-btn i {
  font-size: 1.4rem;
  color: #ffffff;
}

/* SVG play animation */
.svg-play {
  display: inline-block;
  animation: spin 4s linear infinite;
  vertical-align: middle;
  width: 20px;
  height: 20px;
  margin-right: 6px;
}

@keyframes spin {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

/* Global button styles */
.global-btn1 {
  position: relative;
  display: inline-block;
  padding: 12px 30px;
  font-size: 16px;
  color: #000000;
  background: transparent;
  border: 1px solid #000000;
  overflow: hidden;
  cursor: pointer;
  z-index: 1;
  transition: color 0.3s ease;
  border-radius: 30px;
  text-decoration: none;
}

.global-btn1::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 0%;
  background-color: #000000;
  z-index: -1;
  transition: height 0.4s ease;
}

.global-btn1:hover {
  color: #ffffff;
}

.global-btn1:hover::before {
  height: 100%;
}

.global-btn2 {
  position: relative;
  display: inline-block;
  padding: 12px 30px;
  font-size: 16px;
  color: #fff;
  background: transparent;
  border: 1px solid #fff;
  overflow: hidden;
  cursor: pointer;
  z-index: 1;
  transition: color 0.3s ease;
  border-radius: 30px;
  text-decoration: none;
}

.global-btn2::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 0%;
  background-color: #000000;
  z-index: -1;
  transition: height 0.4s ease;
}

.global-btn2:hover {
  color: #ffffff;
}

.global-btn2:hover::before {
  height: 100%;
}

/* Header styles */
header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 999;
  background: linear-gradient(to bottom, #fff, #fff);
  background-size: 100% 0%;
  background-repeat: no-repeat;
  background-position: top;
  box-shadow: none;
  border-bottom: 1px solid #ffffff30;
  transition:
    background-size 0.8s ease-in-out,
    box-shadow 0.5s ease-in-out,
    transform 0.3s ease;
}

header.sticky {
  background-size: 100% 100%;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

header.sticky .navbar-light .navbar-nav .nav-link {
  color: var(--primary-color) !important;
}

/* Navbar styles */
.navbar-expand-lg .navbar-collapse {
  justify-content: right !important;
  margin-right: 2rem;
}

.logo {
  color: #fff;
}

.logo img {
  width: 120px;
  height: auto;
}
.logo {
    display: flex;
    flex-direction: column;
    /*align-items: center;*/
}

.logo-text {
    font-size: 12px;
    color: #000;
    margin-top: 4px;
    letter-spacing: 1px;
    font-weight: 500;
}

.navbar-light .navbar-nav .nav-link {
  font-size: 90% !important;
  font-weight: 300 !important;

  position: relative;
  z-index: 10;
}

.navbar-nav {
  gap: 16px;
}

.navbar {
  padding: 0;
}

/* Primary navigation styling */
#primary li {
  margin: 0 5px;
  position: relative;
  color: #222;


}

#primary li a {
  text-decoration: none;
  padding: 5px 0;
  line-height: 1;
  position: relative;
  z-index: 1;

  transition: all 0.3s ease-in-out;
  font-weight: 600 !important;
  font-size: .875rem;
  text-transform: uppercase;
  color: #222;
}

#primary li a:before {
  content: "";
  width: 0;
  height: 3px;
  bottom: 5px;
  left: 0;
  bottom: -3px;
  z-index: 0;
  position: absolute;
  background: #da251c;
  transition: all 0.3s ease-in-out;
}

#primary li a:hover {
  background-position: 0%;
}

#primary li a:hover:before {
  width: 100%;
}

/* Dropdown menu styles */
.nav-item.dropdown:hover .dropdown-menu {
  display: block;
  margin-top: 0;
}

.dropdown-menu {
  background-color: var(--secondary-color) !important;
}

a.dropdown-item {
  margin-bottom: 10px;
}

.dropdown-toggle::after {
  color: var(--white-color) !important;
}

/* Button styles */
.btn2 {
  font-family: var(--font) !important;

  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  padding: 12px 20px;
  font-size: 1rem;
  font-weight: 600;
  color: #f9fafb;
  background-color: var(--secondary-color);
  border: 2px solid transparent;
  position: relative;
  overflow: hidden;
  z-index: 10;
  cursor: pointer;
  transition: color 0.3s ease;
}

.btn2::before {
  content: '';
  position: absolute;
  width: 100%;
  aspect-ratio: 1/1;
  top: 50%;
  left: -100%;
  transform: translateY(-50%);
  background-color: var(--arrow-color);
  border-radius: 9999px;
  z-index: -1;
  transition: all 0.7s ease;
}

.btn2:hover::before {
  left: 0;
  transform: translateY(-50%) scale(1.5);
}

.btn2:hover {
  color: #f9fafb;
}

.btn2-icon {
  width: 22px;
  height: 22px;
  padding: 4px;
  background-color: #f9fafb;
  border: 1px solid #374151;
  border-radius: 50%;
  transform: rotate(45deg);
  transition: transform 0.3s ease, background-color 0.3s ease;
  fill: #1f2937;
}

.btn2:hover .btn2-icon {
  transform: rotate(90deg);
  background-color: #f9fafb;
  border: none;
}

.btn3 {
  font-family: var(--font) !important;

  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  font-size: 1rem;
  font-weight: 600;
  color: var(--white-color);
  position: relative;
  overflow: hidden;
  z-index: 10;
  cursor: pointer;
  transition: color 0.3s ease;
  background-color: transparent;
  border: none;
  margin-top: 15px;
}

.bgb {
  background-color: var(--white-color) !important;
  color: var(--secondary-color);
}

.btn3::before {
  content: '';
  position: absolute;
  width: 100%;
  aspect-ratio: 1/1;
  top: 50%;
  left: -100%;
  transform: translateY(-50%);
  border-radius: 9999px;
  z-index: -1;
  transition: all 0.7s ease;
}

.btn3:hover::before {
  left: 0;
  transform: translateY(-50%) scale(1.5);
}

.btn3:hover {
  color: var(--secondary-color);
}

.btn3-icon {
  width: 25px;
  height: 25px;
  padding: 4px;
  background-color: var(--secondary-color);
  border: 1px solid var(--secondary-color);
  border-radius: 50%;
  transform: rotate(45deg);
  transition: transform 0.3s ease, background-color 0.3s ease;
}

.btn3-ic {
  width: 25px;
  height: 25px;
}

.btn3:hover .btn2-icon {
  transform: rotate(90deg);
  background-color: var(--secondary-color);
  border: none;
  fill: var(--white-color);
}

/* Banner styles */
.banner {
  padding-bottom: 0;
}

.ban-img {
  height: 500px !important;
  -o-object-fit: cover;
  object-fit: cover;
}

.ban3-sec1,
.ban3-sec3,
.img-mid6,
.mg-img,
.mid6,
.nv-img,
.shri-logo {
  height: auto;
}

.ban-text {
  position: absolute;
  top: 38%;
  left: 18px;
}

.ban-text h2 {
  font-size: 150%;
  font-weight: 500;
  line-height: 30px;
}

.tw {
  font-size: 100%;
  line-height: 41px;
}

.banner .owl-theme .owl-nav.disabled+.owl-dots {
  margin-top: 10px;
  top: 71%;
  position: absolute;
  right: -12px;
  transform: rotate(90deg);
}

.btn1 {
  padding: 12px 16px;
}

.btn1-one {
  padding: 10px 28px;
}

.bh-k {
  padding: 10px 13px;
  border-radius: 5px;
  line-height: 46px;
  font-size: 63%;
}

h2.tall.d-block.d-md-none {
  line-height: 37px;
}

.mg-img {
  width: 60px;
}

.ban1,
.ban2,
.ban3,
.ban4,
.mid1,
.mid2 {
  margin-top: 40px;
}

.te-xt {
  line-height: 22px;
}

.ban1 {
  padding-bottom: 20px;
}

.ban1-grid {
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
}

.nv-img {
  width: 75px;
}

.ban3-sec1 {
  padding: 20px;
}

.master,
.mid,
.mid4-sec {
  padding-top: 40px;
}

.ban3-sec1 h2 {
  transform: rotate(0);
  position: unset;
}

.ban3 ul#pills-tab {
  grid-template-columns: auto auto;
}

.ban3-sec3 {
  margin-top: 80px;
}



.mid {
  margin-top: 40px;
  padding-bottom: 40px;
}

.mid-sec {
  grid-template-columns: auto;
}

.mid1-sec h2,
.mid6-sec {
  margin-top: 0;
}

.col-md-2.mid1-sec1 {
  padding-left: 0;
  margin-top: 40px;
}

p.para.nw1 {
  padding-left: 20px;
  padding-right: 20px;
}

.foot-mg1,
img.img-fluid.ce {
  display: block;
  margin: auto;
}

img.img-fluid.cel {
  height: auto;
  -o-object-fit: fill;
  object-fit: fill;
}

.mid2-sec-one {
  margin-top: 40px;
  padding-bottom: 50px;
  justify-content: center;
}

.mid2-sec-one div#v-pills-tab {
  z-index: 1;
}

p.para.bba {
  padding-top: 18px;
}

.txxt-mid2 {
  margin-top: 35px;
}

.mid4-sec div#accordionFlushExample {
  margin-top: 40px;
  padding-left: 10px;
  padding-right: 10px;
}

.mid4-sec {
  padding-bottom: 40px;
}

.mid6 {
  width: 100%;
  padding-left: 10px;
  padding-right: 10px;
}

.mid1-btn {
  margin-bottom: 40px;
}

div#fle-x1 {
  flex-direction: column-reverse;
}

.send-btn {
  margin-bottom: 0;
}

h2.heading.text-left.md6 {
  color: #54595f;
  padding-top: 0;
  line-height: 22px;
}

.icn-box {
  width: 100% !important;
  position: fixed !important;
  top: unset !important;
  bottom: 0 !important;
  right: 0 !important;
  transform: unset !important;
  z-index: 999;
  text-align: center !important;
}

.icn-box ul li {
  display: inline-block;
  padding-left: 20px !important;
  padding-right: 20px !important;
}

span.bord {
  border-left: 2px solid #fff !important;
}

.icn-bx-ul {
  display: flex !important;
  justify-content: space-between !important;
}

.icn-box ul li a i {
  transform: rotate(360deg);
}

.foot.mne ul li {
  justify-content: start;
}

p.para.wbr {
  padding-left: 0;
  justify-content: start;
}

footer {
  padding-bottom: 70px;
  padding-top: 0;
  position: relative;
}

footer h3 {
  color: #000000;
  margin-bottom: 2rem;
  font-size: 2.3rem;
  font-weight: 600;
}



.foot-mg {
  display: unset;
}

.appr {
  text-align: center;
}

.modal-title {
  font-size: 120%;
  line-height: normal !important;
}

.mid6 label {
  font-size: 20px;
}

.mo-de label {
  font-size: 14px;
}

.modal-body {
  padding: 0.5rem !important;
}

.shri-logo {
  width: 130px;
}

.privacy ul li,
p.para.mdd {
  font-size: 80%;
}

img.img-fluid.ngn {
  width: 20px;
  height: 20px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

a.playBtn {
  width: 50px;
  height: 50px;
}

.icon-box-nw {
  right: -63px;
  top: 50%;
  padding: 0;
}

.social-icn ul {
  text-align: start;
  margin-bottom: 12px;
}

h3.prim.gh {
  color: var(--secondary-color);
}

.crd-mg1-o {
  display: block;
  margin: auto;
  width: 50px;
}

.ban-new-se {
  background-color: #f2f2f2;
}

.card {
  border: none !important;
  box-shadow: 0 0 20px 0 rgba(6, 31, 74, 0.07) !important;
}

.bgb1 {
  color: var(--background-color) !important;
}

img.img-fluid.bgop {
  height: auto;
}

/* Media Queries */
@media screen and (min-device-width: 768px) and (max-device-width: 991.78px) {

  .navbar-toggler,
  header.sticky .navbar-toggler {
    color: var(--secondary-color) !important;
    border: 2px solid var(--secondary-color) !important;
  }

  .navbar-light .navbar-nav .nav-link,
  .rg-no p {
    font-size: 90% !important;
  }

  header.sticky {
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    background-color: rgba(255, 255, 255, 0.9294117647);
    padding: 0;
  }

  header.sticky .logo img {
    transform: scale(0.9);
    opacity: 0.8;
  }

  header.sticky .rg-no p {
    color: var(--text-color);
  }

  .navbar .navbar-nav .nav-link {
    color: var(--secondary-color) !important;
  }

  #primary li a:before {
    background: var(--secondary-color);
  }

  html {
    font-size: 18px;
  }

  .container1 {
    width: 90% !important;
  }

  .navbar-toggler {
    padding: 0.35rem 0.85rem;
    line-height: 1;
    background-color: transparent;
    border-radius: 0.25rem;
    transition: box-shadow 0.15s ease-in-out;
  }

  .bh-k,
  .txt-ban3 {
    background-color: var(--secondary-color);
  }

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

  .offcanvas-header {
    padding: 10px !important;
  }

  .offcanvas-header .btn-close {
    position: absolute;
    top: 30px;
    right: 15px;
  }

  .offcanvas-end {
    top: 0;
    right: 0;
    width: 300px !important;
    border-left: 3px solid rgba(0, 0, 0, 0.2) !important;
    transform: translateX(100%);
  }

  .rg-no p {
    padding-left: 17px;
  }

  .bh-k {
    padding: 4px 25px;
    border-radius: 5px;
    line-height: 55px;
    font-size: 103%;
  }

  .banner {
    padding-bottom: 0;
  }

  .ban-img {
    height: 550px !important;
    -o-object-fit: cover;
    object-fit: cover;
  }

  .ban3-sec1,
  .ban3-sec3,
  .man-tx,
  .mg-img,
  .nv-img {
    height: auto;
  }

  .icn-box {
    font-size: 16px;
    padding-left: 11px;
  }

  .ban3-sec1,
  .feature {
    padding: 20px;
  }

  .ban-text {
    position: absolute;
    top: 20%;
    left: 55px;
  }

  .ban-text h2 {
    font-size: 150%;
    font-weight: 500;
    line-height: 30px;
  }

  .tw {
    font-size: 70px;
    line-height: 64px;
  }

  .banner .owl-theme .owl-nav.disabled+.owl-dots {
    margin-top: 10px;
    top: 45%;
    position: absolute;
    right: -12px;
    transform: rotate(90deg);
  }

  .ban1 {
    margin-top: 40px;
    padding-bottom: 20px;
  }

  .mg-img {
    margin-top: 20px;
    width: 72px;
  }

  .ban2,
  .ban3,
  .mid1,
  .mid2,
  footer {
    margin-top: 40px;
  }

  .nv-img {
    width: 66px;
  }

  .mid6,
  div#accordionFlushExample {
    padding-left: 10px;
    padding-right: 10px;
  }

  .ban3-sec1 h2 {
    transform: rotate(0);
    position: unset;
    text-align: center;
  }

  .ban3 ul#pills-tab,
  .mid-sec {
    grid-template-columns: auto auto;
  }

  .ban3-sec3 {
    margin-top: 80px;
  }

  .txt-ban3 {
    width: 75px;
    height: 75px;
    line-height: 80px;
    border-radius: 100%;
  }

  .foot-mg1,
  .mid6 {
    width: 100%;
  }

  .img-mm {
    padding-top: 11px;
  }

  .master,
  .mid,
  .mid4-sec {
    padding-top: 40px;
  }

  .mid {
    margin-top: 40px;
  }

  .mid1-sec h2,
  .mid6-sec {
    margin-top: 0;
  }

  .col-md-2.mid1-sec1 {
    padding-left: 0;
    margin-top: 40px;
  }

  p.para.nw1 {
    padding-left: 0;
    text-align: center;
  }

  img.img-fluid.ce {
    display: block;
    margin: auto;
  }

  img.img-fluid.cel {
    height: auto;
    -o-object-fit: fill;
    object-fit: fill;
  }

  .mid2-sec-one {
    margin-top: 40px;
    padding-bottom: 50px;
    justify-content: center;
  }

  .mid2-sec-one div#v-pills-tab {
    z-index: 1;
  }

  p.para.bba {
    text-align: left;
    line-height: 24px;
    padding-top: 18px;
    padding-left: 11px;
  }

  .txxt-mid2 {
    margin-top: 22px;
  }

  div#accordionFlushExample {
    margin-top: 40px;
  }

  .mid4-sec {
    padding-bottom: 40px;
  }

  .mid6 {
    height: auto;
  }

  .img-mid6 {
    height: auto;
    margin-top: 40px;
  }

  .mid1-btn {
    margin-bottom: 40px;
  }

  div#fle-x1 {
    flex-direction: column-reverse;
  }

  .send-btn {
    margin-bottom: 0;
  }

  h2.heading.text-left.md6 {
    color: #54595f;
    padding-top: 0;
  }

  p.para.wbr {
    padding-left: 30px;
  }


  .modal-title {
    font-size: 120%;
    line-height: normal;
  }

  .icon-box-nw {
    right: -76px;
  }

  .icn-box ul li a {
    font-size: 160%;
  }

  .icn-box {
    top: 52%;
  }

  img.img-fluid.ngn {
    width: 20px;
    height: 20px;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
  }

  a.playBtn {
    width: 50px;
    height: 50px;
  }
}

@media screen and (min-device-width: 992px) and (max-device-width: 1100px) {
  .navbar-light .navbar-nav .nav-link {
    margin-right: 0.5rem !important;
    margin-left: 0.5rem !important;
  }

  p.para.wbr {
    padding-left: 40px;
  }

  img.img-fluid.ce {
    top: 0;
  }
}

@media screen and (min-device-width: 992px) and (max-device-width: 1200px) {
  .ban-img {
    width: 100%;
    height: 80vh !important;
    -o-object-fit: cover;
    object-fit: cover;
  }
}

@media only screen and (orientation: landscape) and (min-device-width: 768px) and (max-device-width: 992px) {
  .navbar-light .navbar-nav .nav-link {
    font-size: 90% !important;
  }
}

/* Site header styles */
.site-header {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 999;
  background-color: transparent;
  transition: background-color 0.3s ease, box-shadow 0.3s ease, padding 0.3s ease;
  padding: 15px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2156862745);
}

.site-header .logo img {
  max-height: 60px;
  width: 100%;
  transition: filter 0.3s ease, opacity 0.3s ease;
}

.site-header.scrolled {
  background-color: #fff;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.site-header.scrolled .main-nav a {
  color: #000;
}

.site-header.scrolled .navbar-toggler-icon,
.site-header.scrolled .navbar-toggler-icon::before,
.site-header.scrolled .navbar-toggler-icon::after {
  background-color: #000;
}

.main-nav a {
  color: #fff;
  text-decoration: none;
  font-weight: 400;
  transition: color 0.3s ease;
  font-size: 14px;
}

.main-nav a:hover {
  color: #d4a34c;
}

.menu_color a {
  color: #000000 !important;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s ease;
  text-decoration: none;
}

.menu_color a:hover {
  color: #d4a34c;
}

/* Mega menu styles */
.has-mega {
  position: relative;
}

.has-mega:hover .mega-menu {
  opacity: 1;
  visibility: visible;
}

.mega-menu {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  background: #fff;
  display: flex;
  width: 800px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
  padding: 1rem;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  z-index: 9999;
  border-radius: 10px;
}

.mega-menu .mega-menu-list {
  flex: 1;
  list-style: none;
  padding: 0;
  margin: 0;
}

.mega-menu .mega-menu-list li {
  padding: 10px 15px;
  cursor: pointer;
  transition: background 0.2s;
}

.mega-menu .mega-menu-list li:hover {
  background: #f8f8f8;
  color: #d4a34c;
}

.mega-menu .mega-image {
  flex: 1;
  padding-left: 20px;
}

.mega-menu .mega-image img {
  max-width: 100%;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

/* Navbar toggler icon styles */
.navbar-toggler-icon {
  position: relative;
  width: 25px;
  height: 2px;
  background-color: #fff;
  display: inline-block;
}

.navbar-toggler-icon::before,
.navbar-toggler-icon::after {
  content: "";
  position: absolute;
  width: 25px;
  height: 2px;
  background-color: #fff;
}

.navbar-toggler-icon::before {
  top: -8px;
}

.navbar-toggler-icon::after {
  top: 8px;
}

.navbar-toggler-icon2 {
  position: relative;
  width: 25px;
  height: 2px;
  background-color: #000000;
  display: inline-block;
}

.navbar-toggler-icon2::before,
.navbar-toggler-icon2::after {
  content: "";
  position: absolute;
  width: 25px;
  height: 2px;
  background-color: #000000;
}

.navbar-toggler-icon2::before {
  top: -8px;
}

.navbar-toggler-icon2::after {
  top: 8px;
}

/* Offcanvas styles */
.offcanvas {
  background-color: rgba(255, 255, 255, 0.95);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  padding: 2rem;
}

.offcanvas .offcanvas-body a {
  color: #000;
  font-size: 1.2rem;
  text-decoration: none;
  padding: 10px 0;
  border-bottom: 1px solid #eee;
  display: block;
  transition: color 0.3s;
}

.offcanvas .offcanvas-body a:hover {
  color: #d4a34c;
}

.offcanvas .offcanvas-body .mobile-dropdown {
  display: flex;
  flex-direction: column;
}

.offcanvas .offcanvas-body .mobile-dropdown .dropdown-toggle {
  background: none;
  border: none;
  text-align: left;
  padding: 0;
  font-size: 1.1rem;
  font-weight: 500;
  color: #000;
  cursor: pointer;
  margin-bottom: 0.5rem;
}

.offcanvas .offcanvas-body .mobile-dropdown .dropdown-menu {
  display: none;
  flex-direction: column;
  gap: 0.5rem;
  padding-left: 1rem;
}

.offcanvas .offcanvas-body .mobile-dropdown.open .dropdown-menu {
  display: flex;
}

@media (max-width: 991px) {
  .main-nav {
    display: none !important;
  }

  .navbar-toggler-icon::before,
  .navbar-toggler-icon::after {
    content: "";
    position: absolute;
    width: 25px;
    height: 2px;
  }
}

/* Swiper slider styles */
.swiper {
  height: 650px;
  width: 100%;
}



.swiper .swiper-slide {
  position: relative;
  overflow: hidden;
}

.swiper .swiper-slide .parallax-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-position: center;
  background-size: cover;
  transform: scale(1.1);
  transition: transform 8s ease;
  animation: zoomEffect 20s ease-in-out infinite;
}

.swiper .swiper-slide .bg-overlay-black {
  position: absolute;
  inset: 0;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 1;
}

.swiper .swiper-slide .slide-content {
  position: relative;
  z-index: 2;
  height: 100%;
  max-width: 650px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: left;
  padding-top: 200px;
}

.swiper .swiper-slide .slide-content .slide-title {
  font-weight: 600;
  color: #fff;
  margin-bottom: 10px;
  opacity: 0;
  animation: fadeInUp 1s ease forwards 0.5s;
  font-size: 3rem;
  line-height: 68px;
}

.swiper .swiper-slide .slide-content .slide-sub {
  font-size: 1.4rem;
  font-weight: 400;
  color: #fff;
  margin-bottom: 10px;
  opacity: 0;
  animation: fadeInUp 1s ease forwards 0.8s;
}

.swiper .swiper-slide .slide-content .slide-desc {
  font-size: 0.9rem;
  margin-bottom: 20px;
  color: #fff;
  opacity: 0;
  animation: fadeInUp 1s ease forwards 1.1s;
  font-weight: 400;
  font-family: 300;
  font-family: var(--font) !important;

  padding-top: 10px;
}

.swiper .swiper-slide .slide-content .button .border-btn {
  display: inline-block;
  padding: 8px 22px;
  border: 2px solid #fff;
  color: #fff;
  text-decoration: none;
  font-size: 14px;
  opacity: 0;
  transition: all 0.3s;
  animation: fadeInUp 1s ease forwards 1.4s;
  border-radius: 10px;
}

.swiper .swiper-slide .slide-content .button .border-btn:hover {
  background: #fff;
  color: #000;
}

.swiper .swiper-button-next,
.swiper .swiper-button-prev {
  color: #ffffff5f;
}

.swiper .swiper-pagination-bullet {
  background: #fff;
}

/* Social icons styles */
.social-icons {
  position: absolute;
  bottom: -41px;
  right: 16px;
  z-index: 1001;
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.social-icons a {
  color: #fff;
  font-size: 24px;
  transition: transform 0.3s ease, opacity 0.3s ease;
  opacity: 0.8;
}

.social-icons a:hover {
  transform: scale(1.2);
  opacity: 1;
}

/* Slide indicators */
.slide-indicators {
  position: absolute;
  top: 78%;
  left: 15px;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  gap: 15px;
  z-index: 25;
}



.slide-indicators span {
  font-size: 10px;
  color: #aaa;
  font-weight: 400;
  transition: 0.3s;
}

.slide-indicators span.active {
  color: var(--secondary-color);
  font-weight: 700;
}

/* Keyframe animations */
@keyframes zoomEffect {
  0% {
    transform: scale(1.1);
  }

  50% {
    transform: scale(1.2);
  }

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

@keyframes fadeInUp {
  0% {
    opacity: 0;
    transform: translateY(40px);
  }

  100% {
    opacity: 1;
    transform: translateY(0);
  }
}


/* About section styles */
.about-industria {
  width: 100%;
  height: auto;
  background-color: transparent;
  background-image: linear-gradient(90deg, #fff 14.5%, #f8f8f8 14.5%);
  padding: 100px 0px;
  position: relative;
  overflow: hidden;
}


.title {
  font-size: 45px;
  font-weight: 600;

  line-height: 3.2rem;
  color: #222;
  margin-bottom: 1rem;
}

.bor {
  border: 1px solid #d9d9d9;
  margin: 20px 0px;
}

.txt-sec {
  padding-left: 80px;
}

.text-li {
  color: var(--text-color);
}

p.para.text-li {
  font-weight: 500;
}



.feature-item {
  font-size: 14px;
  font-weight: 400;
  line-height: 36px;
  color: var(--primary-color);

}

.feature-item i {
  width: 30px;
  height: 30px;
  line-height: 30px;
  color: var(--secondary-color);
  border: 1px solid var(--secondary-color);
  border-radius: 50%;
  text-align: center;
}

img.img-fluid-nw {
  width: 100%;
  height: 600px;
  position: relative;
  object-fit: cover;
}

.experience-badge {
  background-color: var(--secondary-color);
  padding: 33px 0 42px 30px;
  position: absolute;
  width: 200px;
  color: var(--white-color);
  top: 26%;
  right: -84px;
}

.years {
  font-size: 50px;
  font-weight: 600;

}

.label {
  font-size: 16px !important;
  line-height: 20px;
}

.ibv {
  font-size: 50px;
}

.about-sc {
  padding-left: 84px;
}

/* Industries section styles */
.industries-section {
  width: 100%;
  height: auto;
  margin-top: 112px;
}

.card-img {
  height: 500px;
  border-radius: 6px;
  position: relative;
  display: flex;
  align-items: flex-end;
  padding: 20px;
  overflow: hidden;
}

.bg-zoom {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  transition: transform 0.5s ease;
  z-index: 0;
}

.bg-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  z-index: 1;
}

.card-img:hover .bg-zoom {
  transform: scale(1.1);
}

.card-content {
  position: relative;
  z-index: 2;
}

.industries-section .industries-carousel .industry-card .card-img .card-content {
  position: relative;
  z-index: 2;
  color: #fff;

}

.industries-section .industries-carousel .industry-card .card-img .card-content .icon img {
  width: 30px;
  margin-bottom: 10px;
}

.industries-section .industries-carousel .industry-card .card-img .card-content .card-title {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 10px;

}

.industries-section .industries-carousel .industry-card .card-img .card-content .more-link {
  font-size: 0.9rem;
  color: #fff;
  font-weight: 500;
  text-decoration: underline;

}

/* We Do section styles */
.we-do {
  width: 100%;
  height: auto;
  padding: 100px 0;
  background-color: #f8f8f8;
  position: relative;
  overflow: hidden;
}

.we-do::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  /* background-image: linear-gradient(90deg, #f8f8f8 62.9%, #0c0b0b 62.9%); */
  z-index: 0;
  pointer-events: none;
}

.we-do>* {
  position: relative;
  z-index: 2;
}

.feature-section {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: 30px;
  padding: 60px 00px;
  position: relative;
}

.feature-card {
  display: flex;
  align-items: flex-start;
  gap: 20px;
}

.feature-icon {
  font-size: 40px;
  color: var(--secondary-color);
  flex-shrink: 0;
}

.feature-icon i {
  font-size: 25px;
}

.feature-content .feature-heading {
  font-size: 20px;
  font-weight: 500;
  margin-bottom: 10px;
  color: var(--primary-color);

}

.feature-content .feature-description {
  font-size: 0.8rem;
  color: var(--text-color);
  text-transform: normal;
  font-weight: 400;

  /* padding-top: 15px; */
}

img.img-fluid-op {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Video section styles */
.video-section {
  position: relative;
  height: 500px;
  background-image: url('../img/caee18ddb5.jpg');
  background-size: cover;
  background-position: center;
  overflow: hidden;
}

.video-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background-color: rgba(155, 13, 13, 0.175);
  z-index: 1;
}

.video-overlay {
  position: relative;
  z-index: 2;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  text-align: center;
  background-color: #0000008e;
}

.video-popup {
  text-decoration: none;
  color: inherit;
}

.play-button {
  position: relative;
  width: 100px;
  height: 100px;
  background-color: #fff;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 36px;
  color: var(--secondary-color);
  transition: all 0.3s ease;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.2);
  z-index: 2;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.play-button:hover {
  background-color: var(--second-col);
  color: #fff;
}

.play-button::before {
  content: '';
  position: absolute;
  width: 130px;
  height: 130px;
  background-color: rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  z-index: -1;
  animation: ringPulse 1.8s infinite ease-in-out;
}

@keyframes ringPulse {
  0% {
    transform: scale(0.9);
    opacity: 0.5;
  }

  50% {
    transform: scale(1.2);
    opacity: 1;
  }

  100% {
    transform: scale(0.9);
    opacity: 0.5;
  }
}

.video-popup p {
  color: #fff;
  font-size: 20px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-top: 215px;

}

/* Contact us section styles */
.contact-section {
  background-color: #111;
  color: #fff;
  padding: 80px 0;

}

.contact-section .bg-warning {
  background-color: var(--secondary-color) !important;
  width: 60px;
  height: 60px;
  border-radius: 0 10px 0 0;
}

.cnt-txt {
  font-size: 115%;
  color: var(--white-color);

  font-weight: 500;
}

.contact-section .contact-form-box {
  background-color: var(--secondary-color);
  padding: 40px;
  border-radius: 0 50px 0 0;
  color: #fff;

}

.contact-section .form-control {
  background-color: rgba(255, 255, 255, 0.1);
  border: 1px solid #fff;
  color: #fff;
  padding: 12px 15px;
  border-radius: 5px;
  font-size: 14px;

}

.contact-section .form-control::placeholder {
  color: #f1f1f1;
  opacity: 0.9;
}

.contact-section .form-control:focus {
  background-color: rgba(255, 255, 255, 0.15);
  border-color: #fff;
  box-shadow: none;
}

.contact-section .btn-dark {
  padding: 12px 24px;
  font-weight: 600;
  font-size: 15px;
  transition: 0.3s;
  border-radius: 5px;
}

.contact-section .btn-dark:hover {
  background-color: #fff;
  color: #000;
}

.info-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
  margin-top: 30px;
}

.info-item {
  display: flex;
  gap: 15px;
  align-items: flex-start;
}

.icon-box {
  padding: 15px;
  border-radius: 0 10px 0 0;
  width: 60px;
  height: 60px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.icon-box i {
  color: var(--white-color);
}

.card1 {
  width: 100%;
  height: auto;
  padding: 30px 30px;
  position: relative;
  z-index: 1;
  background-color: var(--secondary-color);
  clip-path: polygon(0% 0%, 92% 0, 100% 11%, 100% 100%, 0% 100%) !important;
}

.card1::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url('../img/main-map-bg1.png');
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  z-index: 0;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .contact-section h2 {
    font-size: 28px;
  }

  .contact-section .contact-form-box {
    border-radius: 10px;
  }

  .info-grid {
    grid-template-columns: 1fr;
  }
}

/* Banner social icon styles */
.social-sidebar {
  position: absolute;
  top: 50%;
  right: 7%;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  gap: 15px;
  z-index: 10;
}

.social-icon {
  width: 45px;
  height: 45px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.4);
  backdrop-filter: blur(6px);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 18px;
  transition: 0.3s;
}

.social-icon:hover {
  background: var(--secondary-color);
  transform: scale(1.1);
  color: var(--white-color);
}

.sticky #primary li a {
  color: #000000 !important;
}

/* Process section styles */
.process {
  width: 100%;
  height: auto;
  /* margin-top: 80px; */
}

.process-container {
  width: 100%;
  margin: 0 auto;
  position: relative;
  overflow: hidden;
  /* Prevent overflow */
}

.process-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  position: relative;
  z-index: 2;
  max-width: 100%;
  overflow: hidden;
}

.process-step {
  padding: 25px;
  /* background-color: rgba(0, 0, 0, 0.7); */
  color: white;
  transition: all 0.4s ease;
  cursor: pointer;
  position: relative;
  z-index: 3;
  min-height: 630px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  border: 1px solid rgba(255, 255, 255, 0.2);

}

.step-header {
  margin-bottom: 15px;
}

.step-number {
  display: flex;
  align-items: center;
  gap: 10px;
}

.step-number-large {
  font-size: 80px;
  line-height: 64px;
  font-weight: 700;
  color: transparent;
  -webkit-text-stroke-width: 1px;
  stroke-width: 1px;
  -webkit-text-stroke-color: rgba(33, 33, 33, 0.5);
  position: absolute;
  transform: translateY(20px);
  transition: all .5s ease;
  margin-top: 3rem;
}

.step-title {
  font-size: 20px;
  margin-bottom: 15px;
  color: #222;
  font-weight: bold;
  line-height: 1.4;
  transition: margin-bottom 0.3s ease;
}

.step-description {
  font-size: 15px;
  color: #222;

  line-height: 1.5;
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transform: translateY(10px);
  transition: all 0.5s cubic-bezier(0.22, 1, 0.36, 1);
}

.process-step.active .step-description {
  max-height: 500px;
  opacity: 1;
  transform: translateY(0);
}

.image-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  pointer-events: none;
  overflow: hidden;
}

.process-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 0.6s ease;
}

.process-image.show {
  opacity: 1;
}

.process-content-container {
  position: relative;
}

.project-details {
  margin-top: 5px;
  font-size: 14px;
}

.project-details strong {
  display: block;
  margin-bottom: 8px;
  font-size: 15px;
}





/* Footer styles */
footer {

  width: 100%;
  height: auto;
  background-color: #f5f4e8;
  padding: 150px 0px 0px 0px;
  position: relative;
  z-index: 1;

  /* clip-path: polygon(0 15%, 25% 10%, 50% 5%, 75% 10%, 100% 15%, 100% 100%, 0% 100%); */
}

.footer .logo img {
  width: 50%;
}

.footer {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}

.footer-column {
  flex: 1;
  min-width: 250px;
  margin: 5px;
}

.footer-logo img {
  width: 100%;
  height: auto;
  margin-right: 10px;
}

.footer-logo {
  justify-content: center;
  align-items: center;
}

.footer p {
  color: var(--white-color);
  font-size: 140%;
  line-height: 1.3;
  max-width: 300px;

  padding-top: 20px;
  font-weight: 400;
}

.footer .since {
  color: var(--secondary-color);
  font-size: 22px;
  font-weight: 700;
  margin-top: 15px;
}

.footer .copyright {
  font-size: 13px;
  color: var(--white-color);
  margin-top: 20px;

  font-weight: 500;
}

.footer .copyright span {
  color: var(--secondary-color);
}

.footer h4 {
  font-size: 16px;
  margin-bottom: 20px;
  color: #000000;

}

.footer ul {
  list-style: none;
  padding: 0;
  /* columns: 2; */
  /* column-gap: 40px; */
  gap: 15px;

}

.footer ul .footer ul li {
  margin-bottom: 10px;
}

.footer ul li a {
  color: #000;
  text-decoration: none;
  font-size: 17px;

  font-weight: 200;
}

.footer ul li a:hover {
  color: var(--secondary-color);
}

.footer-column h4 {
  font-size: 100%;
  font-weight: 600;
  margin-bottom: 15px !important;

}

ul.list-unstyled.contact-info {
  display: inline-grid;
}

ul.list-unstyled.contact-info li {
  display: inline-flex;
}

.contact-info li {
  margin-bottom: 8px;
  font-size: 17px;
  color: #040303;

  font-weight: 200;
}

.footer-social {
  display: flex;
  gap: 12px;
}

.footer-social a {
  width: 40px;
  height: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background-color: var(--secondary-color);
  color: #fff;
  font-size: 16px;
  transition: all 0.3s ease;
  text-decoration: none;
  color: #fff;

}

.footer-social a:hover {
  background-color: var(--secondary-color);
  color: #fff;
}



.footer-bottom {
  width: 100%;
  height: auto;
  padding: 20px 0px;
  font-family: var(--font) !important;

  border-top: 1px solid #fff3;
  text-align: center;
}

.copyright {
  color: #000;
  font-size: 14px;
  font-family: var(--font) !important;

  text-align: left;

  font-weight: 300;
}

.copyright.right {
  text-align: end;
  font-family: var(--font) !important;

}

.footer-top {
  margin-bottom: 15px;
}

/* WhatsApp float icon */
.whatsapp-float {
  position: fixed;
  bottom: 70px;
  right: 25px;
  width: 60px;
  height: 60px;
  background-color: #25D366;
  color: white;
  border-radius: 50%;
  text-align: center;
  font-size: 30px;
  line-height: 60px;
  z-index: 999;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
  transition: all 0.3s ease;
}

.whatsapp-float:hover {
  background-color: #1ebc59;
  transform: scale(1.05);
  color: var(--white-color);
}

/* About description section */
.about_description {
  padding: 30px 20px;
  font-family: var(--font) !important;

  background: #fff;
  position: relative;
}

.about_img_position {
  position: absolute;
  width: 52%;
  top: -89px;
  left: 30px;
}

.send_img_set {
  position: relative;
  width: 50%;
  margin-left: auto;
  display: block;
}

.about_container {
  display: flex;
  /* align-items: center; */
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 30px;
}

.about_left {
  flex: 1 1 40%;
  text-align: center;
  position: relative;
}

.plane-image {
  max-width: 100%;
  animation: floatMotion 3s ease-in-out infinite;
}

@keyframes floatMotion {
  0% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-10px);
  }

  100% {
    transform: translateY(0);
  }
}

.acp {
  position: absolute;
  width: 22%;
  right: 0;
  top: -6rem;
}

.acp2 {
  width: 37%;
  left: -6rem;
  bottom: -7rem;
  position: absolute;
}

.acp3 {
  width: 19%;
  left: -1rem;
  top: -4rem;
  position: absolute;
  z-index: 999;
  display: none;
}


.animation {
  animation: floatY 6s ease-in-out infinite;
}

@keyframes floatY {
  0% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(10px);
  }

  100% {
    transform: translateY(0);
  }
}





.about_right {
  flex: 1 1 55%;
  position: relative;
  margin-top: 60px;
}

.abt_page_ {
  width: 60%;
  margin-left: auto;
}

.abimg {
  position: absolute;
  right: 2rem;
  width: 55%;
  top: -141px;
}




.read-more {
  display: inline-block;
  margin-top: 15px;
  color: #000;
  font-weight: bold;
  text-decoration: none;
}

.about_services {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 20px;
  margin-top: 50px;
}

.service-box {
  border: 1px solid #eee;
  padding: 25px;
  text-align: center;
  transition: 0.3s;
  background: #f9f9f9;
}

.service-box i {
  color: var(--arrow-color);
  font-size: 28px;
}

.service-box {
  position: relative;
  overflow: hidden;
  z-index: 1;
  transition: color 0.4s ease-in-out;
}

.service-box::before {
  content: "";
  position: absolute;
  left: 0;
  width: 100%;
  height: 0%;
  background-color: var(--arrow-color);
  z-index: -1;
  transition: height 0.4s ease-in-out;
}

.service-box:nth-child(odd)::before {
  bottom: 0;
}

.service-box:nth-child(odd):hover::before {
  height: 100%;
}

.service-box:nth-child(even)::before {
  top: 0;
}

.service-box:nth-child(even):hover::before {
  height: 100%;
}

.service-box:hover {
  color: #fff;
}

.service-box:hover h4 {
  color: #fff;
  transition: 0.4s;
}

.service-box:hover p {
  color: #fff;
  transition: 0.4s;
}

.service-box h4 {
  margin-top: 15px;
  font-size: 18px;
  font-weight: 600;
}

.service-box p {
  font-size: 14px;
  color: #555;
  margin-top: 10px;
}


/* blog section  */


.blog-section .section-header {
  text-align: left;
  padding-top: 20px;
  position: relative;
  padding-bottom: 8px;
}







.blog-carousel {
  padding-bottom: 80px;
}

.blog-item {
  background: var(--white);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  /* margin: 15px; */
}

.blog-item:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.blog-img {
  position: relative;
  overflow: hidden;
  height: 220px;
}

.blog-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.blog-item:hover .blog-img img {
  transform: scale(1.1);
}

.blog-date {
  position: absolute;
  bottom: -1px;
  left: 0;
  background: var(--secondary-color);
  color: #fff;
  padding: 8px 15px;
  border-radius: 4px;
  font-size: 14px;
  font-weight: 600;
}

.blog-content {
  padding: 25px;
}

.blog-content h3 {
  font-size: 20px;
  color: var(--secondary-color);
  margin-bottom: 15px;
  line-height: 1.3;
  font-weight: 600;
}

.blog-content p {
  margin-bottom: 20px;
  font-size: 15px;
  color: var(--text-color);
}

.read-more {
  display: inline-block;
  color: var(--primary-color);
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
}

.read-more:hover {
  color: #fff;
}

.read-more i {
  margin-left: 5px;
  transition: all 0.3s ease;
}

.read-more:hover i {
  transform: translateX(5px);
}

/* Owl Carousel Navigation */
.owl-nav {
  position: absolute;
  top: -80px;
  right: 0;
}

.owl-nav button {
  width: 40px;
  height: 40px;
  background: var(--white) !important;
  color: var(--secondary-color) !important;
  border-radius: 50% !important;
  margin-left: 10px !important;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}

.owl-nav button:hover {
  background: var(--primary-color) !important;
  color: var(--white) !important;
}

.owl-dots {
  margin-top: 30px !important;
}

.owl-dots button.owl-dot span {
  width: 12px !important;
  height: 12px !important;
  margin: 5px 7px !important;
  background: #ddd !important;
  transition: all 0.3s ease;
}

.owl-dots button.owl-dot.active span {
  background: var(--primary-color) !important;
  width: 30px !important;
}

@media (max-width: 768px) {
  .section-header h2 {
    font-size: 28px;
  }

  .section-header p {
    font-size: 16px;
  }

  .owl-nav {
    top: -60px;
  }
}





.industry-section .section-header {
  text-align: left;
  margin-bottom: 40px;
  border-bottom: 1px solid #1e1e1e1a;
  padding-bottom: 2rem;
  /*background: url(../img/h1-bg01.png);*/
  background-position: right;
  background-position: center;
  background-repeat: no-repeat;

}




.industry-section .section-header .view-all {
  display: inline-block;
  margin-top: 10px;
  font-size: 14px;
  color: #000;
  text-decoration: none;
}

.industry-section .section-header .view-all i {
  margin-left: 5px;
}

.industry-carousel .owl-stage {
  display: flex;
}

.industry-card {
  display: flex;
  flex-direction: column;
  background: #fff;
  border: 1px solid #ddd;
  border-radius: 10px;
  overflow: hidden;
  min-height: 300px;
}

.card-text {
  padding: 16px;

  display: flex;
  flex-direction: column;
  justify-content: space-between;
  border: none;

}

.card-text h3 {
  font-size: 20px;
  margin: 10px 0;
  color: var(--secondary-color);
  font-weight: 600;
}

.card-text p {
  font-size: 17px;
  color: #555;
  margin: 0;
}

.card-text ul {
  list-style: none;
  padding: 0;
  margin-top: 1rem;
}

.icon-details {
  width: 35px;
}

.card-text ul li {
  display: flex;
  font-size: 17px;
}

.card-text ul li::before {
  content: "✔ ";
  color: var(--secondary-color);
  margin-right: 5px;
}

.card-text a {
  color: var(--secondary-color);
  font-weight: bold;
  font-size: 14px;
  text-decoration: none;
}

/* .card-image {
  width: 50%;
  background-size: cover;
  background-position: center;
} */

/* .card-image img{
  width: 100%;
  min-height: 400px;
  object-fit: cover;
} */


.process-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  margin-bottom: 40px;
}



.sub_headline {
  font-size: 15px;
  text-transform: uppercase;
  color: var(--primary-color);
  margin-bottom: 0.5rem;
  font-weight: 400;
  display: block;

}



.process-header .right {
  max-width: 500px;
  color: #444;
  font-size: 16px;
}

.process-card {
  background: #f8f8f8;
  border-radius: 10px;
  /* text-align: center; */
  padding: 30px 20px;
  position: relative;
  overflow: hidden;
  max-height: 100%;
  height: auto;
}

#myTab .nav-item .active {
  background-color: var(--secondary-color);
  color: #ffffff !important;

  border-radius: 30px;
}

#myTab .nav-item {
  margin: 0 5px;
}

#myTab .nav-item .nav-link {

  color: #000000;
  border-radius: 30px;
  border: 1px solid #1c14142d;
}

.nav-tabs {
  border-bottom: none !important;
}

.circle-image {
  /* width: 80px;
  height: 80px; */
  /* margin: 0 auto 20px; */
  /* border-radius: 50%; */
  overflow: hidden;
  position: relative;
}

.circle-image img {
  width: 140px !important;
  height: 140px !important;
  object-fit: cover;
  border-radius: 50%;
}

.step-number {
  font-size: 39px;
  font-weight: 900;
  color: #b9b2b2;
  position: absolute;
  top: 60px;
  right: 197px;
  z-index: 0;
}

.step-label {
  position: absolute;
  top: 30px;
  right: -4px;
  background: var(--secondary-color);
  color: #fff;
  font-size: 12px;
  /* transform: rotate(90deg); */
  padding: 5px 10px;
  font-weight: bold;
  z-index: 1;
  rotate: 90deg;
}

.process-card h3 {
  font-size: 18px;
  font-weight: bold;
  margin: 20px 0 10px;
  z-index: 2;
  position: relative;
  line-height: 28px;
  height: 25px;
}

.process-card p {
  font-size: 16px;
  color: #555;
  z-index: 2;
  position: relative;
  /* padding: 0 10px; */
}

.accordion-body {

  height: 230px;

  overflow-y: auto;


}



.marquee-section {
  position: relative;
  background: #fff;
  padding: 60px 20px;
  overflow: hidden;
}

.marquee {
  position: absolute;
  top: 50%;
  left: 0;
  width: 100%;
  white-space: nowrap;
  transform: translateY(-50%);
  z-index: 0;
  pointer-events: none;
}

.marquee .track {
  display: inline-block;
  animation: scroll 50s linear infinite;
  -webkit-animation: scroll 50s linear infinite;
}

.marquee:hover .track {
  animation-play-state: paused;
}

.marquee h1 {
  font-size: 81px;
  color: #f2f2f2;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 15px;
  white-space: nowrap;
}

@keyframes scroll {
  0% {
    transform: translateX(0%);
  }

  100% {
    transform: translateX(-50%);
  }
}

.content {
  position: relative;
  z-index: 2;
  text-align: center;
  color: #111;
}





.img1 {
  display: block;
}

.img2 {
  display: none;
}

header.sticky .img1 {
  display: none;
}

header.sticky .img2 {
  display: block;
}


/* product page section  */



.products-section {
  padding: 60px 0;
  /* text-align: center; */
}

.read-more_blog {
  color: var(--primary-color);
}



.product-card {
  background-color: #fff;
  border-radius: 6px;
  /* overflow: hidden; */
  transition: transform 0.3s;
  /* box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05); */
  position: relative;
}

.product-card:hover {
  transform: translateY(-5px);
}

.product-card img {
  width: 100%;
  height: 220px;
  object-fit: cover;
}

.product-content {
  padding: 15px 10px 10px 41px;
  text-align: left;
  background-color: #fff;
  width: 80%;
  position: absolute;
  top: 180px;
  right: 0;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

.product-content::after {
  background-color: #385280;
  content: '';
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  width: 18%;
  position: absolute;
  clip-path: polygon(0 0, 48% 49%, 100% 100%, 0% 100%);
}


.product-content h3 {
  font-size: 18px;
  margin-bottom: 10px;
  color: #1e1e1e;
  font-weight: 600;
}

.product-content p {
  font-size: 14px;
  color: #666;
  margin-bottom: 15px;
}

.d1 {
  margin-bottom: 3rem;
}

.read-more {
  display: inline-block;
  background: linear-gradient(to right, #bd0000e3 80%, #385280 80%);
  position: absolute;
  right: 1rem;
  color: white;
  padding: 4px 13px;
  font-size: 12px;
  text-decoration: none;
  border-radius: 3px;
  font-weight: bold;
  transition: background 0.3s;
  border-radius: 5px;
  bottom: -14px;
  font-weight: 300;
}

.read-more span {
  margin-left: 8px;
}

.clint_box .items {
  background-color: #eeeeee9e;
  padding: 25px;
  border-radius: 5px;
}

.clint_box .items img {
  width: 100%;
  height: 90px;
  object-fit: contain;
}

.clint_box {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 35px;

}

/* inner section */

.inner_section {
  padding: 230px 0;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}

.innter_content h2 {
  font-weight: 600;
  color: #000000;
  margin-bottom: 0.5rem;
}

/* about end  */


/* company time line  */
/* Basic Layout */



.timeline-tabs {
  display: flex;
  gap: 30px;
  /* border-bottom: 1px solid #ccc; */
  margin-bottom: 30px;
}

.counter_box {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 5px;
}

.plus {
  color: #222;
  font-size: 2rem;
  display: inline-block;
}

.timeline-item .tab {
  background: none;
  border: none;
  font-weight: 600;
  color: #000000;
  font-size: 15px;
  cursor: pointer;
  padding: 10px 0;
  transition: color 0.3s;

}

.content-block {
  height: 289px;
  overflow-y: scroll;
}

.timeline-item .tab.active {
  color: #fff;
  background-color: rgb(56, 82, 128);
  padding: 12px 22px;
  border-radius: 5px;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  -ms-border-radius: 5px;
  -o-border-radius: 5px;
}

.content-area {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  margin: 0 30px;
  justify-content: center;
  align-items: center;
}



.content-are {
  margin-left: 2rem;

}

/* Content */
.text-content-wrapper {
  flex: 1;
  min-width: 300px;
  position: relative;
}

.content-block {
  display: none;
  opacity: 0;
  transform: translateX(-30px);
  transition: all 0.5s ease;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
}

.content-block h3 {
  color: #000;
  font-size: 24px;
  font-weight: 600;
}

.content-block strong {
  color: var(--arrow-color);
  font-size: 18px;
}

.content-block p {
  font-weight: 300;
  color: #000;
  font-size: 18px;
  margin: 0.5rem 0;

}

.tab-p {
  color: var(--text-color) !important;
  font-size: 18px !important;
}

.content-block.active {
  display: block;
  opacity: 1;
  transform: translateX(0);
  position: relative;
}

.content-block ul li {
  list-style: none;
  padding-bottom: 0.9rem;
  display: flex;
  gap: 10px;
  font-size: 18px;

}

.content-block ul li i {
  color: var(--secondary-color);
}

.content-block ul {
  margin: 0;
  padding: 0;
  margin-top: 2rem;
}

/* Images */
.image-slider {
  flex: 1;
  min-width: 300px;
  position: relative;
}

.image-block {
  display: none;
  width: 100%;
  border-radius: 8px;
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
  transform: translateX(30px);
  transition: all 0.5s ease;
  /* clip-path: polygon(20% 0%, 100% 0, 100% 20%, 100% 80%, 100% 100%, 0 100%, 0% 80%, 0% 20%); */
}

.image-block.active {
  display: block;
  opacity: 1;
  transform: translateX(0);
  position: relative;
}

.timeline-tabs {
  display: flex;
  justify-content: space-between;
  align-items: center;
  /* border-bottom: 1px solid #ccc; */
  margin: 50px 0 0 0;
  position: relative;
  padding-bottom: 40px;
  /* max-width: 60%;
  width: 100%; */
}

.timeline-item {
  text-align: center;
  position: relative;
  flex: 1;
}

.timeline-tabs::after {
  content: '';
  left: 0;
  right: 0;
  /* top: 0; */
  bottom: 45px;
  background: #e3e0e0;
  width: 100%;
  height: 1px;
  position: absolute;
}

.tab {
  background: none;
  border: none;
  font-weight: 600;
  color: #000;
  font-size: 16px;
  cursor: pointer;
  transition: color 0.3s;
}

.tab.active {
  color: #fff;
}

.timeline-item .dot {
  width: 10px;
  height: 10px;
  background-color: #ccc;
  border-radius: 50%;
  display: block;
  margin: 8px auto 0;
  transition: all 0.3s ease;
  position: relative;
  z-index: 55;
}

.timeline-item .dot.active {
  background-color: var(--secondary-color);
}



.testimonial-container {
  padding: 0 35px;
}

.partners-section {
  padding: 29px 20px;
}



.faq-section {
  margin: 60px 0;
}


.faq-box {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  margin: auto;
  flex-direction: row;
}


.faq-image {
  flex: 1;
  margin-right: 40px;
}

.faq-image img {
  width: 100%;
  border-radius: 6px;
}

.faq-content {
  flex: 1;
}





.faq-item {
  border-top: 1px solid #ccc;
  padding: 18px 0;
  cursor: pointer;
  transition: 0.3s;
}

.faq-item:last-child {
  border-bottom: 1px solid #ccc;
}

.faq-question {
  font-size: 18px;
  font-weight: 600;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.faq-answer {
  margin-top: 8px;
  font-size: 15px;
  line-height: 1.6;
  color: #555;
  display: none;
}

.faq-item.active .faq-answer {
  display: block;
}

.faq-item.active .faq-question::after {
  content: '−';
  font-size: 24px;
}

.faq-question::after {
  content: '+';
  font-size: 20px;
  transition: 0.3s;
}

.view-all {
  margin-top: 30px;
  display: inline-flex;
  align-items: center;
  font-weight: 600;
  font-size: 14px;
  color: #111;
  text-decoration: none;
}

.view-all span {
  margin-left: 6px;
  display: inline-block;
  background: #000;
  color: #fff;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  text-align: center;
  line-height: 20px;
  font-size: 12px;
}



.contact {
  padding: 80px 20px;
  max-width: 1100px;
  margin: auto;
  position: relative;
  /*background: url(../img/bg-faq.png) no-repeat;*/
  background-size: 65%;
  background-position: right bottom;
}

.contact::after {
  content: '';
  background: url('../img/bg-faq-640x350.png') no-repeat right bottom;
  background-size: contain;
  position: absolute;
  bottom: 0;
  right: 0;
  width: 300px;
  height: 200px;
  opacity: 0.05;
  pointer-events: none;
}

.contact h2 {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 10px;
}

.contact p {
  font-size: 14px;
  color: #666;
  margin-bottom: 40px;
}

.contact form {
  display: flex;
  flex-wrap: wrap;
  gap: 35px;
}

.form-group {
  flex: 1 1 48%;
  display: flex;
  flex-direction: column;
}

.form-group.full {
  flex: 1 1 100%;
}

.form-group input,
.form-group textarea {
  border: none;
  border-bottom: 1px solid #000;
  padding: 10px 0;
  font-size: 16px;
  outline: none;
  resize: none;
  background: transparent;
}

.form-group textarea {
  height: 45px;
}

.submit-btn {
  margin-top: 30px;
  display: inline-flex;
  align-items: center;
  font-weight: 600;
  font-size: 14px;
  background: none;
  border: none;
  cursor: pointer;
}

.submit-btn span {
  margin-left: 8px;
  display: inline-block;
  background: #000;
  color: #fff;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  text-align: center;
  line-height: 22px;
  font-size: 12px;
}

@media (max-width: 768px) {
  .form-group {
    flex: 1 1 100%;
  }

  .contact::after {
    display: none;
  }
}





.section-title {
  text-align: left;
  margin-bottom: 40px;
}

.section-title .label {
  text-transform: uppercase;
  font-size: 12px;
  letter-spacing: 1px;
  color: #e74c3c;
  font-weight: 600;
}

.section-title h2 {
  font-size: 36px;
  font-weight: 700;
  margin: 10px 0;
}

.contact-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
}

.contact-box i {
  color: var(--secondary-color);
}

.contact-box {
  border-top: 1px solid #ccc;
  padding-top: 20px;
}

.contact-box h3 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 10px;
  color: #000;
}

.contact-box p {
  margin: 0 0 10px;
  color: #030303;
  font-size: 14px;
}

.contact-box a {
  color: var(--secondary-color);
  text-decoration: none;
  display: inline-block;
  margin-bottom: 10px;
}

.contact-box .phone {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #000;
  font-weight: 500;
}

.contact-box .phone i {
  color: var(--secondary-color);

  font-size: 18px;
}





.achievement-section {
  background-image: url(../img/banner/b2.jpg);

  position: relative;
  z-index: 1;
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
}

.achievement-section .overlay {
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  background-color: #f2f2f2bf;
}


.male {
  width: 5% !important;

}

.achievement-section .container-fluid {
  position: relative;
  z-index: 5;
}



.achievement-header {
  max-width: 500px;
  margin-bottom: 40px;
}

.achievement-header span {
  color: orange;
  font-size: 12px;
  letter-spacing: 1px;
  font-weight: bold;
}

.achievement-header h2 {
  font-size: 48px;
  line-height: 1.2;
  margin-top: 10px;


}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  flex-wrap: wrap;
  max-width: 1366px;
  margin: 0 auto;
}

.stats-grid .stat-box:first-child {
  border: none !important;
  background: none;
  width: 581px;
  text-align: left;

}

.stat-box:nth-child(4) {
  width: 60%;
  margin-left: auto;
}

.stat-box {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(0, 0, 0, 0.348);

  display: flex;
  flex-direction: column;
  justify-content: center;

  height: 250px;
  text-align: center;
}

.stat-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.stat-number {
  font-size: 52px;
  color: #222;
  font-weight: 900;
  margin-bottom: 10px;
}

.stat-label {
  font-size: 14px;
  color: #222;

  text-transform: uppercase;
  line-height: 1.5;
}

.image-box img {
  border: none;
}

@media (max-width: 991px) {
  .stats-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 600px) {
  .stats-grid {
    grid-template-columns: 1fr;
  }

  .achievement-header h2 {
    font-size: 36px;
  }
}

.achievement-header span {
  color: #fff;
}

.achievement-header h2 {
  color: #222;

}



.testimonial-wrapper {
  background: #f5f5f5;
  position: relative;
  overflow: hidden;
}

.testimonial-container {
  display: flex;
  margin: auto;
  flex-wrap: wrap;
}

.testimonial-left {
  flex: 1 1 25%;
  padding-right: 20px;
  position: relative;
}

.testimonial-subtitle {
  text-transform: uppercase;
  font-size: 17px;
  font-weight: 500;
  color: #000000;
  letter-spacing: 1.5px;
  display: block;
  margin-bottom: 30px;
}

.testimonial-icon-circle {
  width: 80px;
  height: 80px;
  background-color: #ddd;
  border-radius: 50%;
  position: relative;
}

.quote-icon {
  font-size: 5rem;
  color: #ff5300;
  position: absolute;
  left: -30px;
  bottom: -30px;
}

.testimonial-right {
  flex: 1 1 75%;
  position: relative;
  overflow: hidden;
  padding-right: 60px;
}

.testimonial-slider {
  position: relative;
  /* height: 280px; */
}

.testimonial-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  opacity: 0;
  transform: translateY(100%);
  transition: all 0.6s ease;
}

.testimonial-slide.active {
  opacity: 1;
  transform: translateY(0);
  z-index: 1;
}

.testimonial-text {
  font-size: 29px;
  line-height: 1.4;
  font-weight: 500;
  color: #111;
  margin-bottom: 25px;
}

.testimonial-author {
  font-weight: 600;
  font-size: 18px;
  color: #222;
  margin-bottom: 4px;
}

.testimonial-role {
  font-size: 13px;
  color: #777;
}

.testimonial-dots {
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.testimonial-dots .dot {
  width: 12px;
  height: 12px;
  background-color: #000;
  border-radius: 50%;
  cursor: pointer;
  transition: all 0.3s ease;
}

.testimonial-dots .dot.active {
  width: 16px;
  height: 16px;
  background-color: transparent;
  border: 1.5px solid #d9d9d9;
  position: relative;
}

.testimonial-dots .dot.active::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 8px;
  height: 8px;
  background-color: var(--secondary-color);
  border-radius: 50%;
  transform: translate(-50%, -50%);
}

/* Responsive */
@media (max-width: 768px) {
  .testimonial-container {
    flex-direction: column;
  }

  .testimonial-right {
    padding-right: 0;
    margin-top: 30px;
  }

  .testimonial-dots {
    right: 10px;
  }
}




.partners-section {
  padding: 60px 20px;
  background: #fff;

}

.partners-header {
  margin-bottom: 40px;
}



.partner-subtitle .dot {
  width: 8px;
  height: 8px;
  background-color: #ff5300;
  border-radius: 50%;
  display: inline-block;
}



.partner-carousel .partner-logo {
  padding: 15px;
  opacity: 0.7;
  transition: 0.3s ease;
  filter: grayscale(0%);
}

.partner-carousel .partner-logo:hover {
  filter: grayscale(100%);

  opacity: 1;
}

.partner-carousel img {
  max-height: 60px;
  width: auto;
  margin: auto;
}


.history-section {
  position: relative;
}



#circle {
  position: relative;
  width: 200px;
  height: 200px;
  position: absolute;
  right: 3rem;
  top: -4rem;
}


#circle text {
  font-family: var(--font) !important;

  font-size: 16px;
  font-weight: bold;
}

#circle svg {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;

  animation: rotate 8s linear infinite reverse;
}

.star {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 40px;
  font-weight: bold;
  color: black;
  z-index: 2;
}

@keyframes rotate {
  from {
    transform: rotate(360deg);
  }

  to {
    transform: rotate(0deg);
  }
}

/* gallery section  */

.filter-menu {
  display: flex;
  gap: 12px;
  margin-bottom: 30px;
  border-bottom: 1px solid #ddd;
  padding-bottom: 10px;
  align-content: center;
  justify-content: center;
  flex-wrap: wrap;
}

.filter-menu button {
  background: none;
  border: none;
  font-size: 15px;
  cursor: pointer;
  padding: 5px 6px;
  position: relative;
}

.filter-menu button.active {
  color: #fff;
  font-weight: bold;
  padding: 6px 22px;
  background: var(--arrow-color);
  /* border-radius: 5px; */
}

.career_wrapper {
  background-color: #f5f5f5;
  padding: 35px;
}

.filter-menu button.active::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -2px;
  width: 100%;
  height: 2px;
  background: var(--accent-color);
}

.home_about {
  width: 100%;
}

#bearingFaq {
  height: 400px;
  overflow-y: scroll;
}
.gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr); /* 3 equal columns */
  gap: 20px; /* space between items */
}

.gallery-item img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 8px;
}

/* For tablets */
@media (max-width: 768px) {
  .gallery {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* For mobile */
@media (max-width: 500px) {
  .gallery {
    grid-template-columns: repeat(1, 1fr);
  }
}


.make-in-india {
  margin-top: 0.5rem;
  width: 100px !important;
}


/* servicce section  */

.service-card {
  border: 1px solid #eee;
  transition: all 0.3s ease;
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.05);
}

.service-card:hover {
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
}

.service-card img {
  width: 100%;
  height: 250px;
  object-fit: cover;

}

.service-card .card-body h5 {
  font-size: 18px;
  font-weight: 600;
  font-family: var(--font);
  color: var(--primary-color);
}

.service-card {
  position: relative;
  z-index: 50;
}

.service-card .card-body p {
  font-size: 16px;
  color: #666;
  min-height: 60px;
}

.service-card .card-body a {
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  color: #000;
}

.service-card .card-body a:hover {
  color: var(--secondary-color);
  transition: 0.4s all ease;
}

.service-card .card-body a i {
  font-size: 12px;
  margin-left: 5px;
}





/* service details page  */
.sidebar {
  position: relative;
  /* top: 100px; */
  padding: 35px;
  background: #f9f9f9;
  border-right: 1px solid #eee;
  /* border: 1px solid #00000025; */
  border-radius: 5px;
}

.sricky_bar {
  position: sticky;
  top: 100px;
}

.sidebar h6 {
  font-weight: 600;
  font-size: 1.3rem;
  color: var(--arrow-color);
}

.service-links a {
  display: block;
  padding: 8px 0;
  color: #000000;
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 600;
}

.service-links a:hover {
  color: var(--secondary-color);
}

.main-content {
  padding: 12px;
}

.main-content h2 {
  color: var(--primary-color);
  font-weight: 600;
  margin-bottom: 0.7rem;
  font-size: 2rem;
}

.service-links a.active {
  color: red;
  /* text red for active */
  font-weight: bold;
  /* optional to make it stand out */
}





/* .main-content img {
  width: 60%;
  height: 60%;
  object-fit: cover;
  margin-bottom: 20px;
} */
.main_img {
  width: 35%;
  margin: 0 auto;
  display: flex;
}

p {
  font-size: 18px;
}


/* faq section */
.faq-heading {
  font-weight: 700;
  font-size: 2rem;
  margin-bottom: 0.5rem;
}

.faq-description {
  color: #666;
  margin-bottom: 30px;
}

.faq-item {
  border-top: 1px solid #ccc;
  padding: 20px 0;
  cursor: pointer;
}

.faq-item:last-child {
  border-bottom: 1px solid #ccc;
}

.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-weight: 600;
  font-size: 1.1rem;
}

.faq-answer {
  margin-top: 10px;
  color: #555;
  display: none;
}

.faq-item.active .faq-answer {
  display: block;
}

.faq-icon {
  margin-right: 10px;
  font-size: 1.2rem;
  color: #000;
}

.download_brocesure {
  padding: 25px;
  background-color: aliceblue;
  border-radius: 5px;
}

.download_brocesure h5 {
  font-weight: 600;
  text-align: center;
  margin-bottom: 0.6rem;
}

.download_brocesure p {
  color: #000000;
  text-align: center;
}



/* why choose service  */
.why-choose-service h2 {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 0.5rem !important;
}



.product_accodiant .accordion-button {
  font-weight: 600;
  font-size: 1.2rem;
  border: 1px solid #ddd;
}

.product_accodiant .accordion-item {
  margin-bottom: 1rem;
  border: 1px solid #0000005e;

}

.product_accodiant .accordion-body p {
  font-size: 18px;
}

.why-choose-service p.section-description {
  color: #555;
  margin-bottom: 40px;
}

.services-wrapper {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  padding: 0 0;
}

.service-boxs {
  display: flex;
  flex: 1 1 calc(50% - 30px);
  align-items: flex-start;
  text-align: left !important;
  background-color: aliceblue;
  padding: 25px;
}

.icon-box {
  background-color: var(--arrow-color);
  padding: 15px;
  border-radius: 4px;
  margin-right: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 60px;
  width: 60px;
}

.icon-box i {
  font-size: 30px;
  color: #fff;
}

.service-title {
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--dark-bg);
  margin-bottom: 5px;
}

.service-desc {
  color: #444;
  font-size: 0.95rem;
}

@media (max-width: 767.98px) {
  .service-boxs {
    flex: 1 1 100%;
  }
}

.service-page-content {
  padding: 0 30px;
}



/* service contact  */

.contact-box {
  background-color: #e3e3e3;
  color: #ffffff;
  padding: 40px 30px;
  border-radius: 10px;
  /* max-width: 400px; */
}

.service-links {
  display: flex;
  gap: 10px;
  flex-direction: column;
}

.service-links a:hover {
  background-color: aliceblue;
  transition: 0.4s all ease;
}

.accordion-button:focus,
.accordion-button:not(.collapsed) {
  border: none !important;
  box-shadow: none !important;
}



.contact-box img {
  width: 150px;
  margin-bottom: 20px;
}

.contact-box h4 {
  font-weight: 700;
  color: #000000;

}

.contact-item span {
  color: #000000;

}

.contact-box p {
  color: #000000;
}

.contact-item {
  display: flex;
  align-items: center;
  margin-bottom: 15px;
  font-size: 16px;
}

.contact-item i {
  color: #000000;
  margin-right: 12px;
  font-size: 18px;
}

.contact-item a {
  color: #ff5e00;
  text-decoration: none;
  font-weight: 600;
}

.contact-item a:hover {
  text-decoration: underline;
}



/* .contact-link {
  display: inline-flex;
  align-items: center;
  font-weight: bold;
  margin-top: 20px;
  text-decoration: none;
  color: #ffffff;
} */

.contact-link i {
  background-color: rgb(0, 0, 0);
  color: rgb(255, 253, 253);
  border-radius: 50%;
  padding: 8px;
  margin-left: 10px;
  font-size: 12px;
}

.product-box {
  background-color: #f5f4e8;
}

.product-box p {
  color: #000000;
  margin-top: 0.7rem;

}

.product-box .contact-item a {
  color: #000000;

}

.contact-hr {
  border-top: 1px solid #fff;
  margin: 25px 0;
}

.contact-link {
  color: #000000 !important;
  border: 1px solid #000000;
  padding: 12px;
  border-radius: 5px;
}


.service-page-content h3 {
  background: aliceblue;
  display: inline-block;
  padding: 9px;
  border-bottom: 2px solid var(--secondary-color);

  position: relative;
}


#resultsBody tr td {
  border: 1px solid #00000050;
}


#resultsBody:nth-child(2) td {
  background-color: aliceblue;
}