/*
Theme Name: Encore Exim
Description: Custom WordPress theme for Encore Exim LLP.
Author: Assistant
Version: 1.0
*/

/* Google Font: Poppins */
@import url("https://fonts.googleapis.com/css2?family=Teko:wght@300;400;500;600;700&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Roboto:wght@300;400;500;600;700&display=swap");

:root {
  --primary-blue: #0153e0;
  --primary-blue-hover: var(--primary-blue);
  --dark-bg: #181818;
  --text-dark: #222222;
  --text-muted: #666666;
  --light-bg: #f8f9fa;
  --white: #ffffff;
  --transition: all 0.3s ease;
  --container-width: 1345px;
  --border-radius: 8px;
  --shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  --btn-hover-bg: #000000;
  --btn-hover-text: #ffffff;
  --font-teko: "Teko", sans-serif;
  --font-roboto: "Roboto", sans-serif;
  --vision-color:
    linear-gradient(#f09f48, #f8d5a5),
    linear-gradient(to bottom, #f8d5a5, #f09f48);
  --mission-color:
    linear-gradient(#a23a2d, #ed703a),
    linear-gradient(to bottom, #ed703a, #a23a2d);
  --values-color:
    linear-gradient(#3e3665, #565ae0),
    linear-gradient(to bottom, #565ae0, #3e3665);
}

/* Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: var(--font-roboto);
  color: var(--text-dark);
  line-height: 1.6;
  overflow-x: hidden;
}

ul {
  list-style: none;
}

a {
  text-decoration: none;
  color: inherit;
  transition: var(--transition);
}

img {
  max-width: 100%;
  display: block;
}

.flex-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.form-control {
  border-color: #e0e0e0;
  padding: 16px 20px;
}

.form-control::-webkit-input-placeholder {
  color: #99a1ac;
}
.form-control::-moz-placeholder {
  color: #99a1ac;
}
.form-control:-ms-input-placeholder {
  color: #99a1ac;
}
.form-control:-moz-placeholder {
  color: #99a1ac;
}

.center {
  text-align: center;
}
.text-base {
  font-size: 16px !important;
}
.text-2xl {
  font-size: 24px !important;
}

.w-max {
  width: max-content !important;
}

.z-1 {
  z-index: 1;
}

.section-title {
  font-family: var(--font-teko);
  font-size: 90px;
  font-weight: 700;
  color: var(--primary-blue);
}
.btn-primary {
  --btn-bg: var(--primary-blue);
  --btn-text: var(--white);
  --btn-hover-bg: #ffffff;
  --btn-hover-text: var(--primary-blue);

  position: relative;
  overflow: hidden;
  background-color: var(--btn-bg);
  color: var(--btn-text);
  padding: 12px 30px;
  border-radius: 8px;
  font-weight: 600;
  font-size: 14px;
  border: none;
  cursor: pointer;
  transition:
    transform 0.5s ease,
    box-shadow 0.5s ease,
    color 0.5s ease;
  display: inline-block;
  z-index: 1;
}

/* Font family */
.font-roboto {
  font-family: var(--font-roboto);
}
.font-teko {
  font-family: var(--font-teko);
}

/* Circle */
.btn-primary::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  background: var(--btn-hover-bg);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  transition:
    width 0.5s ease,
    height 0.5s ease;
  z-index: -1;
}

.btn-primary:hover::before {
  width: 400px;
  height: 400px;
}

.btn-primary:hover {
  color: var(--btn-hover-text);
  /* transform: translateY(-2px); */
  box-shadow: 0 5px 15px rgba(0, 86, 210, 0.3);
}
/* Header */
/* ================= HEADER ================= */
.top-header {
  border-bottom: 1px solid #474747;
}

.top-inner {
  margin: auto;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 100px;
}

.top-box i {
  font-size: 13px;
  color: #dcdcdc;
}

.top-divider {
  width: 1px;
  height: 50px;
  background: #474747;
  flex-shrink: 0;
}

/* =========================
   MAIN NAVIGATION
========================= */
.main-navigation {
  position: absolute !important;
  top: 51px;
  left: 0;
  width: 100%;
  background: transparent;
  z-index: 1000;
  padding: 0 !important;
  transition: all 0.3s ease;
}

/* Container spacing */
.nav-container {
  padding-block: 40px !important;
}

/* Menu pill design */
.main-header .navbar-nav {
  background-color: #ffffff;
  border-radius: 40px;
  gap: 70px;
  padding: 8px 70px !important;
  align-items: center;
}

.nav-item .nav-link {
  font-size: 16px;
  font-weight: 600;
  color: #000000;
}

.nav-item:hover .nav-link {
  color: var(--primary-blue);
}

/* =========================
   RESPONSIVE FIXES
========================= */

/* Large screens */
@media (max-width: 1400px) {
  .nav-container {
    padding-block: 40px !important;
  }

  .navbar-nav {
    gap: 40px;
    padding: 10px 40px !important;
  }
}

/* Tablet */
@media (max-width: 991px) {
  .navbar-nav {
    border-radius: 20px;
    gap: 0;
    padding: 20px !important;
    margin-top: 20px;
    flex-direction: column;
    align-items: flex-start;
  }

  .navbar-nav .nav-item {
    width: 100%;
  }

  .navbar-nav .nav-link {
    padding: 12px 0;
    width: 100%;
  }
}

/* Mobile */
@media (max-width: 576px) {
  .navbar-nav {
    padding: 15px !important;
  }
}

/* Navbar Links */
.navbar-nav .nav-link {
  position: relative;
  font-weight: 700;
  padding: 10px 0;
  transition: color 0.3s ease;
}

.navbar-nav .nav-link.active {
  color: var(--primary-blue) !important;
}

/* Line Effect */
.navbar-nav .nav-link::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -8px;
  width: 5px;
  height: 0;
  background-color: var(--primary-blue);
  transition: height 0.3s ease;
}

/* Hover Effect */
.navbar-nav .nav-link:hover::after,
.navbar-nav .nav-link.active::after {
  height: 20px;
}

.nav-wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
  /* gap: 40px; */
  width: 80%;
  margin: auto;
}

.logo a {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  color: #ffffff;
}

.logo img {
  width: 174px;
  height: 74px;
  border-radius: 4px;
}

.btn-quote {
  background-color: #2563eb;
  color: #ffffff;
  border: white 1px solid !important;
  padding: 10px 26px;
  border-radius: 8px;
  text-decoration: none;
  font-size: 18px;
  font-weight: 700;
  transition: all 0.3s ease;
  display: inline-block;
  border: none;
}

.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 5px;
}

.menu-toggle span {
  width: 25px;
  height: 3px;
  background-color: #ffffff;
  border-radius: 2px;
  transition: all 0.3s ease;
}

/* ================= HERO ================= */

.hero {
  /* height: 100vh;
    min-height: 750px;
    background: url("images/home-page-background.png") center/cover no-repeat; */
  position: relative;
  display: flex;
  align-items: center;
  color: #fff;
}

.hero .hero-slide {
  height: 90vh;
  display: flex;
  align-items: center;
}

.grid-overlay {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(
    rgba(255, 255, 255, 0.15) 1px,
    transparent 1px
  );
  background-size: 35px 35px;
}

.hero-wrapper {
  position: relative;
  z-index: 5;
  width: 100%;
}

.hero-left h1 {
  font-size: 90px;
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 30px;
  font-family: var(--font-teko);
}

.explore-btn {
  background: var(--primary-blue);
  border: white 1px solid;
  padding: 10px 26px;
  border-radius: 6px;
  font-weight: 700;
  font-size: 18px;
  transition: 0.3s;
}

/* Social Sidebar */
.social-bar {
  position: fixed;
  right: 0px;
  top: 50%;
  transform: translateY(-50%);
  z-index: 9999;
}

.social-bar a {
  width: 42px;
  height: 42px;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 4px;
  color: #000;
  font-size: 18px;
  transition: 0.3s;
}

.social-bar a:hover {
  transform: scale(1.1);
}

/* Hero Bottom */
.hero-footer {
  position: absolute;
  bottom: 0px;
  left: 0;
  right: 0;
  padding: 10px 16px;
  z-index: 2;
  border-top: 1px solid #ffffff;
}

.customer-box {
  display: flex;
  align-items: center;
  text-align: center;
  gap: 15px;
  padding: 12px 0;
}

.avatars {
  display: flex;
}

.avatars img {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 2px solid #fff;
  margin-left: -12px;
}

.avatars img:first-child {
  margin-left: 0;
}

.plus {
  width: 38px;
  height: 38px;
  background: var(--primary-blue);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-left: -12px;
  font-weight: 700;
  flex-shrink: 0;
}

.dots span {
  width: 16px;
  height: 16px;
  background: #fff;
  border-radius: 50%;
  display: inline-block;
  margin-left: 8px;
  cursor: pointer;
}

.dots span.active {
  background: var(--primary-blue);
}

/* Welcome Section */
.welcome {
  padding: 100px 0;
  background-color: var(--white);
}

.welcome .check-list {
  padding-left: 0 !important;
  margin-bottom: 0;
}

.check-list li:last-child {
  margin-bottom: 0;
}

.welcome-grid {
  display: grid;
  grid-template-columns: 1fr 3fr;
  gap: 60px;
  align-items: flex-start;
  margin-top: 10px;
}

.story-col {
  max-width: 300px;
}

.story-col h3 {
  font-family: var(--font-teko);
  font-size: 70px;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 20px;
  line-height: 1.2;
}

.story-col p {
  color: var(--text-dark);
  margin-bottom: 20px;
  font-size: 15px;
  line-height: 1.7;
}

.signature {
  align-items: center;
  gap: 20px;
  margin-top: 30px;
}

.signature img {
  height: 76px;
  margin-bottom: 20px;
}

.sign-text strong {
  display: block;
  font-size: 18px;
}

.sign-text span {
  color: var(--text-muted);
  font-size: 14px;
}

.factory-card {
  /* height: 540px; */
  /* width: 930px; */
  background-size: cover;
  background-position: center;
  border-radius: 16px;
  overflow: hidden;
  position: relative;
  color: var(--white);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
}

.card-overlay {
  background: linear-gradient(
    90deg,
    rgba(0, 0, 0, 0.75) 0%,
    rgba(0, 0, 0, 0.45) 50%,
    rgba(0, 0, 0, 0.2) 100%
  );
  height: 100%;
  width: 100%;
  padding: 200px 50px 36px 50px;
  display: flex;
  flex-direction: column;
  justify-content: end;
}

.factory-card:hover .card-overlay {
  background: linear-gradient(
    90deg,
    rgba(1, 83, 224, 0.85) 14%,
    rgba(1, 83, 224, 0.6) 60%,
    rgba(1, 83, 224, 0.3) 100%
  );
}

.card-overlay h4 {
  font-size: 25px;
  margin-bottom: 20px;
  font-weight: 700;
  color: var(--white);
}

.card-overlay p {
  max-width: 530px;
  font-size: 16px;
  color: var(--white);
  line-height: 1.8;
  margin-bottom: 14px;
  font-weight: 400;
}

.check-list li {
  margin-bottom: 14px;
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 16px;
  font-weight: 500;
}

.check-list i {
  color: #02bc7d;
}

/* Features Section */
.features {
  padding: 80px 0;
  background-color: #f5f5f5;
}

.features .container {
  width: 100%;
}

.features .section-title {
  font-size: 50px;
  color: var(--text-dark);
  padding-bottom: 20px;
  font-weight: 700;
}

.features .features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  align-items: flex-start;
}

.features .card-body {
  font-weight: 400;
}

.feature-card {
  background-color: var(--primary-blue);
  padding: 40px 35px;
  border-radius: 12px;
  text-align: left;
  transition: var(--transition);
  border: none;
  color: var(--white);
  display: flex;
  flex-direction: column;
  box-shadow: 0 10px 30px rgba(0, 86, 210, 0.15);
}

.card-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 0;
  height: 30px;
}

.card-header h4 {
  font-size: 20px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 0;
}

.card-image {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-left: 16px;
}

.card-image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.card-divider {
  border: none;
  border-top: 1.5px solid rgba(255, 255, 255, 0.25);
  margin: 16px 0 12px 0;
}

.card-body p {
  color: #fff;
  font-size: 15px;
  line-height: 1.7;
  margin: 0;
}

.feature-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 86, 210, 0.3);
}

.card-content {
  flex: 1;
}

.card-content h4 {
  font-size: 18px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 10px;
}

.card-content p {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.95);
  line-height: 1.6;
}

.feature-card.active .card-icon,
.feature-card:hover .card-icon {
  filter: brightness(0) invert(1);
}

.feature-card h4 {
  font-size: 22px;
  margin-bottom: 15px;
  font-weight: 700;
}

.feature-card p {
  font-size: 14px;
  color: var(--white);
}

.feature-card.active p,
.feature-card:hover p {
  color: rgba(255, 255, 255, 0.8);
}

/* -------- */
.feature-card:hover {
  transform: translateY(-1px);
}
.feature-card {
  position: relative !important;
  overflow: hidden !important;
  transition: transform 0.3s ease;
  height: 100%;
}

.feature-card::before {
  content: "" !important;
  position: absolute !important;
  top: 50% !important;
  left: 50% !important;
  width: 0 !important;
  height: 0 !important;
  border-radius: 50% !important;
  background: #222222 !important;
  transform: translate(-50%, -50%) !important;
  transition:
    width 0.6s ease,
    height 0.6s ease !important;
  z-index: 1 !important;
  pointer-events: none !important;
}

.feature-card:hover::before {
  width: 1000px !important;
  height: 1000px !important;
}

.card-image {
  position: relative;
}

.card-image .img-default {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.card-header .bg-dots {
  position: absolute;
  top: -12px;
  left: 145px;
}

.feature-card:hover .card-image .card-img-icon {
  filter: brightness(0) invert(1);
}

.feature-card .card-header,
.feature-card .card-divider,
.feature-card .card-body {
  position: relative !important;
  z-index: 2 !important;
}
/* ----------------- */

/* Products Section */
.products {
  padding: 100px 0;
}

.products .btn-primary {
  --btn-hover-bg: #000000;
  --btn-hover-text: var(--primary-blue);
  background: var(--primary-blue);
  border: white 1px solid;
  padding: 10px 26px;
  border-radius: 6px;
  font-weight: 700;
  font-size: 18px;
  transition: 0.3s;
}

.products .section-title {
  font-size: 90px;
  color: var(--text-dark);
  font-weight: 700;
  text-align: center;
}

.section-header {
  margin-bottom: 50px;
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}

.product-item {
  background-color: var(--white);
  border-radius: var(--border-radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: var(--transition);
  height: 100%;
}

.product-item:hover {
  transform: translateY(-5px);
}
/* ------------------ */

.product-item:hover {
  background-color: var(--primary-blue);
}

.product-item .view-link::after {
  display: inline-block;
  content: "\f061";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  color: var(--text-dark);
  margin-left: 0;
  opacity: 0;
  transform: translateX(-4px);
  transition:
    opacity 0.3s ease,
    transform 0.3s ease,
    margin-left 0.3s ease;
}

.product-item:hover .view-link {
  color: var(--text-dark);
}

.product-item:hover .view-link::after {
  opacity: 1;
  transform: translateX(0);
  margin-left: 6px;
}

.product-item:hover .product-details {
  border-left: 5px solid var(--text-dark);
}

.product-item:hover .product-details h4 {
  color: var(--white);
}
/* ------------------- */

.product-img {
  background-color: #f1f1f1;
  overflow: hidden;
}

.product-img img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  transition: var(--transition);
}

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

.product-details {
  margin: 30px;
  padding: 16px;
  border-left: 5px solid var(--primary-blue);
}

.product-details h4 {
  font-size: 20px;
  margin-bottom: 10px;
}

.view-link {
  color: var(--primary-blue);
  font-weight: 600;
  font-size: 14px;
  transition: color 0.35s ease;
  display: inline-flex;
  align-items: center;
}

/* Brands Section */
.brands {
  background-color: var(--primary-blue);
  padding: 80px 0 130px;
  position: relative;
}

.brands-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  z-index: 1;
  position: relative;
}

.brand-item {
  background: #f3f4f8;
  border-radius: var(--border-radius);
  display: flex;
  justify-content: center;
  align-items: center;
  height: 120px;
}

.brand-item img {
  max-height: 100%;
  object-fit: contain;
}

/* ================= TESTIMONIAL SECTION (UPDATED) ================= */
.testimonial {
  position: absolute;
  overflow: hidden;
  bottom: 0;
  left: 0;
  width: 50%;
  background: white;
  border-radius: 0 10px 0 0;
  z-index: 2;
}

/* BOTTOM HALF BACKGROUND */
.testimonial::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  height: 25%;
  background-color: var(--white);
  z-index: 0;
}

/* White card */
.testimonial-content {
  background: #ffffff;
  border-radius: 0 20px 0 0;
  padding: 52px 56px 40px 0;
  flex-shrink: 0;
  position: relative;
  z-index: 3;
  margin-left: auto;
  max-width: 660px;
}

.testimonial-content::after {
  content: "";
}

/* Quote heading row */
.quote-header {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 28px;
}

.quote-header h2 {
  font-family: var(--font-teko);
  font-size: 90px;
  font-weight: 700;
  color: #2563eb;
  line-height: 1;
  margin: 0;
}

.quote-mark {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 58px;
  font-weight: 700;
  color: #d1d5db;
  line-height: 1;
  display: inline-block;
}

.quote-mark-left {
  margin-top: -6px;
}

.quote-mark-right {
  margin-top: 10px;
}

/* Quote text */
.quote-text {
  font-style: italic;
  font-size: 23px;
  font-weight: 600;
  color: #111111;
  line-height: 1.85;
  margin-bottom: 32px;
}

/* Author row */
.testimonial-author {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 20px;
  justify-content: flex-start;
}

.author-img {
  width: 62px !important;
  height: 62px !important;
  border-radius: 10px;
  object-fit: cover;
  border: 2px solid #e5e7eb;
  flex-shrink: 0;
}

.author-info strong {
  display: block;
  font-size: 16px;
  font-weight: 700;
  color: #111111;
  margin-bottom: 2px;
}

.author-info span {
  font-size: 14px;
  color: #555555;
}

/* Pagination dots — bottom right */
.testimonial-dots {
  display: flex;
  gap: 8px;
  justify-content: flex-end;
  margin-top: -35px;
  z-index: 3;
  position: relative;
}

.testimonial-dots .dot {
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: #d1d5db;
  cursor: pointer;
  transition: background 0.2s;
  display: inline-block;
}

.testimonial-dots .dot.active {
  background: #2563eb;
}

/* Building image */
.testimonial-image {
  border-radius: 16px;
  max-width: 1100px;
  margin-left: auto;
  overflow: hidden;
  margin-right: -160px;
  position: relative;
  z-index: 1;
}
.testimonial-bg-img {
  background-image: linear-gradient(var(--primary-blue), var(--primary-blue));
  background-size: 100% 70%;
  background-repeat: no-repeat;
}
/* .testimonial-bg-img-wrapper{
  max-width: 1600px;
  margin: auto;
} */
.testimonial-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 16px;
  display: block;
  transition: var(--transition);
}

.testimonial-image:hover img {
  transform: scale(1.05);
}

/* Global Reach Section */
.global-reach {
  padding-block: 100px;
  background: linear-gradient(180deg, #ebf7ff 50%, #ffffff 100%);
  margin-top: 100px;
}
.global-reach .reach-content p {
  font-weight: 400;
  font-size: 18px;
}
.global-reach-wrapper {
  background: radial-gradient(50% 50% at 50% 50%, #e8edf1 0%, #e8edf1 100%);
  /* padding-left: 100px; */
  border-radius: 10px;
}
.reach-content {
  padding: 20px 100px 20px 0;
  display: grid;
  height: 100%;
  place-content: center;
}

/* Footer Section */
footer {
  background-color: var(--dark-bg);
  color: var(--white);
  position: relative;
  background-image: radial-gradient(
    rgba(255, 255, 255, 0.15) 1px,
    transparent 1px
  );
  background-size: 30px 30px;
  padding-top: 80px;
}

footer .btn-primary {
  background: var(--primary-blue);
  border: white 1px solid;
  padding: 10px 26px;
  border-radius: 6px;
  font-weight: 700;
  font-size: 18px;
  transition: 0.3s;
  --btn-hover-bg: #000000;
  --btn-hover-text: var(--primary-blue);
}

.footer-contact-box {
  background-color: var(--white);
  color: var(--text-dark);
  padding: 80px 60px;
  border-radius: var(--border-radius);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
  display: grid;
  grid-template-columns: 1fr 1fr 1.2fr 1.2fr;
  gap: 40px;
}

.footer-col h5 {
  font-size: 20px;
  margin-bottom: 25px;
  color: var(--text-dark);
  font-weight: 700;
}

.footer-col:is(.newsletter) h5 {
  font-size: 30px;
}

.footer-col:not(.newsletter) h5 {
  margin-bottom: 40px;
}

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

.contact-link {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 41px;
}

.contact-link img {
  width: 20px;
  flex-shrink: 0;
}

.contact-link span {
  font-size: 16px;
  font-weight: 700;
  color: #000000;
}

.newsletter-icon img {
  width: 50px;
  margin-bottom: 15px;
}

.newsletter-form {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.newsletter-form input {
  padding: 12px 20px;
  border: 1px solid #eee;
  border-radius: var(--border-radius);
  background-color: #f9f9f9;
  font-family: inherit;
}

.bottom-footer {
  padding: 30px 0;
}

.bottom-footer p {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.6);
}

/* Responsive Design */
@media (max-width: 1024px) {
  .hero-content h1 {
    font-size: 48px;
  }

  .footer-contact-box {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 768px) {
  .nav-links,
  .nav-cta {
    display: none;
  }

  .top-bar {
    display: none;
  }

  .features-grid,
  .products-grid {
    grid-template-columns: 1fr;
  }

  .testimonial .container {
    flex-direction: column;
  }
  .hero-bottom {
    position: static;
    margin-top: 50px;
  }

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

/* animation style css */

[data-aos="fade-right"] {
  transform: translateX(-300px);
}

/* single page ( product detail page ) */
.single-page-header {
  background: linear-gradient(to bottom, #000000 25%, var(--primary-blue) 100%);
  padding-top: 84px;
  padding-bottom: 34px;
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 300px;
  margin-top: 170px;
  border-top: 1px solid #737373;
}

/* Title Styling */
.page-title {
  color: var(--primary-blue); /* Adjust color to match image blue if needed */
  font-family: var(--font-teko);
  font-size: 100px;
  font-weight: 600;
  line-height: 1;
  margin: 0 0 58px 0;
  text-transform: capitalize;
}

/* Breadcrumb Styling */
.breadcrumb-nav {
  color: rgba(255, 255, 255, 0.7);
  font-size: 20px;
  font-weight: 600; /* Semi-bold */
}

.breadcrumb-nav a {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  transition: 0.3s;
}

.breadcrumb-nav a:hover {
  color: #ffffff;
}

.breadcrumb-nav span {
  color: #ffffff;
}

/* Responsive Adjustments */
@media (max-width: 1600px) {
  .single-page-header {
    padding: 84px 15%; /* Reduces the 750px padding for smaller desktops */
  }
}

@media (max-width: 768px) {
  .single-page-header {
    padding: 60px 20px;
  }
  .page-title {
    font-size: 60px; /* Smaller font for mobile */
  }
  .breadcrumb-nav {
    font-size: 16px;
  }
}

/* Base Section Styles */
.info-section {
  padding: 80px 0;
  font-family: "Roboto", sans-serif;
  background-color: #fff;
}

.section-heading {
  text-align: center;
  font-family: "Teko", sans-serif;
  font-size: 48px;
  margin-bottom: 50px;
  text-transform: capitalize;
}

/* Grid Layout */
.info-grid {
  display: flex;
  gap: 50px;
  align-items: flex-start;
}

.info-image,
.info-content {
  flex: 1;
}

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

/* Typography */
.product-title {
  font-family: "Teko", sans-serif;
  font-size: 36px;
  color: var(--primary-blue);
  margin-bottom: 20px;
}

.description {
  font-size: 16px;
  line-height: 25px;
  color: #000000;
  font-weight: 400;
  margin-bottom: 30px;
}

/* Features List */
.features-list {
  list-style: none;
  padding: 0;
}

.features-list li {
  position: relative;
  padding-left: 30px;
  margin-bottom: 8px;
  font-weight: 600;
  font-size: 15px;
  line-height: 2;
}

/* Green Circle */
.features-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 3px;
  width: 22px;
  height: 22px;
  background-color: #00d084;
  border-radius: 50%;
}

/* White Checkmark */
.features-list li::after {
  content: "";
  position: absolute;
  left: 8px;
  top: 8px;
  width: 6px;
  height: 10px;
  border: solid #fff;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}

/* .check-icon {
  width: 22px;
  height: 22px;
  background-color: #00d084;
  border-radius: 50%;
  margin-right: 15px;
  display: inline-block;
  position: relative;
  flex-shrink: 0;
}

.check-icon::after {
  content: "";
  position: absolute;
  left: 8px;
  top: 4px;
  width: 5px;
  height: 10px;
  border: solid white;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
} */

/* RESPONSIVENESS */
@media (max-width: 991px) {
  .info-grid {
    flex-direction: column; /* Stacks image on top of text */
    gap: 30px;
  }

  .section-heading {
    font-size: 36px;
  }
  .info-section {
    padding-bottom: 0;
  }
}

@media (max-width: 576px) {
  .info-section {
    padding: 40px 0;
  }
  .product-title {
    font-size: 28px;
  }
}
.owl-carousel {
  display: block !important;
}

.footer-links {
  font-size: 16px !important;
  font-weight: 400;
  color: #000000 !important;
}

.custom-header-section {
  font-family: var(--font-teko);
  font-weight: 600;
  font-size: 100px;
  line-height: 100%;
  letter-spacing: 0%;
  text-align: center;
  margin-top: 160px;
  background: linear-gradient(180deg, #000000 41.07%, #0153e0 164.29%);
  padding: 80px 0px 25px 0px;
  border-top: 1px solid #737373;
}

.breadcrumb {
  margin-top: 20px;
  display: flex;
  align-items: center;
  gap: 10px;
  justify-content: center;
}

.breadcrumb a {
  font-weight: 600;
  font-size: 20px;
  color: #696969;
  text-decoration: none;
  transition: color 0.3s ease;
}

.breadcrumb a:hover {
  color: #007bff;
}

.breadcrumb .separator {
  color: #ffffff;
  font-size: 14px;
  display: inline-block;
  height: auto;
  line-height: normal;
}

.breadcrumb .current {
  font-weight: 600;
  font-size: 20px;
  color: #ffffff;
}

.breadcrumb a,
.breadcrumb .current {
  line-height: normal;
}

.nav-item.dropdown {
  display: flex;
  align-items: center;
  gap: 6px;
  position: relative;
}

.dropdown-toggle-btn {
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
}

.dropdown-toggle-btn img {
  width: 14px;
}

.motto-section {
  background-color: #f5f5f5;
}

.motto-container {
  padding-top: 80px;
  padding-bottom: 200px;
  margin: 0px 20px;
  background-image: url("images/moto-section-bg.png");
  background-size: cover;
  background-position: center;
}

.motto-section-title {
  font-family: var(--font-teko);
  font-weight: 700;
  font-size: 50px;
  line-height: 100%;
  letter-spacing: 0%;
  text-align: center;
}

/* The Circles */
.circle-box {
  width: 400px;
  height: 400px;
  border-radius: 50%;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  color: white;
  border: double 50px transparent;
}

.circle-box i {
  font-size: 3rem;
  margin-bottom: 10px;
}
.circle-box h3 {
  font-size: 45px;
  font-weight: 600;
  text-transform: uppercase;
  font-family: var(--font-teko);
}

.vision-gradient,
.mission-gradient,
.values-gradient {
  background-origin: border-box;
  background-clip: content-box, border-box;
  outline: 12px solid #f5f5f5;
}

.vision-gradient {
  background-image: var(--vision-color);
}
.mission-gradient {
  background-image: var(--mission-color);
}
.values-gradient {
  background-image: var(--values-color);
}

/* The Info Cards (Bubbles) */
.info-card {
  background: white;
  padding: 16px 26px;
  border-radius: 16px;
  max-width: 380px;
  margin: 0 auto;
  font-size: 18px;
  color: black;
  position: absolute;
  outline: 12px solid #f5f5f5;
  border: 2px solid #dddddd9c;
  width: max-content;
  font-weight: 500;
  --bg-color: #ffffff;
  --border-color: #dddddd9c;
  --border-width: 2px;
  --arrow-size: 16px;
  --arrow-offset: 30px;
}

/* The "Arrow" pointing to circles */
.info-card::before,
.info-card::after {
  content: "";
  position: absolute;
  bottom: 100%;
  border-style: solid;
}
.info-card::before {
  border-width: var(--arrow-size);
  border-color: transparent transparent var(--border-color) transparent;
}
.info-card::after {
  border-width: calc(var(--arrow-size) - (var(--border-width) * 0.5));
  border-color: transparent transparent var(--bg-color) transparent;
  margin-bottom: calc(var(--border-width) * -1.4);
}
.circle-our-value {
  margin-top: -12px;
}
.motto-wrapper {
  width: 860px;
}
.motto-wrapper::after {
  content: "";
  border: 5px solid #0c0628;
  border-radius: 50%;
  position: absolute;
  width: 80%;
  height: 80%;
  transform: translate(-50%, -50%);
  top: 50%;
  left: 50%;
  z-index: -1;
}

/* Responsive adjustments */
@media (min-width: 992px) {
  .mt-lg-n4 {
    margin-top: -60px;
  }
}

.card-one,
.card-three {
  padding-inline: 50px;
}

.card-one {
  left: 0;
  transform: translateX(-50%);
  margin-top: 20px;
}
.card-one::before {
  right: var(--arrow-offset);
}
.card-one::after {
  right: calc(var(--arrow-offset) + (var(--border-width) * 0.5));
}

.card-two {
  left: 100%;
  transform: translateX(-50%);
}
.card-two::before {
  left: var(--arrow-offset);
}
.card-two::after {
  left: calc(var(--arrow-offset) + (var(--border-width) * 0.5));
}

.card-three,
.card-three::before,
.card-three::after {
  left: 50%;
  transform: translateX(-50%);
}

.motto-top-border {
  position: absolute;
  top: 15px;
  left: 52.5%;
  transform: translateX(-50%);
  width: 15% !important;
  height: auto !important;
}

.motto-left-one-border {
  position: absolute;
  top: 33.9%;
  left: 24%;
  height: auto !important;
}

.motto-right-one-border {
  position: absolute;
  top: 33.5%;
  left: 76%;
  height: auto !important;
}

.motto-left-two-border {
  position: absolute;
  top: 53%;
  left: 24%;
  height: auto !important;
  width: 6% !important;
}

.motto-right-two-border {
  position: absolute;
  top: 53%;
  left: 70%;
  height: auto !important;
  width: 6% !important;
}

.custom-card {
  border-radius: 2rem;
  overflow: hidden;
  border: none !important;
}

.bg-light-gray {
  background-color: #f5f5f5;
}

.bg-light-blue {
  background-color: #eff5ff;
}

/* Matching the specific font style for headings */
.section-heading {
  font-weight: 800;
  font-family: var(--font-teko);
  text-transform: uppercase;
  font-size: 50px;
  color: #000000;
}

.feature-list {
  list-style: none;
  padding-left: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

/* .feature-item::before {
  content: "✓";
  color: #28a745;
  font-weight: bold;
  margin-right: 8px;
} */

.object-fit-cover {
  object-fit: cover;
  height: 100%;
  min-height: 300px;
}

.quality-sub-text {
  font-size: 16px;
  line-height: 25px;
  color: #000000;
}

.quality-wrapper {
  background-image: url("images/about-us-footer-bg.png");
  background-repeat: no-repeat;
  background-position: left 50px bottom 0px;
  margin-block: 100px;
}
.quality-img img {
  height: 100%;
  object-fit: cover;
}
.quality-wrapper .quality-container {
  padding: 100px;
}
.quality-wrapper .quality-container:before {
  content: "";
  background-color: #f5f5f5;
  width: 50%;
  height: 100%;
  position: absolute;
  left: 0;
  bottom: 0;
  top: 0;
  border-radius: 10px 10px 0 10px;
}
.quality-wrapper .quality-content {
  padding: 50px 40px !important;
}
.quality-wrapper .our-story-wrapper:before {
  right: 0;
  left: auto;
  border-radius: 0 10px 10px 10px;
}

.our-story-sub-text {
  font-size: 16px;
  color: #000000;
  line-height: 25px;
}

iframe {
  width: 100%;
  max-width: 100%;
}

.contact-section-title {
  font-family: var(--font-teko);
  font-size: 50px;
  color: #000000;
  font-weight: 600;
  opacity: 0.2;
}

.contact-card textarea {
  height: 100px;
  resize: none;
}

.contact-card [type="submit"] {
  background: var(--primary-blue);
  padding: 10px 34px !important;
  border-radius: 6px;
  font-weight: 700 !important;
  font-size: 18px;
  transition: 0.3s;
  color: white !important;
}

.contact-card .icon-box {
  width: 50px;
  height: 50px;
  background-color: #eeeeee;
  border-radius: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

/* Position the image to overlap or align with the card edge */
.contact-side-img {
  position: absolute;
  top: -80px;
  right: 0;
  margin-right: -470px;
  min-height: 1000px;
}

.contact-col {
  margin-block: 100px;
  padding: 40px;
}

/* Ensure the card doesn't hide the overlapping image */
.contact-card {
  overflow: visible !important;
  position: relative;
  z-index: 1;
}

.info-label {
  font-size: 14px;
  font-weight: 500;
  line-height: 25px;
  color: var(--primary-blue);
}

.quality-assurance {
  background: #f3f4f6;
  padding: 60px 0;
}

.quality-content p {
  font-size: 16px;
  line-height: 28px;
  color: #000000;
  margin: 0 auto;
  font-weight: 400;
}

.quality-assurance .quality-content p span {
  font-weight: 500;
}

.qa-img-box {
  border-radius: 12px;
  overflow: hidden;
  width: 100%;
  height: 340px;
}

.qa-img-box img {
  width: 100%;
  height: auto;
  border-radius: 12px;
  object-fit: cover;
  transition: 0.4s ease;
}

.qa-img-box-last {
  border-radius: 12px;
  overflow: hidden;
}

.qa-img-box-last img {
  width: 100%;
  height: 100%;
  border-radius: 12px;
  object-fit: cover;
  transition: 0.4s ease;
}

/* .qa-img-box img:hover {
  transform: scale(1.03);
} */

.industrial-campus {
  background: #f3f4f6;
  padding: 70px 0;
}

.campus-content {
  margin-top: 40px;
}

.campus-content p {
  font-size: 16px;
  line-height: 30px;
  color: #000000;
  margin-bottom: 15px;
  font-weight: 500;
}

.campus-img {
  border-radius: 15px;
  overflow: hidden;
}

.campus-img img {
  width: 100%;
  border-radius: 15px;
  transition: 0.4s ease;
}

.large-img img {
  height: 660px;
  object-fit: cover;
}

.small-img {
  align-self: flex-start;
  width: 100%;
}

.small-img img {
  height: 310px;
  object-fit: cover;
}

.custom-tabs {
  border-bottom: 1px solid #eaeaea;
  gap: 20px;
}
.custom-tabs .nav-link {
  font-family: var(--font-teko);
  font-weight: 600;
  font-size: 25px;
  color: #bababa;
  border: none;
  background: transparent;
  padding: 10px 0;
  position: relative;
  margin-right: 15px;
}
.custom-tabs .nav-link.active {
  color: var(--primary-blue);
  background: transparent;
}
.custom-tabs .nav-link.active::after {
  content: "";
  position: absolute;
  bottom: -1px;
  left: 0;
  width: 100%;
  height: 3px;
  background-color: var(--primary-blue);
}
.custom-tabs .nav-link.active::before {
  content: "";
  position: absolute;
  bottom: -7px;
  left: 50%;
  transform: translateX(-50%);
  border-width: 6px 7px 0 7px;
  border-style: solid;
  border-color: var(--primary-blue) transparent transparent transparent;
  z-index: 2;
}

.option-card {
  text-align: center;
  margin-bottom: 20px;
}

.option-circle {
  width: 170px;
  height: 170px;
  background: #ffffff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px auto;
  transition: 0.3s ease;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.05);
}

.option-circle img {
  max-width: 120px;
  max-height: 120px;
  object-fit: contain;
}

.option-card h6 {
  margin-top: 15px;
  font-weight: 600;
  font-size: 18px;
  color: #000000;
}

@media (max-width: 768px) {
  .option-circle {
    width: 140px;
    height: 140px;
  }
  .option-circle img {
    max-width: 90px;
    max-height: 90px;
  }
}

/* Container Background */
.why-choose-us {
  background: linear-gradient(180deg, #0153e01a 0%, rgba(1, 83, 224, 0) 100%);
  padding-block: 70px;
}

/* Hexagon Logic */
.hexagon-wrapper {
  display: flex;
  justify-content: center;
  position: relative;
}

.hexagon-blue {
  width: 160px;
  height: 180px;
  background-color: #0056d2; /* Main blue color */
  clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
  display: flex;
  align-items: center;
  justify-content: center;
}

.hexagon-white {
  width: 140px; /* Smaller to create the border effect */
  height: 160px;
  background-color: white;
  clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #000;
}

/* Optional: Connecting lines for Desktop */
@media (min-width: 768px) {
  .hexagon-wrapper::after {
    content: "";
    position: absolute;
    top: 50%;
    right: -25%;
    width: 50%;
    height: 15px;
    background-color: #0056d2;
    z-index: -1;
    transform: translateY(-50%);
  }

  /* Hide the line on the last element */
  .col-md-3:last-child .hexagon-wrapper::after {
    display: none;
  }
}

.why-choose-us-title {
  font-family: var(--font-teko);
  font-size: 50px;
  font-weight: 600;
  color: #000000;
}

.why-choose-us-desc {
  font-size: 18px;
  font-weight: 500;
  color: #000000;
  line-height: 25px;
  max-width: 860px;
}

.why-choose-us h6 {
  font-size: 22px;
  color: #000000;
  font-weight: 500;
  padding: 0 12px;
}

.why-choose-us-row {
  grid-template-columns: repeat(4, 1fr);
}

.why-choose-us-col {
  margin-inline: -0.5px;
}

.product-card img {
  height: 280px;
  object-fit: cover;
}

.product-card-header {
  border-radius: 8px 8px 0 0 !important;
  padding: 20px 40px 20px 40px !important;
  font-family: var(--font-teko);
  font-size: 30px;
  font-weight: 600;
  height: auto;
}

.product-card input[type="text"],
.product-card input[type="email"] {
  padding: 12px 20px;
}

.product-card {
  border-radius: 8px;
}

.download-brochure-pdf {
  font-size: 16px !important;
  font-weight: 400 !important;
  line-height: 25px !important;
  color: #000000 !important;
}

.list-group .list-group-item {
  padding-block: 8px !important;
}

.list-group .list-group-item a {
  text-decoration: none;
  color: #000000;
  font-size: 16px;
  font-weight: 500;
}

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

.all-products-grid .product-item .product-details h4 {
  font-family: var(--font-teko);
  font-size: 25px;
  font-weight: 600;
  color: #000000;
}

.all-products-grid .product-item .product-details .view-link {
  font-size: 16px;
  font-weight: 700;
  color: var(--primary-blue);
  text-decoration: none;
}

.product-item:hover .product-details h4 {
  color: #ffffff !important;
}

.all-products-grid:hover .view-link {
  color: #000000 !important;
}

.download-brochure-pdf-img {
  width: 24px !important;
  height: 24px !important;
  object-fit: contain;
}

.download-brochure-btn .download-brochure-text {
  font-size: 18px;
  font-weight: 500;
  line-height: 25px;
  color: var(--primary-blue);
}

.get-a-quote-btn {
  font-size: 18px;
  font-weight: 500;
  line-height: 25px;
  background-color: var(--primary-blue);
  color: #ffffff;
  padding: 12px 30px;
  border-radius: 5px;
  outline: none;
  border: none;
}

/* Product Page Pagination Only */
.custom-product-pagination nav {
  display: flex;
  justify-content: center;
}

.custom-product-pagination .nav-links {
  display: flex;
  gap: 10px;
}

.custom-product-pagination .page-numbers {
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 50px;
  height: 50px;
  padding: 0 18px;
  border: 1px solid #ddd;
  border-radius: 10px;
  text-decoration: none;
  font-weight: 500;
  color: #000;
  background: #fff;
  transition: all 0.3s ease;
}

/* Hover */
.custom-product-pagination .page-numbers:hover {
  background: #0d6efd;
  color: #fff;
  border-color: #0d6efd;
}

/* Active Page */
.custom-product-pagination .page-numbers.current {
  background: #0d6efd;
  color: #fff;
  border-color: #0d6efd;
}

/* Prev & Next Same Size */
.custom-product-pagination .prev,
.custom-product-pagination .next {
  min-width: 90px;
}

.about-us-short-description {
  font-size: 16px;
  font-weight: 400;
  line-height: 25px;
  color: #000000;
}

.social-icon img {
  width: 35px;
  height: 35px;
  object-fit: contain;
}

.main-header .sidebar-overlay {
  visibility: hidden;
  transform: visibility 0.3s ease;
}

.industrial-campus .rounded-custom {
  border-radius: 1rem !important;
}

.industrial-campus .image-container {
  position: relative;
  overflow: hidden;
  background-color: #f3f4f6;
  height: 100%;
}

.industrial-campus .image-container img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.industrial-campus .content-col {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
}

/* Media query */
@media (max-width: 1680px) {
  .testimonial-image {
    margin-right: 0;
  }
}
@media (max-width: 1440px) {
  .top-inner {
    gap: 80px;
  }
  .b-shape-one svg {
    width: 500px;
    height: 350px;
  }
}
@media (max-width: 1399px) {
  .testimonial {
    width: 57%;
  }
  .quality-wrapper .quality-container {
    padding: 50px;
  }
  .quality-wrapper .quality-content {
    padding: 40px 30px !important;
  }
  .reach-content .section-title {
    font-size: 70px;
  }
}
@media (max-width: 1280px) {
  .motto-wrapper {
    width: 650px;
  }
  .circle-box {
    width: 300px;
    height: 300px;
    border: double 30px transparent;
  }
  .circle-box img {
    width: 100px;
  }
  .circle-box h3 {
    font-size: 36px;
  }
  .info-card {
    max-width: 300px;
    font-size: 14px;
  }
  .card-one,
  .card-three {
    padding-inline: 40px;
  }
}
@media (max-width: 1200px) {
  .reach-content {
    padding: 20px 40px 20px 0;
  }
  .global-reach-wrapper img {
    height: 400px;
  }
  .top-inner {
    gap: 60px;
  }
  .main-header .nav-container {
    padding-block: 40px !important;
  }
  .main-header .navbar-nav {
    padding: 8px 40px !important;
  }
  .features .features-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .why-choose-us h6 {
    font-size: 16px;
  }
}
@media (max-width: 1199px) {
  .industrial-campus .left-col-mobile {
    height: 400px;
  }
  .industrial-campus .campus-content {
    margin-top: 10px;
  }
  .testimonial {
    width: 67%;
  }
  .quality-wrapper .quality-container:before {
    display: none;
  }
  .quality-wrapper .quality-container {
    padding: 0;
    margin-bottom: 24px;
  }
  .quality-img img {
    border-radius: 1rem 1rem 0 0 !important;
  }
  .quality-wrapper .quality-content {
    border-radius: 0 0 1rem 1rem !important;
  }
  .welcome-about .welcome-grid {
    grid-template-columns: 1fr 2fr;
    gap: 25px;
  }
}
@media (max-width: 1024px) {
  .story-col {
    max-width: 100%;
  }
  .welcome-grid {
    grid-template-columns: 1fr !important;
  }
}
@media (max-width: 1080px) {
  .top-header,
  .navbar-nav .nav-link::after {
    display: none;
  }
  .sidebar-toggle-btn,
  .sidebar-close-btn {
    display: block !important;
  }
  .main-navigation {
    top: 0;
    position: fixed !important;
  }
  .main-header .nav-container {
    padding-block: 10px !important;
  }
  .main-header .navbar-collapse .navbar-nav {
    position: fixed;
    inset-block: 0;
    width: 260px;
    height: 100%;
    border-radius: 0;
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    padding: 18px 16px 12px !important;
    right: 0;
    z-index: 9;
    transition: transform 0.3s ease;
    transform: translateX(100%);
    margin-top: 0;
    overflow: auto;
  }
  .main-header.active .navbar-nav {
    transform: translateX(0);
  }
  .main-header .sidebar-overlay {
    position: fixed;
    background: #00000070;
    inset: 0;
  }
  .main-header.active .main-navigation {
    z-index: 99999;
  }
  .main-header.active .sidebar-overlay {
    visibility: visible;
  }
  .navbar.main-navigation.scrolled {
    background-color: black;
  }
  .main-header .navbar-brand img {
    width: 120px;
  }
  .main-header .collapse:not(.show) {
    display: contents !important;
  }
  .main-header .nav-item.dropdown {
    justify-content: space-between;
    width: 100%;
    display: block;
  }
  .navbar-nav .dropdown-menu {
    position: static !important;
  }
  .main-header .dropdown-toggle-btn {
    position: absolute;
    right: 6px;
    top: 0;
    width: 24px;
    height: 42px;
    display: flex;
    align-items: center;
    justify-content: end;
  }
  .custom-header-section {
    margin-top: 84px;
    padding-top: 24px;
  }
}
@media (max-width: 991px) {
  .reach-content {
    padding: 40px;
  }
  .qa-img-box {
    height: auto;
  }
  .why-choose-us-col .middle-img,
  .why-choose-us-col svg {
    width: 60px;
    height: 60px;
  }
  .motto-container,
  .quality-assurance,
  .industrial-campus {
    padding-block: 50px;
  }
  .circle-box {
    width: 60px;
    height: 60px;
    border: double 6px transparent;
    margin: 0;
    outline: 0;
  }
  .circle-box img {
    width: 30px;
    height: 30px;
  }
  .motto-wrapper {
    width: 100%;
    max-width: 560px;
    margin: auto;
  }
  .motto-wrapper .motto-card {
    padding: 20px;
    background: white;
    border-radius: 12px;
    box-shadow: 0 0 10px 10px #cccccc0d;
  }
  .hero-left h1 {
    font-size: 50px;
  }
  .hero .hero-slide {
    height: 70vh;
  }
  .footer-contact-box {
    padding: 40px 20px;
  }
  .card-overlay {
    padding: 80px 50px 36px 50px;
  }
  .products-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .b-shape-one svg {
    width: 400px;
    height: 250px;
  }
  .testimonial {
    width: 100%;
    max-width: 600px;
    border-radius: 10px;
    box-shadow: 0px 0px 25px 0px rgba(0, 0, 0, 0.1);
    position: static;
    margin-top: -30%;
    margin-inline: auto;
  }
  .testimonial-image {
    width: 100%;
  }
  .testimonial-content {
    max-width: 100%;
    padding: 32px;
  }
  .testimonial-bg-img {
    background-size: 100% 50%;
  }
  .brands {
    padding: 80px 0 80px;
  }
  .testimonial-container {
    display: flex;
    flex-direction: column-reverse;
  }
}
@media (max-width: 768px) {
  .welcome,
  .features,
  .products,
  .brands,
  .global-reach {
    padding: 50px 0;
  }
  .quality-wrapper {
    margin-block: 50px;
  }
  .section-title,
  .products .section-title {
    font-size: 60px;
  }
  .features .features-grid {
    grid-template-columns: repeat(1, 1fr);
  }
  .brands-strip {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 767px) {
  .testimonial {
    max-width: 480px;
  }
  .custom-tabs {
    flex-wrap: nowrap;
    overflow: auto;
    white-space: nowrap;
    overflow-y: hidden;
    margin-bottom: 20px !important;
    gap: 10px;
  }
  .option-card h6 {
    font-size: 14px;
  }
  .custom-tabs .nav-link {
    font-size: 18px;
  }
  .why-choose-us-col .middle-img,
  .why-choose-us-col svg {
    width: 40px;
    height: 40px;
  }
  .global-reach {
    margin-top: 50px;
  }
}
@media (max-width: 576px) {
  .products .section-header {
    margin-bottom: 20px;
  }
  .reach-content {
    padding: 20px 16px;
  }
  .global-reach {
    padding-bottom: 0;
  }
  .reach-content .section-title {
    font-size: 42px;
  }
  .global-reach .reach-content p {
    font-size: 16px;
    margin-bottom: 0 !important;
  }
  .why-choose-us-col .middle-img,
  .why-choose-us-col svg {
    width: 30px;
    height: 30px;
  }
  .why-choose-us-col:first-child .why-choose-us-img-wrp .middle-img {
    margin-top: -6px;
  }
  .why-choose-us-col:first-child .why-choose-us-img-wrp svg {
    bottom: 6px;
  }
  .why-choose-us-col:nth-child(2) .why-choose-us-img-wrp svg,
  .why-choose-us-col:nth-child(2) .why-choose-us-img-wrp svg,
  .why-choose-us-col:last-child .why-choose-us-img-wrp svg {
    bottom: 4px;
  }
  .why-choose-us-col:nth-child(2) .why-choose-us-img-wrp .middle-img,
  .why-choose-us-col:nth-child(2) .why-choose-us-img-wrp .middle-img,
  .why-choose-us-col:last-child .why-choose-us-img-wrp .middle-img {
    margin-top: -4px;
  }
  .why-choose-us-row {
    grid-template-columns: repeat(1, 1fr);
    place-self: center;
  }
  .why-choose-us {
    padding-top: 50px;
    padding-bottom: 0;
  }
  .why-choose-us-img-wrp {
    width: 100px;
    height: 100px;
  }
  .why-choose-us-img-wrp .front-img {
    transform: rotate(90deg);
  }
  .why-choose-us h6 {
    margin: 0 !important;
    font-size: 18px;
    font-weight: 700;
  }
  .why-choose-us-col {
    margin: -0.5px 0;
    display: flex;
    align-items: center;
  }
  .prd-info-section .section-heading {
    font-size: 32px;
  }
  .industrial-campus .left-col-mobile {
    height: auto;
  }
  .custom-header-section {
    margin-top: 75px;
    padding-top: 20px;
  }
  .motto-section-title {
    font-size: 32px;
    margin-bottom: 30px !important;
  }
  .brand-item {
    height: 80px;
  }
  .b-shape-one svg {
    width: 200px;
    height: 110px;
  }
  .feature-card {
    padding: 24px 16px;
  }
  .section-title,
  .products .section-title {
    font-size: 24px;
  }
  .footer-contact-box {
    grid-template-columns: 1fr;
    padding: 16px;
    gap: 12px;
  }
  .footer-col ul li {
    margin-bottom: 12px;
  }
  .footer-col:not(.newsletter) h5,
  .contact-link {
    margin-bottom: 20px;
  }
  .footer-col {
    margin-bottom: 10px;
  }
  .btn-quote {
    padding: 8px 14px;
    font-size: 14px;
  }
  .main-header .navbar-brand {
    margin-right: 0;
  }
  .main-header .navbar-brand img {
    width: 100px;
  }
  .hero .hero-slide {
    height: 90vh;
  }
  .section-title,
  .features .section-title {
    font-size: 40px;
  }
  .story-col h3 {
    font-size: 36px;
    margin-bottom: 10px;
  }
  .welcome-grid {
    gap: 30px !important;
  }
  .card-overlay {
    padding: 50px 16px 20px 16px;
  }
  .check-list li {
    font-size: 14px;
  }
  .products-grid,
  .all-products-grid {
    grid-template-columns: repeat(1, 1fr);
  }
  .product-card-header {
    padding: 10px 20px !important;
    font-size: 20px;
  }
  .story-col p {
    margin-bottom: 0;
  }
  .testimonial {
    max-width: 90%;
  }
  .testimonial-image img,
  .testimonial-image {
    border-radius: 0;
  }
  .testimonial-container {
    padding: 0;
  }
  .quote-header h2 {
    font-size: 40px;
  }
  .testimonial-content {
    padding: 16px;
  }
  .quote-text {
    font-size: 16px;
  }
  .quote-mark img {
    width: 50px;
  }
  .quote-header {
    margin-bottom: 16px;
  }
  .testimonial-bg-img {
    background-size: 100% 0%;
  }
  .feature-list {
    grid-template-columns: 1fr;
  }
  .quality-wrapper .quality-content {
    padding: 20px !important;
  }
  .contact-col {
    margin-block: 0px;
    padding: 40px 16px;
    box-shadow: none !important;
  }
}
@media (min-width: 1400px) {
  .h-container {
    max-width: 1620px !important;
  }
}
@media (min-width: 992px) {
  .h-container {
    max-width: 1080px;
  }
}
