/*** Spinner Start ***/
/*** Spinner ***/
#spinner {
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.5s ease-out, visibility 0s linear 0.5s;
  z-index: 99999;
}

#spinner.show {
  transition: opacity 0.5s ease-out, visibility 0s linear 0s;
  visibility: visible;
  opacity: 1;
}
/*** Spinner End ***/

.back-to-top {
  position: fixed;
  right: 30px;
  bottom: 30px;
  display: flex;
  width: 45px;
  height: 45px;
  align-items: center;
  justify-content: center;
  transition: 0.5s;
  z-index: 99;
}

/*** Button Start ***/
.btn {
  font-weight: 600;
  transition: 0.5s;
}

.btn-square {
  width: 32px;
  height: 32px;
}

.btn-sm-square {
  width: 34px;
  height: 34px;
}

.btn-md-square {
  width: 44px;
  height: 44px;
}

.btn-lg-square {
  width: 56px;
  height: 56px;
}

.btn-square,
.btn-sm-square,
.btn-md-square,
.btn-lg-square {
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: normal;
  border-radius: 50%;
}

.btn.btn-primary {
  background: var(--bs-secondary) !important;
  color: var(--bs-white) !important;
  font-family: "Poppins", sans-serif;
  font-weight: 400;
  transition: 0.5s;
}

.btn.btn.btn-primary:hover {
  background: var(--bs-primary) !important;
  color: var(--bs-secondary);
  border: 1px solid var(--bs-secondary);
}

.btn.btn-secondary {
  background: transparent;
  color: var(--bs-secondary);
  font-family: "Poppins", sans-serif;
  font-weight: 400;
  border: none;
  transition: 0.5s;
}

.btn.btn-secondary:hover {
  color: var(--bs-primary) !important;
}

/*** Section Title Start ***/
.section-title {
  max-width: 900px;
  text-align: center;
  margin: 0 auto;
}

.section-title .sub-style {
  position: relative;
  display: inline-block;
  text-transform: uppercase;
  color: var(--bs-primary);
}

.section-title .sub-style::before {
  content: "";
  width: 100px;
  position: absolute;
  bottom: 50%;
  left: 0;
  transform: translateY(-50%);
  margin-bottom: -6px;
  margin-left: -100px;
  border: 1px solid var(--bs-secondary) !important;
}

.section-title .sub-style::after {
  content: "";
  width: 50px;
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  margin-top: -8px;
  margin-left: -50px;
  border: 1px solid var(--bs-primary) !important;
}

.sub-title {
  position: relative;
  display: inline-block;
  text-transform: uppercase;
  color: var(--bs-primary);
}

.sub-title::before {
  content: "";
  width: 100px;
  position: absolute;
  bottom: 50%;
  right: 0;
  transform: translateY(-50%);
  margin-bottom: -8px;
  margin-right: -100px;
  border: 1px solid var(--bs-secondary) !important;
}

.sub-title::after {
  content: "";
  width: 50px;
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  margin-top: -6px;
  margin-right: -50px;
  border: 1px solid var(--bs-primary) !important;
}

/* Mobile version */
@media (max-width: 576px) {
  .section-title {
    max-width: 100%;
    padding: 0 15px;
    text-align: center;
  }

  .section-title .sub-style,
  .sub-title {
    font-size: 14px;
    letter-spacing: 1px;
  }

  /* LEFT DECORATIVE LINES */
  .section-title .sub-style::before {
    width: 40px;
    margin-left: -45px;
    margin-bottom: -4px;
  }

  .section-title .sub-style::after {
    width: 20px;
    margin-left: -25px;
    margin-top: -6px;
  }

  /* RIGHT DECORATIVE LINES */
  .sub-title::before {
    width: 40px;
    margin-right: -45px;
    margin-bottom: -6px;
  }

  .sub-title::after {
    width: 20px;
    margin-right: -25px;
    margin-top: -4px;
  }
}

/*** Topbar Start ***/
.fixed-top .container {
  transition: 0.5s;
}

.topbar {
  padding: 2px 10px 2px 20px;
  background: var(--bs-primary) !important;
}

.topbar a,
.topbar a i {
  transition: 0.5s;
}

.topbar a:hover,
.topbar a i:hover {
  color: var(--bs-secondary) !important;
}

@media (max-width: 768px) {
  .topbar {
    display: none;
  }
}
/*** Topbar End ***/

/*** Navbar ***/
.navbar-light .navbar-nav .nav-link {
 font-family: "Poppins", sans-serif;
    position: relative;
    margin-right: 40px;
    padding: 25px 0;
    color: #000 !important;
    font-size: 15px;
    font-weight: 600;
    outline: none;
    transition: 0.5s;
    text-transform: uppercase;
}

.sticky-top .navbar-light .navbar-nav .nav-link {
  padding: 20px 0;
  color: var(--bs-primary) !important;
}

.navbar-light .navbar-nav .nav-link:hover,
.navbar-light .navbar-nav .nav-link.active {
  color: var(--bs-secondary) !important;
}

/* ===== BRAND ALIGNMENT ===== */
.navbar-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}

/* Logo default */
.navbar-light .navbar-brand img {
  max-height: 60px;
  width: auto;
  transition: max-height 0.5s ease;
}

/* Sticky shrink */
.sticky-top.navbar-light .navbar-brand img {
  max-height: 45px;
}

/* Text */
.brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}

.brand-name {
  font-size: 30px;
  font-weight: 700;
  color: #001248;
  margin-top: 27px;
  text-transform: uppercase;
}

@media (max-width: 768px) {
  .navbar-light .navbar-brand img {
    max-height: 50px;
  }

  .sticky-top.navbar-light .navbar-brand img {
    max-height: 40px;
  }

  .brand-name {
    font-size: 20px;
  }
}

.navbar .dropdown-toggle::after {
  border: none;
  content: "\f107";
  font-family: "Font Awesome 5 Free";
  font-weight: 600;
  vertical-align: middle;
}

@media (min-width: 1200px) {
  .navbar .nav-item .dropdown-menu {
    display: block;
    visibility: hidden;
    top: 100%;
    transform: rotateX(-75deg);
    transform-origin: 0% 0%;
    border: 0;
    border-radius: 10px;
    transition: 0.5s;
    opacity: 0;
  }
}

.dropdown .dropdown-menu a:hover {
  background: var(--bs-primary);
  color: var(--bs-secondary);
}

.navbar .nav-item:hover .dropdown-menu {
  transform: rotateX(0deg);
  visibility: visible;
  background: var(--bs-light) !important;
  transition: 0.5s;
  opacity: 1;
}

@media (max-width: 991.98px) {
  .sticky-top {
    position: relative;
    background: var(--bs-white);
  }

  .navbar.navbar-expand-lg .navbar-toggler {
    padding: 10px 20px;
    border: 1px solid var(--bs-primary) !important;
    color: var(--bs-primary);
  }

  .navbar-light .navbar-collapse {
    margin-top: 15px;
    border-top: 1px solid #dddddd;
  }

  .navbar-light .navbar-nav .nav-link,
  .sticky-top .navbar-light .navbar-nav .nav-link {
    padding: 10px 0;
    margin-left: 0;
    color: var(--bs-dark) !important;
  }

  .navbar-light .navbar-brand img {
    max-height: 45px;
  }
}

@media (min-width: 991.98px) {
  .sticky-top .navbar-light {
    background: var(--bs-light) !important;
  }

  /*** Top and Bottom borders go out ***/
  .navbar-light .navbar-nav .nav-link:after,
  .navbar-light .navbar-nav .nav-link::before {
    position: absolute;
    content: "";
    top: 30px;
    bottom: 30px;
    left: 0px;
    width: 100%;
    height: 2px;
    background: var(--bs-primary);
    opacity: 0;
    transition: all 0.5s;
  }

  .navbar-light .navbar-nav .nav-link:before {
    bottom: auto;
  }

  .navbar-light .navbar-nav .nav-link:after {
    top: auto;
  }

  .navbar-light .navbar-nav .nav-link:hover:before,
  .navbar-light .navbar-nav .nav-link.active:before {
    top: 20px;
    opacity: 1;
  }

  .navbar-light .navbar-nav .nav-link:hover::after,
  .navbar-light .navbar-nav .nav-link.active::after {
    bottom: 20px;
    opacity: 1;
  }
}

#searchModal .modal-content {
  background: rgba(240, 245, 251, 0.5);
}
/*** Navbar End ***/

/*** Single Page Hero Header Start ***/
.bg-contact{
  background: url(../images/contact-ban.png);
  background-position: center center;
  background-repeat: no-repeat;
  background-attachment: initial;
  background-size: cover;
  padding: 100px 0 60px 0;
}
.pro-ban {
  background: url(../images/product-banner.png);
  background-position: center center;
  background-repeat: no-repeat;
  background-attachment: initial;
  background-size: cover;
  padding: 100px 0 60px 0;
}

.bg-breadcrumb {
  background: url(../images/breadcrumb.png);
  background-position: center center;
  background-repeat: no-repeat;
  background-attachment: initial;
  background-size: cover;
  padding: 100px 0 60px 0;
}
/* Breadcrumb container with padding & shadow */
.shadow-breadcrumb {
  display: flex;
  justify-content: center;
  align-items: center;
  list-style: none;
  background: #1f1f1f;
  padding: 12px 20px;
  box-shadow:
    rgba(0, 0, 0, 0.09) 0px 2px 1px,
    rgba(0, 0, 0, 0.09) 0px 4px 2px,
    rgba(0, 0, 0, 0.09) 0px 8px 4px,
    rgba(0, 0, 0, 0.09) 0px 16px 8px,
    rgba(0, 0, 0, 0.09) 0px 32px 16px;
}

/* Separator */
.shadow-breadcrumb .breadcrumb-item + .breadcrumb-item::before {
  content: "›";
  color: #aaa;
  padding: 0 10px;
  font-size: 16px;
}

/* Links */
.shadow-breadcrumb .breadcrumb-item a {
  color: #fff;
  text-decoration: none;
  transition: color 0.3s ease;
}

.shadow-breadcrumb .breadcrumb-item a:hover {
  color: var(--es-red);
}

/* Active breadcrumb (even if <a>) */
.shadow-breadcrumb .breadcrumb-item.active a,
.shadow-breadcrumb .breadcrumb-item.active {
  color: var(--es-red);
  font-weight: 600;
  pointer-events: none; /* disables clicking */
  cursor: default;
  text-decoration: none;
}

/* Responsive for mobile */
@media(max-width:576px){
  .shadow-breadcrumb {
    flex-direction: column;
    padding: 10px 15px;
    font-size: 14px;
  }
  .shadow-breadcrumb .breadcrumb-item + .breadcrumb-item::before {
    display: none;
  }
}

/*** Single Page Hero Header End ***/

/*** Carousel Hero Header Start ***/
.carousel-header .carousel-control-prev .carousel-control-prev-icon,
.carousel-header .carousel-control-next .carousel-control-next-icon {
  width: 2rem;
  height: 2rem;
  border-radius: 50%;
  background-size: 60% 60%;
  transition: 0.5s;
}

.carousel-header .carousel-control-next .carousel-control-next-icon {
  margin-left: 0;
}

.carousel-header .carousel .carousel-indicators {
  padding-bottom: 0;
  transition: 0.5s;
}

.carousel-header .carousel .carousel-indicators li,
.carousel-header .carousel .carousel-indicators li,
.carousel-header .carousel .carousel-indicators li {
  width: 8px;
  height: 8px;
  border: 8px solid var(--bs-primary);
  border-radius: 50%;
  margin-right: 30px;
  transition: 0.5s;
}

.carousel-header .carousel .carousel-indicators li.active {
  width: 8px;
  height: 8px;
  border: 8px solid var(--bs-secondary);
}

/*** Carousel Hero Header End ***/

/*** Counter Facts Start ***/
.counter-facts {
  background: linear-gradient(rgba(31, 31, 31, 0.9), rgba(26, 25, 25, 0.8)),
    url(../images/page-banner.jpg);
  background-size: cover;
  background-attachment: fixed;
  background-position: center center;
  background-repeat: no-repeat;
}

.counter-facts .counter {
  position: relative;
  text-align: center;
  width: 200px;
  min-height: 215px;
  padding: 10px 15px;
  margin: 0 auto;
  border-radius: 100px;
  box-shadow: 0 8px 5px rgba(0, 0, 0, 0.2);
  background: var(--bs-white);
}

.counter-facts .counter:before {
  content: "";
  position: absolute;
  height: 105px;
  width: 100%;
  left: 0;
  top: 0;
  border-radius: 10px 10px 0 0;
  background-color: var(--bs-primary);
}
.counter-facts .counter .counter-icon {
  position: relative;
  width: 120px;
  height: 100px;
  margin: 0 auto 10px;
  border-radius: 10px 10px 0 0;
  transform: translateY(-20px);
  font-size: 50px;
  line-height: 90px;
  color: var(--bs-secondary);
  background: rgba(1, 143, 252, 0.5);
  clip-path: polygon(0% 0%, 100% 0, 100% 70%, 50% 100%, 0 70%);
}
.counter-facts .counter .counter-icon:before {
  content: "";
  position: absolute;
  width: 120px;
  height: 90px;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  border-radius: 10px 10px 0 0;
  background: rgba(0, 58, 102, 0.5);
  z-index: -1;
  clip-path: polygon(0% 0%, 100% 0, 100% 70%, 50% 100%, 0 70%);
}
.counter-facts .counter:hover .counter-icon i {
  transform: rotate(360deg);
  transition: all 0.3s ease;
}
.counter-facts .counter h3 {
  color: var(--bs-primary);
  font-size: 17px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin: 0 0 5px 0;
}
.counter-facts .counter .counter-value {
  font-size: 30px;
  font-weight: 700;
  display: block;
  color: var(--bs-secondary);
}

@media screen and (max-width: 1200px) {
  .counter-facts .counter {
    margin-bottom: 40px;
  }
}
/*** Counter Facts End ***/

/*** service Start ***/
.service .service-item {
  position: relative;
  overflow: hidden;
}

.service .service-item .service-inner .service-title {
  position: relative;
  margin-top: -30px;
  text-align: center;
  transition: 0.5s;
}

.service .service-item .service-inner .service-title .service-content {
  position: absolute;
  bottom: -100%;
  left: 0;
  margin-left: 30px;
  margin-right: 30px;
  text-align: center;
  border-radius: 10px;
  background: var(--bs-primary);
  opacity: 0;
  transition: 0.5s;
}

.service .service-item:hover .service-inner .service-title .service-content {
  bottom: 0;
  opacity: 1;
}

.service .service-item .service-inner .service-title .service-content a h4 {
  border-bottom: 1px solid rgba(256, 256, 256, 0.1);
}

.service .service-item .service-inner .service-title .service-title-name {
  transition: 0.5s;
}

.service .service-item:hover .service-inner .service-title .service-title-name {
  opacity: 0;
}

.service .service-item .service-inner .service-img {
  position: relative;
  border-radius: 10px;
  overflow: hidden;
}

.service .service-item .service-inner .service-img::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 0;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.5);
  transition: 0.5s;
  opacity: 0;
}

.service .service-item:hover .service-inner .service-img::after {
  height: 100%;
  opacity: 1;
}

.service .service-item .service-inner .service-img img {
  transition: 0.5s;
}

.service .service-item:hover .service-inner .service-img img {
  transform: scale(1.3);
}
/*** Service End ***/

/*** Features Start ***/
.features .feature-item {
  position: relative;
  box-shadow: rgba(60, 64, 67, 0.3) 0px 1px 2px 0px,
    rgba(60, 64, 67, 0.15) 0px 1px 3px 1px;
  border-radius: 10px;
}

.features .feature-item::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 0;
  bottom: 0;
  left: 0;
  border-radius: 10px;
  background: rgba(0, 58, 102, 0.1);
  z-index: -1;
  transition: 0.5s;
}

.features .feature-item:hover::after {
  height: 100%;
}

.features .feature-item .feature-icon {
  width: 120px;
  height: 120px;
  border-radius: 10px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  transition: 0.5s;
  box-shadow: rgba(0, 0, 0, 0.16) 0px 3px 6px, rgba(0, 0, 0, 0.23) 0px 3px 6px;
}

.features .feature-item:hover .feature-icon {
  border-radius: 50%;
  background: var(--bs-white) !important;
}

.features .feature-item .feature-icon i {
  transition: 0.5s;
}

.features .feature-item:hover .feature-icon i {
  color: var(--bs-secondary) !important;
  transform: rotate(360deg);
  transition: all 0.5s ease;
}
/*** Features End ***/

/*** Country Start ***/
.manufacturing-infographic {
  position: relative;
}

.infographic-wrapper {
  display: flex;
  flex-direction: column;
  position: relative;
  margin-left: 50px;
}

.infographic-wrapper::before {
  content: "";
  position: absolute;
  left: 35px;
  top: 0;
  bottom: 0;
  width: 4px;
  background: #ddd;
}

.infographic-item {
  display: flex;
  align-items: flex-start;
  margin-bottom: 50px;
  position: relative;
  display: flex;
  align-items: center;
  background: #dddee0;
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}
.infographic-item:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.12);
}
.infographic-item:last-child {
  margin-bottom: 0;
}

.infographic-icon {
  flex-shrink: 0;
  width: 70px;
  height: 70px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 28px;
  margin-right: 25px;
  position: relative;
  z-index: 1;
  transition: transform 0.4s ease;
}

.infographic-item:hover .infographic-icon {
  transform: scale(1.2) rotate(15deg);
}

.infographic-content h5 {
  font-weight: 600;
  margin-bottom: 5px;
}

.infographic-content p {
  margin: 0;
  color: #555;
}

.bg-blue {
  background-color: #007bff;
}
.bg-darkblue {
  background-color: #0056b3;
}
.bg-red {
  background-color: #dc3545;
}
.bg-green {
  background-color: #28a745;
}
.bg-orange {
  background-color: #fd7e14;
}
.bg-purple {
  background-color: #6f42c1;
}
.bg-teal {
  background-color: #20c997;
}

@media (max-width: 768px) {
  .infographic-wrapper {
    margin-left: 0;
  }
  .infographic-wrapper::before {
    left: 20px;
  }
  .infographic-item {
    flex-direction: row;
  }
  .infographic-icon {
    margin-right: 15px;
  }
}

/*** About ***/
.about-img {
  position: relative;
  padding-left: 45px;
}

.about-img::before {
  position: absolute;
  content: "";
  width: 200px;
  height: 300px;
  top: 0;
  left: 0;
  border: 5px solid var(--bs-primary);
  animation: animateUpDown 3s ease-in-out infinite;
  z-index: -1;
}

@keyframes animateUpDown {
  0% {
    top: -25px;
  }
  50% {
    top: -45px;
  }
  100% {
    top: -25px;
  }
}
/* ===== WHAT WE DO STYLES ===== */
:root {
  --es-red: #f14747;
  --es-dark: #1f1f1f;
  --es-gray: #0d0b0b;
}
.es-work-section {
  max-width: 1200px;
  margin: auto;
}

.es-work-title {
  text-align: center;
  font-size: 36px;
  margin-bottom: 12px;
}

.es-work-subtitle {
  text-align: center;
  max-width: 760px;
  margin: 0 auto 60px;
  color: var(--es-gray);
  font-size: 16px;
  line-height: 1.6;
}

.es-work-layout {
  display: grid;
  grid-template-columns: 1fr 380px 1fr;
  gap: 40px;
  align-items: center;
}

/* CENTER */
.es-work-circle {
  position: relative;
  width: 400px;
  height: 400px;
  margin: auto;
  animation: es-spin 18s linear infinite;
}

@keyframes es-spin {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

.es-work-circle::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: conic-gradient(#eee, #fff, #eee);
  box-shadow: rgba(0, 0, 0, 0.17) 0px -23px 25px 0px inset,
    rgba(0, 0, 0, 0.15) 0px -36px 30px 0px inset,
    rgba(0, 0, 0, 0.1) 0px -79px 40px 0px inset, rgba(0, 0, 0, 0.06) 0px 2px 1px,
    rgba(0, 0, 0, 0.09) 0px 4px 2px, rgba(0, 0, 0, 0.09) 0px 8px 4px,
    rgba(0, 0, 0, 0.09) 0px 16px 8px, rgba(0, 0, 0, 0.09) 0px 32px 16px;
}

.es-work-core {
  position: absolute;
  inset: 75px;
  background: #fff;
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 20px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
  animation: es-counter 18s linear infinite;
}

@keyframes es-counter {
  from {
    transform: rotate(360deg);
  }
  to {
    transform: rotate(0deg);
  }
}

.es-work-core h3 {
  margin: 0;
  font-size: 20px;
  line-height: 1.4;
}

/* LIST */
.es-service-list {
  display: flex;
  flex-direction: column;
  gap: 26px;
}

.es-service-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  transition: 0.3s ease;
  box-shadow: rgba(0, 0, 0, 0.35) 0px -50px 36px -28px inset;
  padding: 10px;
}

.es-service-item:hover {
  transform: translateY(-6px);
}

.es-service-icon {
  width: 48px;
  height: 48px;
  min-width: 48px;
  border-radius: 50%;
  background: var(--es-red);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 18px rgba(211, 47, 47, 0.35);
}

.es-service-icon i {
  color: #fff;
  font-size: 22px;
}

.es-service-text h4 {
  margin: 0 0 6px;
  font-size: 16px;
}

.es-service-text p {
  margin: 0;
  font-size: 14px;
  color: var(--es-gray);
  line-height: 1.5;
}

@media (max-width: 992px) {
  .es-work-layout {
    grid-template-columns: 1fr;
  }
  .es-work-circle {
    order: -1;
    animation: none;
    margin-bottom: 50px;
  }
  .es-work-core {
    animation: none;
  }
}

@media (max-width: 480px) {
  .es-work-circle {
    width: 280px;
    height: 280px;
  }
  .es-work-core {
    inset: 55px;
  }
  .es-work-title {
    font-size: 26px;
  }
}
/* mission and vision */
.mv-section {
  text-align: center;
  height: 100%;
  display: flex;
  flex-direction: column;
}

/* Ribbon Style */
.mv-title {
  display: inline-block;
  position: relative;
  background: #1e88e5;
  color: #fff;
  padding: 12px 45px;
  font-weight: 700;
  text-transform: uppercase;
  margin: 0 auto;
}

.mv-title::before,
.mv-title::after {
  content: "";
  position: absolute;
  top: 2px;
  width: 0;
  height: 0;
  border-top: 22px solid transparent;
  border-bottom: 22px solid transparent;
}

.mv-title::before {
  left: -23px;
  border-right: 22px solid #1e88e5;
}

.mv-title::after {
  right: -23px;
  border-left: 22px solid #1e88e5;
}

.mv-title.mission {
  background: #c62828;
}

.mv-title.mission::before {
  border-right-color: #c62828;
}

.mv-title.mission::after {
  border-left-color: #c62828;
}

/* Content Box */
.mv-box {
  background: #b3e5fc;
  padding: 35px 30px;
  margin-top: 15px;
  flex-grow: 1;
}

.mv-box.mission {
  background: #c8e6c9;
}

.mv-box p {
  font-size: 15px;
  line-height: 1.9;
  color: #111;
  margin: 0;
}

/* Responsive */
@media (max-width: 768px) {
  .mv-box {
    padding: 25px 20px;
  }

  .mv-box p {
    font-size: 14px;
  }
}

/* global */
:root {
  --green: #c62828;
  --blue: #001248;
  --teal: #c62828;
  --darkblue: #001248;
  --text: #020202;
}
.wrapper {
  max-width: 1300px;
  margin: auto;
  padding: 40px 20px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
}

.card {
  position: relative;
  background: #fff;
  border-radius: 8px;
  padding: 20px 20px 20px 90px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
  min-height: 120px;
}

.icon-wrap {
  position: absolute;
  left: -30px;
  top: 50%;
  transform: translateY(-50%);
  width: 80px;
  height: 80px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #fff;
}

.icon {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 26px;
}

.green {
  background: var(--green);
}

.blue {
  background: var(--darkblue);
}

.teal {
  background: var(--teal);
}

.darkblue {
  background: var(--blue);
}

.tag {
  display: inline-block;
  padding: 4px 14px;
  color: #fff;
  border-radius: 20px;
  margin-bottom: 10px;
}

.card p {
  line-height: 1.6;
  color: var(--text);
  margin: 0;
}

/* responsive */
@media (max-width: 768px) {
  .wrapper {
    grid-template-columns: 1fr;
  }

  .card {
    padding-left: 80px;
  }

  .icon-wrap {
    left: -20px;
  }
}

/*** Contact Start ***/
:root {
  --red: #b9161b;
  --light: #f2f2f2;
  --dark: #050404;
}
.contact-wrap {
  background: #e6e6e6;
}

/* TOP CARD */
.contact-card {
  max-width: 1300px;
  margin: auto;
  padding: 40px;
}

/* IMAGE */
.contact-image img {
  width: 100%;
  border-radius: 4px;
  box-shadow: rgba(14, 30, 37, 0.12) 0px 2px 4px 0px,
    rgba(14, 30, 37, 0.32) 0px 2px 16px 0px;
}

/* FORM */
.contact-form {
  background: #e6e6e6;
  padding: 10px 30px;
}

.contact-form h2 {
  font-weight: 500;
  margin-bottom: 30px;
  color: #efe9e9;
}

.contact-form .form-control,
.contact-form select,
.contact-form textarea {
  border: none;
  border-bottom: 1px solid #999;
  border-radius: 0;
  padding: 12px 5px;
  background: transparent;
}

.contact-form .form-control:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  box-shadow: none;
  border-color: var(--red);
}

.submit-btn {
  background: var(--red);
  color: #fff;
  padding: 14px;
  border: none;
  border-radius: 4px;
  margin-top: 20px;
  width: 100%;
  font-weight: 500;
}

/* INFO BOXES */
.info-row {
  max-width: 1200px;
  margin: 30px auto 0;
}

.info-box {
  background: var(--red);
  color: #fff;
  padding: 25px;
  height: 100%;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.2);
}

.info-box h5 {
  margin-bottom: 8px;
  font-size: 20px;
  color: #fff;
  font-weight: 700;
}

.info-box p {
  margin: 0;
}

/* MAP */
.map-wrap {
  margin-top: 40px;
}

.map-wrap iframe {
  width: 100%;
  height: 380px;
  border: none;
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .contact-form {
    padding: 30px 0;
  }
}

/*** Contact End ***/

/*** Footer Start ***/
.footer {
  background: #999;
}
.footer .footer-item a {
  line-height: 30px;
  color: var(--bs-white);
  transition: 0.5s;
}

.footer .footer-item p {
  line-height: 30px;
}

.footer .footer-item a:hover {
  letter-spacing: 2px;
  color: var(--bs-secondary);
}

/*** Footer End ***/

/*** copyright Start ***/
.copyright {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  background: var(--bs-secondary) !important;
}
/*** copyright end ***/

/* products pages */
:root {
  --es-red: #f14747;
  --es-dark: #989292;
  --es-gray: #9d9797;
  --es-border: #2b2b2b;
}

/* Section */
.hydraulic-section {
  padding: 80px 20px;
}

/* Container */
.hydraulic-container {
  max-width: 1300px;
  margin: auto;
}

/* Flex */
.hydraulic-flex {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 40px;
  align-items: center;
}

/* Headings h2–h6 same CSS */
.hydraulic-container h2,
.hydraulic-container h3,
.hydraulic-container h4,
.hydraulic-container h5,
.hydraulic-container h6 {
  font-size: 42px;
  color: var(--es-red);
  margin-bottom: 20px;
  font-weight: 700;
}

/* Text */
.hydraulic-container p {
  color: #121010;
  margin-bottom: 25px;
}

/* Image */
.hydraulic-image img {
  width: 100%;
  object-fit: cover;
  border-radius: 14px;
  border: 1px solid var(--es-border);
  box-shadow: rgba(0, 0, 0, 0.16) 0px 3px 6px, rgba(0, 0, 0, 0.23) 0px 3px 6px;
}

.hydraulic-image img:hover {
  transform: scale(1.02);
  box-shadow: 0 10px 22px rgba(241, 71, 71, 0.25);
}

/* Grid */
.hydraulic-grid {
  margin-top: 70px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

/* Card */
.hydraulic-card {
  background: #e5e1e1;
  border: 1px solid var(--es-border);
  border-radius: 14px;
  padding: 30px;
  transition: 0.3s;
}
.hydraulic-card:hover {
  border-color: var(--es-red);
  transform: translateY(-6px);
}

.hydraulic-card h3 {
  font-size: 22px;
  margin-bottom: 15px;
}

.hydraulic-card ul {
  list-style: none;
}
.hydraulic-card ul li {
  margin-bottom: 10px;
  padding-left: 22px;
  position: relative;
  color: #000;
}
.hydraulic-card ul li::before {
  content: "✔";
  position: absolute;
  left: 0;
  color: var(--es-red);
}

/* Industries */
.hydraulic-quality {
  margin-top: 60px;
  background: #e5e1e1;
  border-left: 5px solid var(--es-red);
  padding: 30px;
  border-radius: 10px;
}

/* Responsive */
@media (max-width: 992px) {
  .hydraulic-flex {
    grid-template-columns: 1fr;
  }
  .hydraulic-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .hydraulic-container h2 {
    font-size: 34px;
  }
}
@media (max-width: 576px) {
  .hydraulic-grid {
    grid-template-columns: 1fr;
  }
  .hydraulic-container h2 {
    font-size: 28px;
  }
}


/* market area */

.market-section{
  padding:70px 20px;
  max-width:1000px;
  margin:auto;
}

.market-section h2{
  text-align:center;
  font-size:2.4rem;
  margin-bottom:60px;
  letter-spacing:1px;
}

.market-timeline{
  display:flex;
  flex-direction:column;
  gap:25px;
}

.market-link{
  text-decoration:none;
  color:inherit;
}

.market-item{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:20px;
  padding:15px 20px;
  background:#fff;
  border-radius:15px;
  box-shadow:0 6px 16px rgba(0,0,0,0.08);
  transform:translateX(-50px);
  opacity:0;
  animation:slideIn .8s ease forwards;
  transition:transform 0.5s, box-shadow 0.5s;
}

.market-item:nth-child(n){
  animation-delay:calc(var(--i) * 0.15s);
}

@keyframes slideIn{
  to{
    transform:translateX(0);
    opacity:1;
  }
}

.market-item:hover{
  transform:translateX(0) scale(1.03);
  box-shadow:0 12px 25px rgba(0,0,0,0.15);
}

.market-letter{
  width:52px;
  height:52px;
  border-radius:50%;
  background:#fff;
  border:3px solid #0a1d4d;
  display:flex;
  align-items:center;
  justify-content:center;
  font-size:1.5rem;
  font-weight:700;
  transition:.6s;
}

.market-item:hover .market-letter{
  background:#0a1d4d;
  color:#fff;
  transform:rotate(360deg) scale(1.2);
}

.market-content{
  display:flex;
  align-items:center;
  gap:10px;
}

.market-content h4{
  margin:0;
  font-size:1.2rem;
  position:relative;
  display:inline-block;
}

.market-content h4::after{
  content:'';
  position:absolute;
  left:0;
  bottom:-6px;
  width:0;
  height:2px;
  background:#0a1d4d;
  transition:.5s;
}

.market-item:hover h4::after{
  width:100%;
}

.market-content i{
  color:#f4b400;
  transition:.6s;
}

.market-item:hover i{
  transform:rotate(360deg);
}

.market-image{
  width:80px;
  height:60px;
  border-radius:8px;
  object-fit:cover;
  border:2px solid #0a1d4d;
  transition:transform 0.5s;
}

.market-item:hover .market-image{
  transform:scale(1.1) rotate(-5deg);
}

@media(max-width:768px){
  .market-item{
    flex-direction:column;
    align-items:flex-start;
  }
  .market-image{
    width:100%;
    height:auto;
    max-height:120px;
  }
}
/* appointment */
  .row.align-items-stretch > .col-lg-6 {
    display: flex;
  }

  .card {
    display: flex;
    flex-direction: column;
  }

  .timings span {
    font-size: 0.95rem;
  }
  
/* faq */
/* FAQ Image */
.faq-img {
    width: 100%;
    border-radius: 10px;
    object-fit: cover;
}

/* Accordion Button */
.accordion-button {
    font-size: 17px;
    font-weight: 600;
}

/* Accordion Body */
.accordion-body {
    font-size: 15px;
    color: #0a0a0a;
}



/* Mobile Responsive */
@media (max-width: 768px) {
    .faq-img {
        margin-bottom: 20px;
    }
    .accordion-button {
        font-size: 16px;
    }

}