:root {
  --default-font: "Manrope", sans-serif;
}

/* Global Colors - The following color variables are used throughout the website. Updating them here will change the color scheme of the entire website */
:root {
  --background-color: #ffffff;
  --background-color-secondary: #1E3362;
  --background-color-third: #D86D27;
  --section-bg: #E6F3FF;
  --heading-color-primary: #1E3362;
  --heading-color-secondary: #ffffff;
  --accent-color: #1E3362;
  --secondary-color: #ffffff;
  --contrast-color: #ffffff;
  --font-color-primary: #333333;
  --font-color-secondary: #ffffff;
  --font-color-third: #4A7BA8;
}

/* Nav Menu Colors - The following color variables are used specifically for the navigation menu. They are separate from the global colors to allow for more customization options */
:root {
  --nav-color: #333333;
  --nav-hover-color: #1E3362;
  --nav-mobile-background-color: #ffffff;
  --nav-dropdown-background-color: #ffffff;
  --nav-dropdown-color: #333333;
  --nav-dropdown-hover-color: #1E3362;
}

/* Smooth scroll */
:root {
  scroll-behavior: smooth;
}

/*--------------------------------------------------------------
# General Styling & Shared Classes
--------------------------------------------------------------*/
body {
  color: var(--default-color);
  background-color: var(--background-color);
  font-family: var(--default-font);
}

a {
  color: var(--font-color-primary);
  text-decoration: none;
  transition: 0.3s;
}

a:hover {
  color: color-mix(in srgb, var(--accent-color), transparent 25%);
  text-decoration: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  color: var(--heading-color);
  font-family: var(--default-font);
}

/*--------------------------------------------------------------
# Global Header
--------------------------------------------------------------*/
.header {
  color: var(--default-color);
  transition: all 0.5s;
  z-index: 997;
  background-color: var(--background-color);
}

.header .topbar {
  background-color: var(--background-color-secondary);
  height: 40px;
  padding: 0;
  font-size: 14px;
  transition: all 0.5s;
}

.topbar p {
  padding: 0 15px;
  position: relative;
  font-size: 18px;
  font-family: var(--default-font);
  font-weight: 400;
}

.topbar p::after {
  content: "|";
  position: absolute;
  right: 0;
  color: var(--secondary-color);
}

.topbar p:last-child::after {
  display: none;
}

.topbar p a {
  color: var(--secondary-color);
  margin-left: 10px;
  font-weight: 400;
}

.header .topbar .contact-info i {
  font-style: normal;
  color: var(--contrast-color);
}

.social-links a {
  color: var(--secondary-color);
  line-height: 0;
  transition: 0.3s;
  padding: 0 13px;
  position: relative;
  font-size: 16px;
}

.social-links a:after {
  content: "";
  border-right: 2px solid #fff;
  color: var(--secondary-color);
  position: absolute;
  right: 0;
  top: 0;
  bottom: 0;
  display: flex;
  align-items: center;
}

.social-links a:last-child:after {
  display: none;
}

.header .topbar .social-links a:hover {
  color: var(--contrast-color);
}

.header .branding {
  background-color: var(--background-color);
  min-height: 60px;
  padding: 10px 0;
}

.header .logo {
  line-height: 1;
}

.header .logo img {
  max-height: 50px;
  margin-right: 8px;
  width: 100%;
}

.header .logo h1 {
  font-size: 30px;
  margin: 0;
  font-weight: 700;
  color: var(--heading-color);
}

.scrolled .header {
  box-shadow: 0px 0 18px rgba(0, 0, 0, 0.1);
}

.scrolled .header .topbar {
  height: 0;
  visibility: hidden;
  overflow: hidden;
}

/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/
/* Navmenu - Desktop */
@media (min-width: 1200px) {
  .navmenu {
    padding: 0;
  }

  .navmenu ul {
    margin: 0;
    padding: 0;
    display: flex;
    list-style: none;
    align-items: center;
  }

  .navmenu li {
    position: relative;
  }

  .navmenu a,
  .navmenu a:focus {
    color: var(--nav-color);
    padding: 18px 15px;
    font-size: 18px;
    font-family: var(--default-font);
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: space-between;
    white-space: nowrap;
    transition: 0.3s;
  }

  .navmenu a i,
  .navmenu a:focus i {
    font-size: 12px;
    line-height: 0;
    margin-left: 5px;
    transition: 0.3s;
  }

  .navmenu li:last-child a {
    padding-right: 0;
  }

  .navmenu li:hover>a,
  .navmenu .active,
  .navmenu .active:focus {
    color: #d86d27;
  }

  .navmenu .menu-item-has-children ul {
    margin: 0;
    padding: 10px 0;
    background: var(--nav-dropdown-background-color);
    display: block;
    position: absolute;
    visibility: hidden;
    left: 14px;
    top: 100%;
    opacity: 0;
    transition: 0.3s;
    border-radius: 4px;
    z-index: 99;
    box-shadow: 0px 0px 30px rgba(0, 0, 0, 0.1);
  }

  .navmenu .menu-item-has-children ul li {
    min-width: 200px;
  }

  .navmenu .menu-item-has-children ul a {
    padding: 10px 20px;
    font-size: 18px;
    text-transform: none;
    color: var(--nav-dropdown-color);
  }

  .navmenu .menu-item-has-children ul a i {
    font-size: 12px;
  }

  .navmenu .menu-item-has-children ul a:hover,
  .navmenu .menu-item-has-children ul .active:hover,
  .navmenu .menu-item-has-children ul li:hover>a {
    color: var(--nav-dropdown-hover-color);
    font-weight: bold;
  }

  .navmenu .menu-item-has-children:hover>ul {
    opacity: 1;
    top: 100%;
    visibility: visible;
  }

  .navmenu .menu-item-has-children .menu-item-has-children ul {
    top: 0;
    left: 90%;
    visibility: hidden;
  }

  .navmenu .menu-item-has-children .menu-item-has-children:hover>ul {
    opacity: 1;
    top: 0;
    left: 100%;
    visibility: visible;
  }

  .navmenu .menu-item-has-children ul.depth_1 a {
    font-size: 14px;
    padding: 5px 20px;
  }
}

/* Navmenu - Mobile */
.mobile-nav-toggle {
  color: var(--nav-color);
  font-size: 28px;
  line-height: 0;
  margin-right: 10px;
  cursor: pointer;
  display: none !important;
  transition: color 0.3s;
}

.mobile-nav-active #navmenu .menu-item-has-children.active-new .depth_0 {
  display: block;
  visibility: visible;
  opacity: 1;
  padding-left: 20px;
  box-shadow: unset;
}

.mobile-nav-active #navmenu .menu-item-has-children.active-new-second .depth_1 {
  display: block;
  visibility: visible;
  opacity: 1;
  padding-left: 20px;
  box-shadow: unset;
}

@media (max-width: 1199px) {

  .navmenu {
    padding: 0;
    z-index: 9997;
  }

  .navmenu ul {
    display: none;
    list-style: none;
    position: absolute;
    inset: 60px 20px 20px 20px;
    padding: 10px 0;
    margin: 0;
    border-radius: 6px;
    background-color: var(--nav-mobile-background-color);
    overflow-y: auto;
    transition: 0.3s;
    z-index: 9998;
    box-shadow: 0px 0px 30px rgba(0, 0, 0, 0.1);
  }

  .navmenu a,
  .navmenu a:focus {
    color: var(--nav-dropdown-color);
    padding: 10px 20px;
    font-family: var(--default-font);
    font-size: 17px;
    font-weight: 500;
    display: flex;
    align-items: center;
    justify-content: space-between;
    white-space: nowrap;
    transition: 0.3s;
  }

  .navmenu a i,
  .navmenu a:focus i {
    font-size: 12px;
    line-height: 0;
    margin-left: 5px;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: 0.3s;
    background-color: color-mix(in srgb, var(--accent-color), transparent 90%);
  }

  .navmenu a i:hover,
  .navmenu a:focus i:hover {
    background-color: var(--accent-color);
    color: var(--contrast-color);
  }

  .navmenu a:hover,
  .navmenu .active,
  .navmenu .active:focus {
    color: var(--nav-dropdown-hover-color);
  }

  .navmenu .active i,
  .navmenu .active:focus i {
    background-color: var(--accent-color);
    color: var(--contrast-color);
    transform: rotate(180deg);
  }

  .navmenu .menu-item-has-children ul {
    position: static;
    display: none;
    z-index: 99;
    padding: 10px 0;
    margin: 10px 20px;
    background-color: var(--nav-dropdown-background-color);
    border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
    box-shadow: none;
    transition: all 0.5s ease-in-out;
  }

  .navmenu .menu-item-has-children ul ul {
    background-color: rgba(33, 37, 41, 0.1);
  }

  .navmenu .menu-item-has-children>.menu-item-has-children-active {
    display: block;
    background-color: rgba(33, 37, 41, 0.03);
  }

  .mobile-nav-active {
    overflow: hidden;
  }

  .mobile-nav-active .mobile-nav-toggle {
    color: #fff;
    position: absolute;
    font-size: 32px;
    top: 15px;
    right: 15px;
    margin-right: 0;
    z-index: 9999;
  }

  .mobile-nav-active .navmenu {
    position: fixed;
    overflow: hidden;
    inset: 0;
    background: rgba(33, 37, 41, 0.8);
    transition: 0.3s;
  }

  .mobile-nav-active .navmenu>ul {
    display: block;
  }
}

@media (max-width: 991px) {
  .mobile-nav-toggle {
    display: block !important;
  }
}

/*--------------------------------------------------------------
# Global Footer
--------------------------------------------------------------*/
.footer {
  background-color: var(--background-color-secondary);
  font-size: 14px;
  position: relative;
}

.footer-title {
  font-size: 20px;
  font-weight: 600;
  color: var(--contrast-color);
  padding-bottom: 15px;
}

.footer .footer-top {
  padding-top: 50px;
}

.footer-content p {
  font-size: 17px;
  font-weight: 400;
}

#menu-company li a:hover {
  color: #d86d27;
}

.footer-about .social-links a:first-child {
  padding-left: 0;
}

.footer .footer-links,
.footer .footer-contact-us {
  margin-bottom: 30px;
  padding-top: 30px;
}

.footer .footer-links ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer .footer-links ul i {
  margin-right: 3px;
  font-size: 12px;
  line-height: 0;
  color: var(--accent-color);
}

.footer .footer-links ul li {
  padding: 10px 0;
  display: flex;
  align-items: center;
}

.footer .footer-links ul li:first-child {
  padding-top: 0;
}

.footer .footer-links ul a {
  display: inline-block;
  color: var(--contrast-color);
  line-height: 1;
  font-size: 16px;
  font-weight: 400;
}

.footer .footer-links ul a:hover {
  color: var(--contrast-color);
}

.footer-contact-details {
  display: flex;
  align-items: center;
  color: #fff;
  margin-bottom: 15px;
}

.footer-contact-details .icon-box i {
  background-color: #fff;
  width: 30px;
  height: 30px;
  color: #000;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 20px;
  border-radius: 50%;
  font-size: 17px;
}

.footer-contact-details p {
  font-size: 17px;
}

.footer .copyright {
  padding-top: 15px;
  padding-bottom: 15px;
  border-top: none;
  background-color: #4A7BA8;
}

.footer .copyright p {
  margin-bottom: 0;
  font-size: 16px;
  color: var(--contrast-color);
}

.wp-int {
  position: fixed;
  bottom: 150px;
  right: 15px;
}

.wp-int img {
  width: 50px;
}

.get-a-quote {
  position: fixed;
  bottom: 150px;
  right: -20px;
  transform: rotate(90deg);
}

.get-a-quote a {
  background-color: var(--background-color-third);
  padding: 12px 20px;
  font-size: 14px;
  font-weight: 500;
  margin-top: 30px !important;
  color: var(--font-color-secondary);
  border-radius: 50px;
}

/*--------------------------------------------------------------
# Preloader
--------------------------------------------------------------*/
#preloader {
  position: fixed;
  inset: 0;
  z-index: 9999;
  overflow: hidden;
  background-color: var(--background-color);
  transition: all 0.6s ease-out;
  width: 100%;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

#preloader div {
  width: 13px;
  height: 13px;
  background-color: var(--accent-color);
  border-radius: 50%;
  animation-timing-function: cubic-bezier(0, 1, 1, 0);
  position: absolute;
  left: 50%;
}

#preloader div:nth-child(1) {
  left: calc(50% + 8px);
  animation: animate-preloader-1 0.6s infinite;
}

#preloader div:nth-child(2) {
  left: calc(50% + 8px);
  animation: animate-preloader-2 0.6s infinite;
}

#preloader div:nth-child(3) {
  left: calc(50% + 32px);
  animation: animate-preloader-2 0.6s infinite;
}

#preloader div:nth-child(4) {
  left: calc(50% + 56px);
  animation: animate-preloader-3 0.6s infinite;
}

@keyframes animate-preloader-1 {
  0% {
    transform: scale(0);
  }

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

@keyframes animate-preloader-3 {
  0% {
    transform: scale(1);
  }

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

@keyframes animate-preloader-2 {
  0% {
    transform: translate(0, 0);
  }

  100% {
    transform: translate(24px, 0);
  }
}

/*--------------------------------------------------------------
# Scroll Top Button
--------------------------------------------------------------*/
.scroll-top {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  right: 15px;
  bottom: 15px;
  z-index: 99999;
  background-color: var(--accent-color);
  width: 40px;
  height: 40px;
  border-radius: 4px;
  transition: all 0.4s;
}

.scroll-top i {
  font-size: 24px;
  color: var(--contrast-color);
  line-height: 0;
}

.scroll-top:hover {
  background-color: color-mix(in srgb, var(--accent-color), transparent 20%);
  color: var(--contrast-color);
}

.scroll-top.active {
  visibility: visible;
  opacity: 1;
}

/*--------------------------------------------------------------
# Disable aos animation delay on mobile devices
--------------------------------------------------------------*/
@media screen and (max-width: 768px) {
  [data-aos-delay] {
    transition-delay: 0 !important;
  }
}

/*--------------------------------------------------------------
# Global CSS
--------------------------------------------------------------*/
section {
  padding: 60px 0;
}

.section-title h1 {
  font-size: 50px;
  font-weight: 700;
  color: var(--heading-color-primary);
}

.section-title h2 {
  font-size: 50px;
  font-weight: 700;
  color: var(--heading-color-primary);
}

.section-title p {
  color: #2C2C2C;
  font-size: 18px;
}

.slick-arrow {
  position: absolute;
  top: 47%;
  bottom: 0;
  cursor: pointer;
  width: 50px;
}

.left-arrow.slick-arrow {
  left: -5%;
}

.right-arrow.slick-arrow {
  right: -5%;
  transform: rotate(180deg);
}

img {
  max-width: 100%;
}

.section-title h5 {
  font-size: 22px;
  font-weight: 700;
  color: var(--font-color-third);
}

.inner-hero-main {
  position: relative;
}

.innter-hero-content.center {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.innter-hero-content .title {
  font-size: 58px;
  font-weight: 700;
}

p {
  font-size: 18px;
}

.innter-hero-content-main {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  display: flex;
  align-items: center;
}

.innter-hero-content-main .innter-hero-content {
  text-align: left;
}

.inner-hero-button {
  background-color: var(--background-color-third);
  border-radius: 100px;
  padding: 12px 20px;
  width: fit-content;
}

.inner-hero-button a {
  color: var(--font-color-secondary);
  font-size: 14px;
  font-weight: 500;
  text-decoration: underline;
  margin-right: 10px;
}

.inner-hero-button i {
  transform: rotate(-45deg);
  color: var(--font-color-secondary);
}

/*--------------------------------------------------------------
# Home Page
--------------------------------------------------------------*/
/* #home_hero {
    background-color: #E6F3FF;
} */

.hero-slide {
  position: relative;
}

.hero-slide {
  position: relative;
}

.hero-slide-content-main a {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  display: flex;
  flex-direction: column;
  /* transform: translate(-50%, -50%); */
  width: 100%;
}

#home_hero .slick-dots {
  position: absolute;
  bottom: 165px;
  display: block;
  width: 100%;
  padding: 0;
  margin: 0;
  list-style: none;
  text-align: center;
}

#home_hero .slick-dotted.slick-slider {
  margin-bottom: 0;
}

#home_hero .slick-dots li button {
  font-size: 0;
  line-height: 0;
  display: block;
  width: 20px;
  height: 20px;
  padding: 5px;
  cursor: pointer;
  color: transparent;
  border: 0;
  outline: none;
  background: transparent;
}

#home_hero .slick-dots li button:before {
  font-family: 'slick';
  font-size: 20px;
  line-height: 20px;
  position: absolute;
  top: 0;
  left: 0;
  width: 20px;
  height: 20px;
  content: '•';
  text-align: center;
  opacity: .25;
  color: #e97a30;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

#home_hero .slick-dots li.slick-active button:before {
  opacity: .75;
  color: #e97a30;
}

#home_hero .slick-arrow {
  position: absolute;
  top: 35%;
  bottom: 0;
  cursor: pointer;
  width: 50px;
}

#home_hero .left-arrow.slick-arrow {
  left: 0%;
  z-index: 9;
}

#home_hero .right-arrow.slick-arrow {
  right: 0;
  transform: rotate(180deg);
}

/* .hero-slide-content-main .hero-slide-content {
    font-size: 50px;
    line-height: 65px;
    color: var(--font-color-secondary);
    font-weight: 700;
    margin-bottom: 30px;
} */

/* .hero-slide-button a {
    background-color: #4A7BA8;
    color: var(--font-color-secondary);
    font-size: 20px;
    font-weight: 500;
    padding: 10px 28px;
} */

/* Industries We Serve Section */

#industires_we_serve {
  overflow: hidden;
}

#industires_we_serve .section-title {
  padding: 0 100px;
}

.industries-list-main {
  padding: 50px;
  background-color: #1E3362;
}

.industry-list-single-content div {
  font-size: 20px;
  font-weight: 800;
  text-align: center;
  color: #1e3362;
}

.industry-list-single {
  background-color: #fff;
  text-align: center;
  height: 400px;
  margin: 10px;
  border-radius: 10px;
  padding: 10px;
  position: relative;
}

.industry-list-single-image img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  background-color: #fff;
}

.industry-list-single-content a {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  visibility: hidden;
  opacity: 0;
  background-color: #4a7ba8cf;
  color: #fff;
  border-radius: 10px;
}

.industry-list-single-content a i {
  font-size: 40px;
  transform: rotate(-45deg);
}

.industry-list-single:hover .industry-list-single-content a {
  visibility: visible;
  opacity: 1;
}

.industries-list-main .corner-shape {
  position: absolute;
  width: 80px;
  height: 80px;
  background-color: white;
  clip-path: polygon(0 0, 100% 0, 0 100%);
}

.industries-list-main .top-left {
  top: -1px;
  left: -1px;
}

/* #industires_we_serve {
    background-color: var(--section-bg);
}

.industries-list .slick-slide {
    margin: 0 20px 20px ;
}

.industry-list-single-image img {
    width: 100%;
}

.industry-list-single {
    position: relative;
    margin: 15px 0;
}

.industry-list-single-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    overflow: hidden;
    width: 100%;
    height: 50%;
    transition: 0.5s ease;
    margin: 20px 0;
}

.industry-list-single-content {
    color: #000;
    position: absolute;
    top: 90px;
    right: 0%;
    padding: 20px;
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}



.industry-list-single:hover .industry-list-single-image img{
  opacity: 0.2;
}

.industry-list-single:hover .industry-list-single-content div {
    min-height: unset;
}

.industry-list-single:hover .industry-list-single-overlay {
    height: 100%;
    margin: 0;
}

.industry-list-single-content p {
    text-align: center;
}

.industry-list-single-content a {
    color: #fff;
    font-size: 18px;
    text-decoration: none;
    background-color: #D86D27;
    padding: 10px 20px;
    border-radius: 50px;
}

.industry-list-single-content a i {
    margin-left: 10px;
    transform: rotate(-45deg);
    color: #fff;
} */

/* Materials & Forms We Machine Section */

.material-list-single {
  margin: 10px;
  position: relative;
  overflow: hidden;
  height: auto;
}

.material-list-single-image img {
  width: 90%;
  margin: 0 auto;
}

.material-list-single-overlay {
  box-shadow: 0 2px 8px 0 rgba(0, 0, 0, 0.12);
  padding: 120px 10px 15px 10px;
  border: 1px solid #E6E6E6;
  border-radius: 8px;
  margin-top: -90px;
  transition: all 0.4s ease;
  /* for smooth height change */
}

.material-list-single-content div {
  font-size: 18px;
  font-weight: 600;
  line-height: 32px;
  margin-bottom: 10px;
}

.material-list-single-content a {
  display: inline-block;
  background: var(--background-color-third);
  color: var(--font-color-secondary);
  padding: 10px 20px;
  text-decoration: none;
  border-radius: 50px;
  font-weight: 500;
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.4s ease;
  height: 0;
  overflow: hidden;
  margin-top: 0;
}

.material-list-single:hover .material-list-single-overlay {
  background-color: var(--heading-color-primary);
  color: var(--font-color-secondary);
}

.material-list-single:hover .material-list-single-content a {
  opacity: 1;
  transform: translateY(0);
  height: auto;
  margin-top: 20px;
}

.material-list-single-content p {
  margin: 0;
  font-size: 16px;
}

.material-list-single-content a i {
  margin-left: 5px;
  transform: rotate(-45deg);
}

/* Quality Assurance Section */

#quality-assurance {
  background-image: url(../imgs/QA-bg.png);
  background-size: 100% 100%;
  padding-top: 100px;
}

.quality-assurance-content p {
  font-size: 24px;
}

.standard-button {
  background-color: var(--background-color-third);
  padding: 12px 20px;
  font-size: 20px;
  font-weight: 500;
  margin-top: 30px !important;
  color: var(--font-color-secondary);
  border-radius: 50px;
}

.standard-button:hover {
  color: var(--font-color-secondary);
}

.standard-button i {
  margin-left: 5px;
  transform: rotate(-45deg);
  font-size: 18px;
}

.quality-assurance-image img {
  width: 80%;
}

/* About Amarex Matels Section */

.about-amarex-matels-image img {
  width: 80%;
  margin: 0 auto;
}

/* Order Process Section */

#order_process {
  background-image: url(../imgs/order-process-bg.png);
  background-size: 100% 100%;
}


/* Blogs Section */

.home-blog-single-image img {
  width: 100%;
  border-top-left-radius: 8px;
  border-top-right-radius: 8px;
}

.home-blog-list-single-content {
  padding: 12px;
  box-shadow: 0 2px 12px 0 rgba(0, 0, 0, 0.08);
  border-bottom-left-radius: 8px;
  border-bottom-right-radius: 8px;
}

.home-blog-list-single-content div {
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 10px;
  color: #2C2C2C;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.home-blog-list-single-content p {
  font-size: 18px;
  color: #333333;
}

.home-blog-list-single-content a {
  color: #4A7BA8;
  font-size: 18px;
}

.home-blog-list-single-content a i {
  margin-left: 5px;
  font-size: 16px;
  transform: rotate(-45deg);
}

.home-blog-list-single-content p {
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.home-blog-list-single:hover .hover {
  font-size: 20px;
}


/* Contact Us Section */

.contact-box {
  background-color: var(--background-color-secondary);
  border-radius: 0;
  overflow: hidden;
  padding: 60px !important;
}

.contact-box .corner-shape {
  position: absolute;
  width: 80px;
  height: 80px;
  background-color: white;
  clip-path: polygon(0 0, 100% 0, 0 100%);
}

.contact-box .top-left {
  top: -1px;
  left: -1px;
}

.contact-box .bottom-right {
  bottom: 0;
  right: 0;
  transform: rotate(180deg);
}

.contact-box .top-right {
  top: 20px;
  right: 20px;
  background-color: #D76823;
  /* orange accent */
  clip-path: polygon(0 0, 100% 0, 100% 100%);
}

.contact-box p {
  font-size: 18px;
  width: 80%;
  line-height: 28px;
}

.contact_details_contact img {
  width: 34px;
  height: 34px;
}

.fieldset-cf7mls .cf7mls_next,
.fieldset-cf7mls .cf7mls_back {
  float: unset !important;
}

.cf7mls-btns {
  text-align: center;
  display: flex !important;
  justify-content: space-evenly;
}

/* Form Guide Button */
.form-guide-btn {
  background: #FFFFFF;
  color: rgba(0, 15, 49, 1);
  font-weight: 800;
  border: none;
  padding: 10px 25px;
  border-radius: 50px;
  margin-bottom: 15px;
  cursor: pointer;
  position: absolute;
  bottom: 5%;
  left: 85%;
  transform: translate(-50%, 0px);
}

/* Overlay */
.form-guide-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  opacity: 0;
  visibility: hidden;
  transition: 0.3s;
  z-index: 999;
}

/* Drawer */
.form-guide-drawer {
  position: fixed;
  top: 0;
  right: -400px;
  width: 380px;
  height: 100%;
  background: #fff;
  z-index: 1000;
  transition: 0.4s ease;
  box-shadow: -4px 0 15px rgba(0, 0, 0, 0.2);
}

/* Active States */
.form-guide-drawer.active {
  right: 0;
}

.form-guide-overlay.active {
  opacity: 1;
  visibility: visible;
}

/* Header */
.form-guide-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px;
  border-bottom: 1px solid #ddd;
}

/* Close Button */
.close-guide {
  background: none;
  border: none;
  font-size: 24px;
  cursor: pointer;
}

/* Content */
.form-guide-content {
  padding: 15px;
  font-size: 14px;
}

/* Intro Text */
.guide-accordion .guide-intro {
  font-size: 14px;
  margin-bottom: 15px;
  line-height: 1.6;
}

.guide-intro {
  font-size: 14px;
  padding: 10px;
}

/* Accordion */
.guide-accordion .accordion-item {
  border-bottom: 1px solid #e5e5e5;
}

.guide-accordion .accordion-header {
  width: 100%;
  background: none;
  border: none;
  padding: 14px 10px;
  font-size: 15px;
  font-weight: 600;
  text-align: left;
  cursor: pointer;
  position: relative;
}

.guide-accordion .accordion-header::after {
  content: "+";
  position: absolute;
  right: 10px;
  font-size: 18px;
  transition: 0.3s;
}

.guide-accordion .accordion-header.active::after {
  content: "–";
}

.guide-accordion .accordion-body {
  height: 0;
  overflow: hidden;
  transition: height 0.35s ease;
  padding: 0 10px;
}

.guide-accordion .accordion-body.active {
  height: 100%;
}


.guide-accordion .accordion-body ul {
  padding-left: 18px;
  margin: 10px 0;
}

.guide-accordion .accordion-body li {
  font-size: 13.5px;
  margin-bottom: 6px;
}

.guide-accordion .accordion-body p {
  font-size: 14px;
}

/*--------------------------------------------------------------
# About Us Page
--------------------------------------------------------------*/

.about-content-column h2 {
  font-size: 26px;
}

/* WRAPPER */
.process-wrapper {
  overflow: hidden;
  position: relative;
}

/* TOP SECTION */
.process-top {
  background: #eef6ff;
  padding: 80px 0 80px 0;
  position: relative;
  z-index: 2;
}

.process-cut {
  position: absolute;
  bottom: -1px;
  left: 0;
  width: 100%;
  height: 70px;
  background: rgba(0, 15, 49, 1);
  clip-path: polygon(0 44%,
      26% 44%,
      30% 100%,
      48% 100%,
      52% 0,
      100% 0,
      100% 100%,
      0 100%);
  z-index: -1;
}

.process-faqs {
  background-color: rgba(0, 15, 49, 1);
  padding: 100px 0 100px;
  margin-top: -1px;
  position: relative;
  z-index: 1;
}

.process-faqs .accordion-item {
  background-color: rgba(255, 255, 255, 0.1);
  border: none;
  margin-bottom: 20px;
}

.process-faqs .accordion-button {
  background: transparent !important;
  color: #fff !important;
  border: none !important;
  box-shadow: unset !important;
  padding-bottom: 10px;
  font-size: 22px;
  font-weight: 600;
}

.process-faqs .accordion-body {
  color: #D86D27;
  padding: 5px 20px 20px 20px;
  font-size: 18px;
}

.process-faqs .accordion-button:not(.collapsed)::after {
  background-image: url(../imgs/minus.png);
}

.process-faqs .accordion-button::after {
  background-image: url(../imgs/plus.png);
}

.about-cta.cta-common {
  margin-top: -50px;
  z-index: 9;
  position: relative;
}

.cta-main {
  border: 4px solid #fff;
  border-radius: 100px;
  padding: 18px 28px;
  background: linear-gradient(90deg, #1E3362 0%, #4A7BA8 100%);
}

.cta-content p {
  margin: 0;
}

.cta-button-main a {
  background: rgba(255, 255, 255, 1);
  padding: 10px 20px;
  border-radius: 100px;
  font-size: 18px;
  font-weight: 500;
  color: rgba(0, 15, 49, 1);
}

/*--------------------------------------------------------------
# Single Industry Page
--------------------------------------------------------------*/

.single-industry-images .gallery-row {
  align-items: stretch;
}

/* RIGHT SIDE HEIGHT = 2 rows thumbnails */
.single-industry-images .gallery-right {
  /* height: 370px; */
  /* ← MATCH THIS TO YOUR THUMB GRID */
  display: flex;
}

/* CAROUSEL MUST FILL */
.single-industry-images #thumbCarousel,
.single-industry-images .carousel-inner,
.single-industry-images .carousel-item {
  height: 100%;
}

#mainProductImage {
  width: 350px;
  height: 350px;
}

/* LEFT SIDE MUST STRETCH */
.single-industry-images .gallery-left {
  display: flex;
  height: 370px;
}

/* LEFT IMAGE WRAPPER */
.single-industry-images .main-image-wrap {
  width: 100%;
  height: 100%;
  border: 1px solid #dee2e6;
  border-radius: 8px;
  padding: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* IMAGE NEVER EXCEEDS CONTAINER */
.single-industry-images .main-img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

/* THUMBNAILS */
.single-industry-images .thumb-img {
  height: fit-content;
  object-fit: contain;
  width: 100%;
}

/*--------------------------------------------------------------
# Capabilities Page
--------------------------------------------------------------*/

.slide_content {
  position: absolute;
  top: 100%;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 30px;
  display: flex;
  align-items: end;
  background: transparent;
  background: linear-gradient(180deg, rgb(255 255 255 / 0%) -25%, rgba(30, 51, 98, 1) 100%);
  margin: 24px;
  color: #fff;
  visibility: hidden;
  opacity: 0;
  transition: all 0.5s ease-in-out;
}

.machining_capabilities_slide:hover .slide_content {
  top: 0;
  visibility: visible;
  opacity: 1;
  transition: all 0.5s ease-in-out;
}

#our_machinery {
  background-color: #E6F3FF;
}

.our_machinery_slide:hover .slide_content {
  top: 0;
  visibility: visible;
  opacity: 1;
  transition: all 0.5s ease-in-out;
}

section#finishing_options {
  background-color: #dae7f2;
}

#Precision_and_Complexity {
  background-image: url(../imgs/QA-bg.png);
  background-size: 100% 100%;
  padding-top: 100px;
}

section#Precision_and_Complexity .row {
  position: relative;
}

section#Precision_and_Complexity .row:after {
  content: "";
  border: 1px solid #ffffff5e;
  position: absolute;
  left: 0;
  right: 0;
  top: 50%;
  width: 100%;
}

section#Precision_and_Complexity .row:before {
  content: "";
  border: 1px solid #ffffff5e;
  position: absolute;
  bottom: 0;
  top: 0;
  left: 50%;
}

.precision_and_complexity_box {
  padding: 0 30px;
}

.precision_and_complexity_box h4 {
  font-weight: 800;
}

#materials_we_machine .slide_content {
  margin: 0;
}

section#export_grade_packaging {
  background-color: #1E3362;
}

.export_grade_packaging_box {
  background-color: #e6f3ff;
  padding: 20px;
  height: 100%;
  width: 120%;
  border-radius: 10px;
}

/* .export_grade_packaging_box p{
  color: #fff;
} */

.export_grade_packaging_box img {
  width: 100px;
}

.delivery_terms_and_logistics_content ul {
  list-style: none;
}

.delivery_terms_and_logistics_content ul li {
  margin-bottom: 10px;
  position: relative;
}

.delivery_terms_and_logistics_content ul li:before {
  content: "";
  background-image: url('../imgs/right_icon.png');
  background-repeat: no-repeat;
  background-size: 20px;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 7%;
  left: -5%;
}

.finishing_options_content ul {
  list-style: none;
}

.finishing_options_content ul li {
  margin-bottom: 10px;
  position: relative;
}

.finishing_options_content ul li:before {
  content: "";
  background-image: url('../imgs/right_icon.png');
  background-repeat: no-repeat;
  background-size: 20px;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 7%;
  left: -5%;
}

/*--------------------------------------------------------------
# Contact Page
--------------------------------------------------------------*/
.contact_details {
  background-color: #E6F3FF;
}

.contact_details_address {
  padding: 30px;
  background-color: #fff;
  height: 100%;
}

.address_details {
  border-bottom: 1px solid #000;
}

.address_details:last-child {
  border-bottom: unset;
}

.contact_details_contact {
  padding: 30px;
  background-color: #fff;
  height: 100%;
}

.contact_details_contact .phone_number,
.contact_details_contact .email {
  border-bottom: 1px solid #000;
}

/* .social-media-icon img {
    width: 35px;
} */

.c-form form {
  background: linear-gradient(180deg, #E6E6E6 -44.29%, #E6F3FF 100%);
  padding: 30px;
  border-radius: 20px;
}

.c-form label {
  font-weight: bold;
  font-size: 16px;
}

.cf7mls_bar_style_navigation_horizontal_squaren.cf7mls_bar_style_text_vertical li:before,
.cf7mls_bar_style_navigation_horizontal_round.cf7mls_bar_style_text_vertical li:before {
  content: counter(step);
  width: 30px;
  line-height: 30px;
  display: block;
  font-size: 0px;
  background: #4A7BA8 !important;
  border-radius: 3px;
  margin: 0 auto;
  padding: 0;
  height: 30px;
}

.cf7mls_bar_style_navigation_horizontal_round.cf7mls_bar_style_text_vertical[data-id-form="312"] li.active:before {
  background: #1e3362 !important;
}

.cf7mls_progress_bar li .cf7_mls_count_step {
  display: block;
  color: #fff !important;
  font-size: 15px;
}

p.cf7mls_progress_bar_title {
  font-size: 16px !important;
}

form.cf7mls input.wpcf7-form-control.wpcf7-submit {
  border-radius: 3px;
  padding: 13px 29px;
  font-weight: bold;
  margin: 16px 0px 26px;
  float: right;
  background-color: #d86d27;
  color: #ffffff;
  border: unset;
}

.cf7mls_progress_bar li .cf7_mls_check {
  display: none;
  font-size: 15px;
  margin-top: 0 !important;
  padding: 0px;
  text-align: center;
}

span.cf7_mls_check img {
  width: 38px;
  margin-bottom: 2px;
}

.form-label-custom span {
  color: red;
}

.contact-form-main .submit-btn {
  border-radius: 3px;
  padding: 13px 29px;
  font-weight: bold;
  margin: 16px 0px 26px;
  float: left;
  background-color: #d86d27;
  color: #ffffff;
  border: unset;
}

.codedropz-upload-handler {
  background-color: #fff;
}

.wpcf7-response-output {
  width: fit-content;
}

.iti.iti--allow-dropdown.iti--separate-dial-code.iti--show-flags {
  width: 100%;
}

.iti__selected-flag {
  height: 37px !important;
}

/*--------------------------------------------------------------
# Quality Page
--------------------------------------------------------------*/
#certifications {
  background-image: url('../imgs/Certifications Background.png');
  background-size: 100% 100%;
}

ul#myTab {
  border: unset;
}

li.nav-item button {
  background-color: #fff !important;
  border: 1px solid #000 !important;
  border-radius: 0 !important;
  padding: 15px 30px;
  color: #1E3362 !important;
  font-size: 18px;
  font-weight: 700;
}

.nav-link.active {
  background-color: #4A7BA8 !important;
  color: #fff !important;
}

div#myTabContent {
  border: unset !important;
}

#stages_of_quality {
  background: linear-gradient(180deg, #000F31 0%, #021746 100%);
  position: relative;
  overflow: visible;
}

section#stages_of_quality .row {
  position: relative;
}

#stages_of_quality .row:before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  border: 1px dotted #fff;
  z-index: 9;
  height: 460px;
}

.stages_of_quality_content h3 {
  font-weight: 800;
  margin-bottom: 20px;
}

/* Floating logo */
.timeline-floating-logo {
  position: absolute;
  left: 50%;
  top: 9%;
  transform: translateX(-50%);
  pointer-events: none;
  z-index: 10;
}

.timeline-floating-logo img {
  width: 150px;
  transition: transform 0.1s linear;
}

/* Reference point (invisible) */
.reference-point {
  width: 1px;
  height: 1px;
}

.reports .nav.nav-tabs {
  display: flex;
  flex-wrap: wrap;
  overflow: hidden;
  padding-bottom: 1px;
}

.reports .nav-item {
  margin-bottom: 0px;
}

.reports .nav-link {
  width: max-content;
}

/*--------------------------------------------------------------
# Product Listing Page
--------------------------------------------------------------*/

.product-listing-single {
  background-color: #E6F3FF;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.product-listing-single-image img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  background-color: #fff;
}

.product-listing-single-content .title {
  font-size: 20px;
  font-weight: 800;
  color: #1e3362;
}

.product_link a {
  width: 100%;
  background-color: #4A7BA8;
  display: block;
  text-align: center;
  padding: 10px;
  color: #fff;
}

.product_link a i {
  transform: rotate(-45deg);
  margin-left: 5px;
}

.single-industry-content h1 {
  color: #1E3362;
  font-weight: bold;
  margin-bottom: 20px;
}