* {
  box-sizing: border-box;
  padding: 0;
  margin: 0;
}

:root {
  --accent: #FFB700;
}

html {
  scroll-behavior: smooth;
}

@font-face {
  font-family: 'RobotoRegular';
  src: url('../css/fonts/RobotoRegular.eot');
  src: url('../css/fonts/RobotoRegular.eot') format('embedded-opentype'),
    url('../css/fonts/RobotoRegular.woff2') format('woff2'),
    url('../css/fonts/RobotoRegular.woff') format('woff'),
    url('../css/fonts/RobotoRegular.ttf') format('truetype'),
    url('../css/fonts/RobotoRegular.svg#RobotoRegular') format('svg');
}

@font-face {
  font-family: 'RobotoBold';
  src: url('../css/fonts/RobotoBold.eot');
  src: url('../css/fonts/RobotoBold.eot') format('embedded-opentype'),
    url('../css/fonts/RobotoBold.woff2') format('woff2'),
    url('../css/fonts/RobotoBold.woff') format('woff'),
    url('../css/fonts/RobotoBold.ttf') format('truetype'),
    url('../css/fonts/RobotoBold.svg#RobotoBold') format('svg');
}

@font-face {
  font-family: 'RobotoSemiBold';
  src: url('../css/fonts/RobotoSemiBold.eot');
  src: url('../css/fonts/RobotoSemiBold.eot') format('embedded-opentype'),
    url('../css/fonts/RobotoSemiBold.woff2') format('woff2'),
    url('../css/fonts/RobotoSemiBold.woff') format('woff'),
    url('../css/fonts/RobotoSemiBold.ttf') format('truetype'),
    url('../css/fonts/RobotoSemiBold.svg#RobotoSemiBold') format('svg');
}

@font-face {
  font-family: 'RobotoBlack';
  src: url('../css/fonts/RobotoBlack.eot');
  src: url('../css/fonts/RobotoBlack.eot') format('embedded-opentype'),
    url('../css/fonts/RobotoBlack.woff2') format('woff2'),
    url('../css/fonts/RobotoBlack.woff') format('woff'),
    url('../css/fonts/RobotoBlack.ttf') format('truetype'),
    url('../css/fonts/RobotoBlack.svg#RobotoBlack') format('svg');
}

@font-face {
  font-family: 'RobotoMedium';
  src: url('../css/fonts/RobotoMedium.eot');
  src: url('../css/fonts/RobotoMedium.eot') format('embedded-opentype'),
    url('../css/fonts/RobotoMedium.woff2') format('woff2'),
    url('../css/fonts/RobotoMedium.woff') format('woff'),
    url('../css/fonts/RobotoMedium.ttf') format('truetype'),
    url('../css/fonts/RobotoMedium.svg#RobotoMedium') format('svg');
}

@font-face {
  font-family: 'MontserratBold';
  src: url('../css/fonts/MontserratBold.eot');
  src: url('../css/fonts/MontserratBold.eot') format('embedded-opentype'),
    url('../css/fonts/MontserratBold.woff2') format('woff2'),
    url('../css/fonts/MontserratBold.woff') format('woff'),
    url('../css/fonts/MontserratBold.ttf') format('truetype'),
    url('../css/fonts/MontserratBold.svg#MontserratBold') format('svg');
}

@font-face {
  font-family: 'MontserratSemiBold';
  src: url('../css/fonts/MontserratSemiBold.eot');
  src: url('../css/fonts/MontserratSemiBold.eot') format('embedded-opentype'),
    url('../css/fonts/MontserratSemiBold.woff2') format('woff2'),
    url('../css/fonts/MontserratSemiBold.woff') format('woff'),
    url('../css/fonts/MontserratSemiBold.ttf') format('truetype'),
    url('../css/fonts/MontserratSemiBold.svg#MontserratSemiBold') format('svg');
}

body {
  font-family: 'RobotoRegular';
  color: #191919;
  font-size: 16px;
  line-height: 1.5;
}

h1,
h2,
h3,
.hero-heading {
  font-family: 'Montserrat', sans-serif;
}

/* HEADER WRAPPER */
header .navbar-wrapper {
  position: absolute;
  top: 30px;
  width: 100%;
  z-index: 3000;
  padding-top: 0px;
}

.navbar-toggler {
  border: 0;
  padding: 0;
  width: 42px;
  height: 42px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.navbar-toggler:focus {
  box-shadow: none;
}

.navbar-toggler-icon {
  width: 2.5em;
  height: 2.5em;
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba(255,255,255,1)' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

.header-bg {
  background: rgb(0 0 0 / 78%);
  width: 100%;
}

/* DESKTOP LOGO */
.header-logo img {
  height: 70px;
}

.header-logo {
  text-align: center;
  margin-bottom: 12px;
}

/* MOBILE HEADER (logo + toggler) */
.mobile-header {
  display: none;
}

.mobile-logo {
  height: 55px;
}

/* NAV */
.site-navbar {
  background: transparent;
  padding: 10px 0;
}

.navbar-nav .nav-item {
  /* margin: 0 12px; */
}

.navbar-nav .nav-link {
  color: #fff !important;
  font-size: 16px;
  font-weight: 500;
  font-family: 'RobotoMedium';
  padding: 8px 8px !important;
}

.navbar-nav .nav-link.active,
.navbar-nav .nav-link:hover {
  color: var(--accent) !important;
}

/* ===== STICKY HEADER ADDON ===== */
header .navbar-wrapper.sticky-active {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  animation: smoothSticky 0.4s ease;
  background: #000;
}

@keyframes smoothSticky {
  from {
    top: -80px;
    opacity: 0;
  }

  to {
    top: 0;
    opacity: 1;
  }
}

/* SEARCH BAR */

.search-box {
  display: flex;
  align-items: center;
  background: transparent !important;
  height: 48px;
  overflow: hidden;
  margin-left: 10px;
}

.search-box input {
  background: rgb(255 255 255 / 18%);
  border: none;
  outline: none;
  color: #fff;
  padding: 0 10px;
  width: 140px;
  font-size: 16px;
  height: 40px;
  font-weight: 400;
  font-family: 'RobotoRegular';
}

.search-box input::placeholder {
  color: rgba(255, 255, 255, 0.85);
  font-weight: 300;
}

.search-box button {
  background: var(--accent);
  border: none;
  width: 45px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.search-box button i {
  font-size: 18px;
  color: #000;
}


.search-suggestion-box {
  position: absolute;
  width: 100%;
  background: #fff;
  top: 100%;
  left: 0;
  z-index: 999;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  display: none;
  max-height: 250px;
  overflow-y: auto;
}

/* ========================================
NOT FOUND
======================================== */

.search-not-found {
  position: absolute;
  width: 100%;
  background: #fff;
  top: 100%;
  left: 0;
  z-index: 9999;
  border-radius: 10px;
  padding: 12px 15px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  display: none;
}

.suggestion-item {
  padding: 12px 15px;
  cursor: pointer;
  border-bottom: 1px solid #eee;
}

.suggestion-item:hover {
  background: #f5f5f5;
}

/* ===== NAVBAR ===== */
.custom-navbar {
  background: rgba(0, 0, 0, 0.7);
  padding: 12px 30px;
}

/* Remove blue focus box */
.nav-link:focus,
.nav-link:focus-visible {
  outline: none;
  box-shadow: none;
}

/* Products link layout */
.dropdownGap {
  gap: 10px;
}

/* Dropdown parent */
.custom-dropdown {
  position: relative;
  /* 🔥 MUST */
}

/* Arrow */
.arrow-fa {
  font-size: 11px;
  color: #fff;
  margin-top: 1px;
  transition: transform 0.3s ease;
}

.navbar-nav .nav-link:hover .arrow-fa {
  color: #d48806;
}

/* Dropdown menu */
.custom-menu {
  display: none;
  position: absolute;
  top: 100%;
  /* 🔥 RIGHT SIDE ALIGN */
  left: 50%;
  transform: translateX(-10%);
  min-width: 220px;
  background: #fff;
  border-radius: 10px;
  padding: 10px 0;
  /* 🔥 Softer premium shadow */
  box-shadow:
    0 8px 20px rgba(0, 0, 0, 0.08),
    0 16px 40px rgba(0, 0, 0, 0.06);
  z-index: 9999;
}

/* Hover bridge – IMPORTANT */
.custom-menu::before {
  content: "";
  position: absolute;
  top: -15px;
  left: 0;
  width: 100%;
  height: 15px;
}

/* Dropdown items */
.custom-menu .dropdown-item {
  padding: 5px 15px;
  font-family: 'RobotoMedium';
  font-size: 15px;
  color: #6b6b6b;
  background: transparent;
  transition: all 0.25s ease;
}

/* 🔥 HOVER STYLE – IMAGE MATCH */
.custom-menu .dropdown-item:hover {
  background: #fff4dd;
  /* light yellow */
  color: #f5b400;
  /* brand yellow */
}

/* Optional: active item */
.custom-menu .dropdown-item.active {
  background: #ffb70061;
  color: #191919;
}

/* ===== DESKTOP HOVER ===== */
@media (min-width: 992px) {
  .custom-dropdown:hover>.custom-menu {
    display: block;
  }

  .custom-dropdown:hover .arrow-fa {
    transform: rotate(180deg);
  }
}

/* ===== MOBILE CLICK ===== */
@media (max-width: 991px) {
  .custom-menu {
    position: static;
    margin-top: 10px;
  }

  .custom-dropdown.open>.custom-menu {
    display: block;
  }

  .custom-dropdown.open .arrow-fa {
    transform: rotate(180deg);
  }
}

section {
  padding: 60px 0;
}

/* HERO SECTION */
.hero-section {
  position: relative;
  overflow: hidden;
  padding: 0;
}

.owl-carousel .item {
  position: relative;
  height: 100vh;
  background-size: cover;
  background-position: center;
}

.hero-section .owl-nav .owl-next {
  right: 0;
}

.hero-section .owl-nav .owl-prev {
  left: 0;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.45);
  z-index: 1;
}

.hero-content {
  position: absolute;
  z-index: 2;
  top: 55%;
  left: 8%;
  transform: translateY(-50%);
  color: #fff;
  max-width: 760px;
}

.hero-content h1 {
  font-size: clamp(1.8rem, 4vw, 3.5rem);
  font-weight: 700;
  margin-bottom: 16px;
  text-shadow: 0 6px 18px rgba(0, 0, 0, 0.5);
}

.hero-content p {
  font-size: 16px;
  opacity: 0.95;
  margin-bottom: 28px;
  line-height: 1.6;
}

.btn-accent {
  background: var(--accent);
  color: #191919;
  border-radius: 28px;
  padding: 10px 30px;
  border: 0;
  font-family: 'RobotoMedium';
  font-weight: 500;
}

.btn-outline-white {
  background: transparent;
  color: #fff;
  border: 1.5px solid rgba(255, 255, 255, 0.9);
  border-radius: 28px;
  padding: 10px 30px;
  font-family: 'RobotoMedium';
  font-weight: 500;
}

.btn-outline-gray {
  background: transparent;
  color: #191919;
  border: 2px solid #191919;
  padding: 10px 20px;
  border-radius: 30px;
  font-family: 'RobotoMedium';
  font-weight: 500;
  font-size: 18px;
}

.btn-outline-gray .fa-arrow-right {
  margin-left: 10px;
}

.owl-theme .owl-nav {
  margin-top: 0px;
}

.owl-nav button {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 48px;
  height: 48px;
  border-radius: 50% !important;
  border: 0;
  background: rgba(0, 0, 0, 0.45) !important;
  color: #fff !important;
}

.owl-nav .owl-prev {
  left: -18px;
}

.owl-nav .owl-next {
  right: -18px;
}

.owl-nav button:hover {
  background: var(--accent) !important;
}

.owl-dots {
  display: none;
}

.owl-theme .owl-nav [class*=owl-] {
  font-size: 16px !important;
}

.HeaderTitle {
  font-family: 'RobotoSemiBold';
  letter-spacing: .02em;
  color: #191919;
  text-transform: uppercase;
  font-size: 18px;
  line-height: normal;
}

.section-header h2 {
  font-family: 'MontserratSemiBold';
  font-size: 32px;
  /* margin-top: 10px; */
  line-height: 42px;
}

/* ================= ABOUT SECTION ================= */
.about-section-custom {
  background: #efefef;
  padding: 60px 0 120px;
  position: relative;
  overflow: hidden;
}

.about-section-custom::after {
  content: '';
  position: absolute;
  background-image: url(../images/shivagrico_trishul.png);
  height: 230px;
  bottom: 0;
  background-size: cover;
  width: 230px;
  background-repeat: no-repeat;
  right: 30px;
  z-index: 99;
}

/* Image */
.about-main-img {
  width: 100%;
}

/* EXACT YELLOW BOX DESIGN */
.about-exp-box {
  position: absolute;
  bottom: -50px;
  left: -25px;
  background: #FFB700;
  width: 200px;
  padding: 20px 10px;
  text-align: center;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.15);
}

.exp-icon-wrap {
  font-size: 48px;
  color: #191919;
  margin: 10px 0;
}

.exp-icon-wrap span img {
  width: 90px;
}

.about-exp-box h2 {
  font-size: 62px;
  color: #101010;
  margin: 10px 0 0;
  font-family: 'MontserratSemiBold';
}

.about-exp-box p {
  font-size: 16px;
  color: #101010;
  letter-spacing: 1px;
  margin-top: 10px;
  margin-bottom: 0;
  font-family: 'RobotoBold';
}

.about-exp-box img {
  fill: #101010;
}

/* Right content */
.about-small-title {
  font-size: 16px;
  font-weight: 700;
  color: #191919;
  text-transform: uppercase;
}

.about-title {
  font-size: 36px;
  font-weight: 800;
  color: #191919;
  margin-bottom: 20px;
  line-height: 1.3;
}

.about-desc {
  font-size: 16px;
  color: #697077;
  margin-bottom: 25px;
  font-family: 'RobotoRegular';
  text-align: justify;
}

/* NEW — List Section Heading */
.about-list-heading {
  font-size: 16px;
  font-family: 'RobotoRegular';
  margin-bottom: 12px;
  color: #191919;
}

/* Bullets */
.about-list {
  padding: 0px;
}

.about-list li {
  list-style: none;
  font-size: 16px;
  margin-bottom: 10px;
  color: #191919;
  display: flex;
}

.about-list i {
  color: var(--accent);
  margin-right: 10px;
}

.teamPhoto img {
  border-radius: 10px;
}

/* Logos */
.brand-logo {
  height: 92px;
}

/* Button */
.btn-about-yellow {
  background: var(--accent);
  padding: 12px 40px;
  border-radius: 30px;
  border: none;
  font-family: 'RobotoSemiBold';
  font-size: 18px;
  color: #191919;
  text-decoration: none;
}

/* Factory pattern */
.factory-pattern {
  background: url(about-after.png) no-repeat right bottom;
  height: 140px;
  width: 100%;
  opacity: 0.5;
  margin-top: 80px;
}

/*PRODUCT HOME SECTION*/
.hm-product {
  background-color: #FFFEFE;
}

.row-gap {
  row-gap: 50px;
}

.hm-product .product-card {
  position: relative;
  background: #F9F9F9;
  padding: 120px 25px 10px;
  box-shadow: 0 0px 20px rgba(0, 0, 0, 0.16);
  transition: 0.4s ease;
  text-align: center;
  margin-top: 80px;
  width: 100%;
}

.hm-product .product-card h4 {
  margin-top: 20px;
  transition: 0.3s;
  color: #191919;
  font-size: 20px;
  font-family: 'RobotoBold';
  margin-bottom: 15px;
}

.hm-product .product-card p {
  color: #697077;
  font-size: 16px;
  transition: 0.3s;

}

.hm-product a {
  text-decoration: none;
}

.textProduct {
  padding: 10px 0px;
}

.hm-product .product-card:hover {
  background: #191919;
}

.product-card:hover .btn-outline-gray {
  border: 2px solid #fff;
  color: #fff;
}

.hm-product .product-card:hover h4,
.hm-product .product-card:hover p {
  color: #fff;
}

.hm-product .circle-wrapper {
  position: absolute;
  top: -90px;
  left: 50%;
  transform: translateX(-50%);
  width: 200px;
  height: 200px;
}

.hm-product .yellow-bg {
  position: absolute;
  bottom: -8px;
  left: 0;
  width: 200px;
  height: 110px;
  background: #f4b400;
  border-radius: 0 0 200px 200px;
  opacity: 0;
  transition: 0.4s ease;
  z-index: 1;
}

.hm-product .circle {
  position: absolute;
  width: 200px;
  height: 200px;
  background: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
  z-index: 2;
}

.hm-product .product-card:hover .yellow-bg {
  opacity: 1;
}

.hm-product .circle img {
  /* max-width: 120px; */
  max-width: 180px;
  transition: 0.4s ease;
}

.hm-product .product-card:hover .circle img {
  transform: scale(1.15);
}

/*Product sidebar*/
.main-prod-section {
  padding: 50px 0;
}

/* Sidebar */
.sidebar {
  background: #fff;
  border-radius: 10px;
  border: 1px solid #ddd;
}

.sidebar-header {
  background: #191919;
  color: #fff;
  padding: 12px 15px;
  font-family: 'RobotoBold';
  font-size: 18px;
}

/* 🔥 Changed class name */
.proFilter-title {
  padding: 15px 15px;
  border-bottom: 1px solid #eee;
  cursor: pointer;
  position: relative;
  font-family: 'RobotoSemiBold';
  font-size: 16px;
  display: block;
  color: #191911;
  text-decoration: none;
}

.proFilter-title::after {
  content: "\f054";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  position: absolute;
  right: 15px;
  font-size: 14px;
  transition: 0.3s;
  color: #191919;
}

.proFilter-title.active::after {
  /* transform: rotate(90deg); */
}

.proFilter-title.active {
  background: #ffe39c;
  border-bottom: 2px solid #ffb700;
}

.filter-list {
  overflow: hidden;
  height: 0;
  transition: height 0.3s ease;
  background: #f7f7f7;
  padding-left: 0;
  margin-bottom: 0px;
}

/* Remove padding & margin for hammerFilter */
.filter-list li {
  list-style: none;
  padding: 10px 15px;
  border-bottom: 1px solid #eee;
  cursor: pointer;
  font-family: 'RobotoRegular';
  font-size: 16px;
  text-transform: capitalize;
  text-align: left;
}

.filter-list li a {
  color: #191919;
  text-decoration: none;
}

/*product details page*/
.product-img-main {
  position: relative;
}

/* QTY */
.qty-box {
  display: flex;
  align-items: center;
  gap: 10px;
  border: 1px solid #ccc;
}

.qty-box button {
  width: 30px;
  height: 30px;
  border: none;
  background: #fff;
  border-radius: 50%;
  font-size: 14px;
}

#qty {
  font-family: 'RobotoBold';
  color: #191919;
  font-size: 16px;
  width: auto;
  min-width: 45px;
  max-width: 50px;
  text-align: center;
  border: none;
  outline: none;
  padding: 5px;
  font-size: 16px;
}

.addqty {
  font-family: 'RobotoBold';
  color: #191919;
  font-size: 16px;
}

/*add enquiry btn*/
.prodtlbtn {
  border-radius: 50px;
  font-family: 'RobotoMedium';
  font-size: 16px;
  padding: 8px 20px;
}

.prodDtlwrapp h2 {
  font-family: 'MontserratBold';
  font-size: 18px;
  margin: 15px 0;
}

.prodDtlwrapp p {
  font-size: 16px;
  color: #697077 !important;
}

.prodDtlwrapp h5 {
  font-size: 20px;
  color: #697077 !important;
  font-family: 'RobotoRegular';
}

.proDtlMainimg .product-slider {
  background-color: #f1f1f1;
  padding: 20px;
  height: 450px;
}

.product-main {
  cursor: pointer;
  overflow: hidden;
  background-color: #fff;
  /* height: 460px; */
  height: 390px;
  padding: 10px;
}

.product-main img {
  width: 100%;
  display: block;
  height: 100%;
}

/* BACKGROUND */

.fancybox__backdrop {
  background: #fff !important;
}


/* HIDE THUMBS */

.fancybox__thumbs {
  display: none !important;
}


/* IMAGE */

.fancybox__content img {
  border-radius: 12px;
}


/* CLOSE BUTTON */

.f-carousel__toolbar__column.is-right .f-button {
  display: none !important;
}

.f-carousel__toolbar__column.is-right .f-button[data-fancybox-close] {

  display: flex !important;

  align-items: center;
  justify-content: center;

  width: 42px;
  height: 42px;

  border-radius: 50%;

  background: #e5e5e5 !important;

  color: #000 !important;
}


/* DESKTOP ARROWS */

.f-button.is-arrow {

  width: 42px;
  height: 42px;

  border-radius: 50%;

  background: #e5e5e5 !important;

  color: #000 !important;

  top: 50% !important;

  transform: translateY(-50%) !important;
}


/* MOBILE */

/* MOBILE ONLY */

@media(max-width:767px) {

  .f-button.is-arrow {

    top: auto !important;

    bottom: 15px !important;

    transform: none !important;

    width: 38px;
    height: 38px;
  }


  /* LEFT */

  .f-button.is-prev {

    left: calc(50% - 50px) !important;
  }


  /* RIGHT */

  .f-button.is-next {

    right: calc(50% - 50px) !important;
  }

}


.addenquiry {
  background-color: #D8D8D8;
  border: none;
}

/* ACTION */
.action-row {
  display: flex;
  align-items: center;
  gap: 15px;
  flex-wrap: wrap;
}

/* BUTTON */
.btn-quote {
  background: #ffc107;
  border: none;
}

/* TABLE */
.prodDtlwrapp .table {
  border-collapse: separate;
  border-spacing: 0;
  border-radius: 10px;
  table-layout: fixed;
  overflow: hidden;
}

.prodDtlwrapp .table thead th {
  background: #191919;
  color: #fff;
  font-family: 'RobotoSemiBold';
  padding: 12px;
  font-size: 16px;
}

/* Table wrapper to allow radius */
.prodDtlwrapp .table td,
.prodDtlwrapp .table th {
  border: 1px solid #ddd !important;
}

/* TOP LEFT RADIUS */
.prodDtlwrapp .table thead th:first-child {
  border-top-left-radius: 10px;
}

/* TOP RIGHT RADIUS */
.prodDtlwrapp .table thead th:last-child {
  border-top-right-radius: 10px;
}

/* BODY */
.prodDtlwrapp .table tbody td {
  background: #f9f9f9;
  padding: 12px;
  font-family: 'RobotoRegular';
  color: #191919;
  font-size: 16px;
}

/* BOTTOM LEFT RADIUS */
.prodDtlwrapp .table tbody tr:last-child td:first-child {
  border-bottom-left-radius: 10px;
}

/* BOTTOM RIGHT RADIUS */
.prodDtlwrapp .table tbody tr:last-child td:last-child {
  border-bottom-right-radius: 10px;
}

/* ===================== */
/* CENTER ARROWS */
/* ===================== */
.product-main img {
  width: 100%;
}

/* THUMBNAILS */
.thumb-img {
  width: 100%;
  cursor: pointer;
  margin-bottom: 25px;
  border: 2px solid #f1f1f1;
}

.thumb-img.active {
  border-color: #ffc107;
}

/* ARROWS CENTER */
.proDtlMainimg .product-slider .owl-nav button {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 34px;
  height: 34px;
  border-radius: 50% !important;
  background-color: #afafaf !important;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.proDtlMainimg .product-slider .owl-nav button .fa-solid {
  color: #fff;
}

.proDtlMainimg .product-slider .owl-prev {
  left: -20px;
}

.proDtlMainimg .product-slider .owl-next {
  right: -20px;
}

/* DOTS CONTAINER */
.proDtlMainimg .product-slider .owl-dots {
  display: block !important;
  text-align: center;
  margin-top: 10px;
}

/* EACH DOT */
.proDtlMainimg .product-slider .owl-dot {
  display: inline-block;
  margin: 0 5px;
}

/* DOT DESIGN */
.proDtlMainimg .product-slider .owl-dot span {
  width: 12px;
  height: 12px;
  background: #D9D9D9 !important;
  display: block;
  border-radius: 50%;
}

/* ACTIVE DOT */
.proDtlMainimg .product-slider .owl-dot.active span {
  background: #697077 !important;
}

/* RESPONSIVE */
@media(max-width:576px) {
  .action-row {
    flex-direction: column;
    align-items: flex-start;
  }
}

/* GLOBAL MARKETS SECTION */
.global-market-section {
  background: #191919;
  padding: 60px 0 60px;
  color: #fff;
  text-align: left;
}

.global-market-section .HeaderTitle,
.global-market-section h2 {
  color: #fff;
}

.quality-assurance .HeaderTitle {
  color: #fff;
}

.global-market-section img {
  width: 100%;
  max-width: 1200px;
  display: block;
  margin: auto;
}

/* COUNTER SECTION */
.counter-section {
  color: #191919;
  background-color: #EFEFEE;
}

.counter-section .container {
  background: var(--accent);
}

.counter-box {
  height: 250px;
  border-right: 1px solid #191919;
  display: flex;
  flex-direction: column;
  justify-content: space-around;
  align-items: flex-start;
  padding: 12px 45px !important;
}

.counter-box:last-child {
  border-right: none;
}

.counter-title {
  font-size: 26px;
  line-height: 30PX;
  margin-bottom: 0px;
  text-align: left;
  color: #191919;
  font-family: 'RobotoMedium';
}

.counter-number {
  font-size: 80px;
  font-weight: 700;
  font-family: 'RobotoSemiBold';
  line-height: 1;
  text-align: left;
  color: #191919;
}

.counter-number .plusIcon {
  font-size: 56px;
  margin-left: 8px;
  vertical-align: super;
}

@media (max-width: 767px) {
  .counter-box {
    border-right: none;
    border-bottom: 1px solid rgba(0, 0, 0, 0.2);
    height: auto;
    padding: 30px;
  }

  .counter-box:last-child {
    border-bottom: none;
  }
}


/*download broucher*/

.broacher-section {
  position: relative;
  padding: 80px 0;
  overflow: hidden;
  color: #fff;
  /* Background Image */
  background: url('../images/capabilities-bg-home.webp') no-repeat center center/cover
}


.download_icon {
  margin-left: 10px;
}

/* Content Above Overlay */
.broacher-section .container {
  position: relative;
  z-index: 2;
}

.broacher-section p {
  color: #FFFEFE;
  font-size: 16px;
}

/* Button */
.btn-brochure {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 20px;
  padding: 12px 28px;
  background: #ffb400;
  color: #000;
  border-radius: 30px;
  text-decoration: none;
  font-weight: 600;
}

.btn-brochure:hover {
  background: #ffa000;
  color: #000;
}

/* Responsive */
@media (max-width: 991px) {

  .broacher-section::before,
  .broacher-section::after {
    display: none;
  }

  .broacher-section {
    background-position: right -220px center;
    text-align: center;
    background-size: auto;
    background: #191919;
  }
}



/* ⭐ UPDATED INDUSTRY SECTION ⭐ */
.industry-section {
  background-color: #FFFEFE;
}

.industry-section h6 {
  color: #191919;
}

.industry-section h2 {
  color: #191919;
  margin-bottom: 40px;
}

.industry-topline {
  width: 100%;
  height: 1px;
  background: #69707775;
  margin: 20px 0;
}

.industry-box {
  position: relative;
  margin-bottom: 0px;
  border-radius: 4px;
  overflow: hidden;
}

.industry-box img {
  width: 100%;
  height: 420px;
  object-fit: cover;
}

.industry-content {
  position: absolute;
  right: 40px;
  bottom: 40px;
  background: #fff;
  padding: 25px 25px 25px;
  width: 360px;
}

.industry-small {
  font-size: 14px;
  font-family: 'RobotoSemiBold';
  color: #191919;
  letter-spacing: .02em;
}

.industry-title {
  font-size: 24px;
  font-family: 'RobotoSemiBold';
  color: #191919;
}

.industry-desc {
  font-size: 14px;
  color: #697077;
  margin: 10px 0 0px;
}

.industry-btn {
  border: 1px solid #191919;
  padding: 8px 22px;
  border-radius: 30px;
  color: #191919;
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
}

.industry-btn i {
  margin-left: 6px;
}

.industry-section .industry-block-outer .row [class*=col-] {
  position: sticky;
  top: 120px;
  left: 0px;
}

@media(max-width:991px) {
  .industry-content {
    position: relative;
    right: 0;
    bottom: 0;
    width: 100%;
  }

  .industry-box img {
    /* height: 300px; */
    height: 180px;
  }
}

/* =================== TESTIMONIAL SECTION =================== */
.testimonial-section {
  background-color: #121212;
}

.testimonial-section .section-header .HeaderTitle,
.journey-section .section-header .HeaderTitle {
  color: #ffffff;
}

.testimonial-section h2,
.journey-section h2 {
  color: #ffffff;
}

/* Slider item box */
.testimonial-item {
  background: #ffffff;
  padding: 28px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
  min-height: 300px;
  transition: all 0.3s ease;
}

/* User area */
.testimonial-user {
  display: flex;
  align-items: center;
  margin-bottom: 10px;
}

.user-info {
  display: flex;
  align-items: center;
  gap: 15px;
}

.user-icon img {
  width: 55px;
  height: 55px;
  border-radius: 50%;
}

.user-details h5 {
  font-size: 16px;
  color: #191919;
  margin-bottom: 3px;
  font-family: 'RobotoSemiBold';
}

.user-details p {
  font-size: 16px;
  color: #697077;
  margin: 0;
  font-family: 'RobotoSemiBold';
}

/* Testimonial text */
.testimonial-content {
  font-size: 16px;
  color: #697077;
  margin: 18px 0;
  padding-bottom: 18px;
  border-bottom: 1px solid #697077;
}

/* Rating */
.rating .fas {
  color: #FFCB45;
  font-size: 20px;
}

/* REMOVE default owl nav */
.testimonial-carousel .owl-nav,
.testimonial-carousel .owl-nav button {
  display: none !important;
}

/* Important width fix */
.testimonial-carousel .owl-stage {
  display: flex !important;
}

/* FLEX item width auto */
.testimonial-item {
  flex: 1 0 auto;
}

/* Arrows */
.custom-nav {
  display: flex;
  gap: 15px;
  margin-top: 90px;
}

.custom-nav button {
  background: rgba(255, 255, 255, 0.08);
  border: none;
  width: 58px;
  height: 58px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 32px;
  border-radius: 50%;
  color: #ffffff;
  transition: 0.3s;
}

.custom-nav button:hover {
  background: #ffffff;
  color: #000000;
}

/* ================= NEWS SECTION ================= */



.news-section {
  background: #EFEFEE;
}

.news-header .HeaderTitle {
  color: #191919;
}

.news-header h2 {
  color: #191919;
}

.news-section .news-header {
  margin-bottom: 50px !important;
}

/* View More Button */
.view-more-btn {
  background: var(--accent);
  border: none;
  color: #000;
  padding: 10px 34px;
  border-radius: 40px;
  font-weight: 600;
  font-size: 16px;
}

.news-slider .owl-item .item {
  height: auto !important;
}

/* Cards */
.news-card {
  background: #ffffff;
  border-radius: 0px;
  overflow: hidden;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
  transition: .3s;
  background: #191919 !important;
  height: 100%;
}

/* .news-card:hover {
   transform: translateY(-5px);
   box-shadow: 0 6px 15px rgba(0, 0, 0, 0.15);
 } */
/* Image */
.news-image {
  position: relative;
}

.news-image img {
  width: 100%;
  height: 260px;
  object-fit: cover;
}

/* Date Box Left */
.date-box {
  position: absolute;
  top: 0;
  left: 0;
  background: #ffffff;
  padding: 8px 12px;
  text-align: center;
}

.date-box .day {
  font-size: 20px;
  font-weight: 700;
  color: var(--accent);
  border-bottom: 1px solid #8d8d8d;
  padding-bottom: 4px;
  font-family: 'RobotoSemiBold';
  margin-bottom: 10px;
}

.date-box .month {
  font-size: 14px;
  color: #697077;
  font-family: 'RobotoSemiBold';
}

/* EVENT TAG - RIGHT TOP */
.event-tag {
  position: absolute;
  top: 0;
  right: 0;
  background: #191919;
  color: #ffffff;
  padding: 12px 36px;
  font-size: 15px;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: 'RobotoRegular';
}

.event-tag span img {
  width: 26px;
  height: 26px;
  max-width: 100%;
}

.event-icon {
  color: var(--accent);
  font-size: 18px;
}

/* Card Body */
.news-card-body {
  background: #191919 !important;
  padding: 22px 15px;
  color: #ffffff !important;
  height: 180px;
}

/* Title */
.news-card-body h5 {
  font-size: 16px;
  font-family: 'RobotoSemiBold';
  color: #ffffff !important;
  letter-spacing: .02em;
}

/* Paragraph */
.news-card-body p {
  color: #ffffff !important;
  font-size: 16px;
  font-family: 'RobotoRegular';
  margin-bottom: 0px;
}

/* Underline */
.underline {
  width: 100%;
  height: 2px;
  background: rgba(255, 255, 255, 0.35);
  /* white 35% */
  margin-bottom: 12px;
  position: relative;
}

.underline::after {
  content: "";
  position: absolute;
  width: 55px;
  height: 2px;
  background: var(--accent);
  /* yellow bar */
  right: 0;
  top: 0;
}

/*about page*/
/* ===========================
   INNER BANNER SECTION
=========================== */
.inner-banner {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  padding-top: 110px;
  padding-bottom: 60px;
  height: 80vh;
  position: relative;
  display: flex;
  align-items: center;
}

.aboutbredcrumb {
  background-image: url("../images/bredcrumb/about-brd.webp");
}

.pickaxesbredcrumb {
  background-image: url("../images/bredcrumb/pickaxes-brd.webp");
}

.hoesbredcrumb {
  background-image: url("../images/bredcrumb/hoes-brd.webp");
}

.hammersbredcrumb {
  background-image: url("../images/bredcrumb/hammers-brd.webp");
}

.crowbarbredcrumb {
  background-image: url("../images/bredcrumb/crowbar-brd.webp");
}

.rollingbredcrumb {
  background-image: url("../images/bredcrumb/rolling-brd.webp");
}

.forginbredcrumb {
  background-image: url("../images/bredcrumb/forgings-brd.webp");
}

.manufacturebredcrumb {
  background-image: url("../images/bredcrumb/manufacture-brd.webp");
}

.manufacturebredcrumb::after {
  background: rgb(0 0 0 / 40%) !important;
}

.investorbredcrumb {
  background-image: url("../images/bredcrumb/investor-brd.webp");
}

.contactbredcrumb {
  background-image: url("../images/bredcrumb/contact-brd.webp");
}

.careerbredcrumb {
  background-image: url("../images/bredcrumb/career-brd.webp");
}

.sustainabilitybredcrumb {
  background-image: url("../images/bredcrumb/sustainability-brd.webp");
}

.ourteambredcrumb {
  background-image: url("../images/bredcrumb/ourteam-brd.webp");
}

.ourteambredcrumb::after {
  background: rgb(0 0 0 / 40%) !important;
}

.enquirybredcrumb{
   background-image: url("../images/bredcrumb/product-brd.webp");
}

.inner-banner::after {
  content: "";
  position: absolute;
  inset: 0;
        background: rgb(0 0 0 / 22%);
  /* Dark overlay */
  z-index: 1;
}

.inner-banner-content {
  position: relative;
  z-index: 2;
  color: #fff;
}

.inner-banner-content h1 {
  font-size: 42px;
   font-family: 'RobotoBold';
  margin-bottom: 15px;
}

.breadcrumb {
  margin: 0;
  padding: 0;
  background: transparent;
}

/* HOME link - white, no underline */
.breadcrumb-item a {
  color: #ffffff !important;
  /* white */
  text-decoration: none !important;
  /* underline remove */
}

/* Slash / color yellow */
.breadcrumb-item+.breadcrumb-item::before {
  color: #FFB700 !important;
  /* Yellow */
  font-weight: 600;
}

/* Active page (About Us) white */
.breadcrumb-item.active {
  color: #ffffff !important;
}

/* WHO WE ARE SECTION */
.who-section {
  background: #FFFEFE;
  position: relative;
  overflow: hidden;
}

.who-label {
  font-family: 'RobotoSemiBold';
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: 16px;
  color: #000;
  margin-bottom: 10px;
}

.who-title {
  font-family: 'MontserratBold';
  font-size: 36px;
  line-height: 1.3;
  margin-bottom: 20px;
}

.who-desc {
  font-family: 'RobotoRegular';
  font-size: 16px;
  color: #555;
  max-width: 90%;
}

/* CARD DESIGN */
.who-card {
  background: #f8f8f8;
  border-radius: 10px;
  padding: 20px;
  border-bottom: 4px solid var(--accent);
  height: 100%;
  display: flex;
  justify-content: flex-start;
}

.who-icon img {
  width: 60px;
  height: 60px;
}

.who-card-content {
  text-align: left;
  margin-left: 30px;
}

.who-card-title {
  font-family: 'MontserratSemiBold';
  font-size: 18px;
  margin-top: 0px;
  margin-bottom: 6px;
}

.who-card-text {
  font-family: 'RobotoRegular';
  font-size: 16px;
  color: #555;
  margin: 0;
}

/* IMAGE */
.who-image {
  width: 100%;
  /* filter: grayscale(40%); */
}

/*=========================================
            OUR TEAM SECTION
==========================================*/

.ourTeam-section {
  padding: 80px 0;
  background: #fff;
}

/*=========================================
            GRID
==========================================*/

.newourteamCard {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  align-items: start;
}

/*=========================================
            TEAM CARD
==========================================*/

.newourteamCard .team-card {
  background: #fff;
  border: 1px solid #ececec;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 8px 25px rgba(0, 0, 0, .08);
  transition: .35s ease;
  margin-bottom: 0px;
  
}

.newourteamCard .team-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 18px 40px rgba(0, 0, 0, .15);
}

/*=========================================
            IMAGE
==========================================*/

.newourteamCard .team-img {
  overflow: hidden;
}

.newourteamCard .team-img img {
  width: 100%;
  height: 300px;
  object-fit: cover;
  transition: .5s;
  display: block;
  background-color: #ffb70005;
  /* border: 1px solid #bfb396; */
  /* border-radius: 10px; */
}


/*=========================================
            CONTENT
==========================================*/

.newourteamCard .team-content {
  position: relative;
  background: #fff;
  padding: 20px 22px;
}

.newourteamCard .team-content::before {
  content: "";
  width: 22px;
  height: 22px;
  background: #fff;
  position: absolute;
  top: -11px;
  left: 50%;
  transform: translateX(-50%) rotate(45deg);
  box-shadow: -2px -2px 8px rgba(0, 0, 0, .05);
}

.newourteamCard .team-content h4 {
  font-size: 18px;
  font-weight: 700;
  font-family: 'RobotoSemiBold';
  color: #191919;
  margin-bottom: 6px;
  line-height: 1.4;
}

.newourteamCard .designation {
  display: block;
  font-family: 'RobotoRegular';
  color: #191919;
  font-size: 18px;
  margin-bottom: 10px;
}

/*=========================================
            DESCRIPTION
==========================================*/

.newourteamCard .team-desc {
  font-size: 15px;
  color: #697077;
  font-family: 'RobotoRegular';
  margin-bottom: 10px;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
  line-height: 1.3;
}

.newourteamCard .team-desc.active {
  display: block;
}

/*=========================================
            READ MORE
==========================================*/

.newourteamCard .read-more-btn {
  display: inline-block;
  margin-bottom: 0px;
  color: #191919;
  font-size: 15px;
  font-weight: 600;
  text-decoration: none;
}

.newourteamCard .read-more-btn .fa-chevron-right {
  font-size: 12px;
}

.newourteamCard .read-more-btn:hover {
  color: #000;
}

/*=========================================
            SOCIAL
==========================================*/

.newourteamCard .team-social {
  margin-top: 15px;
  opacity: 1 !important;
  justify-content: left;
}

.newourteamCard .team-social a {
  width: 30px;
  height: 30px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #0073b2;
  padding: 0px 8px;
  background-color: #ffffff;
  color: #0073b2;
  text-decoration: none;
  transition: .3s;
  font-size: 16px;
}

/*our journey*/
.journey-wrapper {
  /* height: 200vh;
   Scroll space for sticky 
  position: relative;*/
}

.journey-section {
  background: #191919;
  /* position: sticky;
  top: 0;
  height: 100vh;
  overflow-y: auto;
  scrollbar-width: none;
  -ms-overflow-style: none; */
}

.journey-section .section-header {
  margin-bottom: 55px !important;
}

.journey-sub {
  text-transform: uppercase;
  letter-spacing: 2px;
  opacity: 1;
}

.journey-title {
  font-size: 32px;
  font-weight: bold;
  margin-bottom: 50px;
}

/* TIMELINE WRAPPER */
.timeline {
  max-width: 1140px;
  margin: 0 auto;
  position: relative;
}

.timeline::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  width: 3px;
  background: #fff;
  transform: translateX(-50%);
}

/* TIMELINE ROW */
.tj-row {
  position: relative;
  margin-bottom: 90px;
}

.tj-row:last-child {
  margin-bottom: 0px;
}

/* left row → content right → connector right */
.tj-row.left::after {
  content: "";
  position: absolute;
  width: 55px;
  height: 3px;
  background: #fff;
  right: calc(50% - 55px);
  top: 35%;
  transform: translateY(-50%);
}

/* right row → content left → connector left */
.tj-row.right::after {
  content: "";
  position: absolute;
  width: 55px;
  height: 3px;
  background: #fff;
  left: calc(50% - 55px);
  top: 50%;
  transform: translateY(-50%);
}

/* IMAGE */
.tj-img img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  border-radius: 12px;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.4);
}

/* TEXT */
.tj-text {
  padding: 0;
}

/* YEAR + TITLE SAME ROW (LEFT SIDE) */
.tj-header-wrap {
  margin-bottom: 0px;
  text-align: right;
  width: 100%;
}

/* .growy-1{  width: 95%;}
.growy-2{  width: 91%;}
.growy-3{  width: 89%;}
.growy-4{  width: 100%;}
.growy-5{  width: 87%;}
.growy-6{  width: 88%;}
.growy-7{  width: 87%;}
.pdleft-16{
  padding-left: 16px !important;
} */
.tj-year {
  font-size: 70px;
  font-weight: 800;
  /* color: rgba(255, 255, 255, 0.44); */
  color: #fff;
  line-height: 1;
  margin: 0;
  white-space: nowrap;
  font-family: 'RobotoBlack';
  font-weight: 900;
  text-align: left;
}

.tj-title {
  font-size: 30px;
  font-family: 'RobotoSemiBold';
  color: var(--accent);
  white-space: nowrap;
  margin-bottom: 5px;
  text-align: right;
  position: relative;
  display: inline-block;
  top: -5px;
}

.tj-title::after {
  content: "";
  position: absolute;
  background-color: var(--accent);
  height: 2px;
  bottom: -5px;
  left: 0;
  width: 80px;
}

/* CONTENT ROW */
.tj-content-wrap {
  display: flex;
  gap: 55px;
  align-items: center;
}

.tj-icon-block img {
  width: 80px;
  height: auto;
}

.tj-list {
  padding-left: 15px;
  margin: 5px 0 0;
}

.tj-list li {
  color: #eee;
  font-size: 16px;
  line-height: 22px;
  margin-bottom: 4px;
}

/*Awards section*/
.awards-section {
  background: #FFFEFE;
}

.award-card {
  background: #ffffff;
  padding: 10px 20px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
  transition: all 0.4s ease;
  height: 100%;
}

/* .award-card:hover {
      transform: translateY(-10px);
      box-shadow: 0 15px 35px rgba(0,0,0,0.15);
    } */
.award-img {
  height: 200px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.award-img img {
  max-height: 180px;
  object-fit: contain;
}

.award-card h5 {
  margin-top: 0px;
  font-weight: 600;
}

/*product main*/
/* ================= PRODUCT SECTION ================= */
.main-prod-section {
  padding: 60px 0;
  background-color: #FFFEFE;
}

.productName {
  margin-bottom: 20px;
}

.productName h2 {
  font-family: 'MontserratSemiBold';
  font-size: 28px;
}

/* ================= CARD ================= */
.product-group a {
  text-decoration: none;
}

.main-prod-card {
  background-color: #e7e7e7;
  padding: 10px 10px 20px;
  text-align: left;
  margin: 0 0px 40px;
  height: 310px;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  /* box-shadow: 0 0px 5px rgb(0 0 0 / 13%); */
  /* ONLY card moves, not inner content */
  transition: box-shadow 0.3s ease, transform 0.3s ease;
}

/* Card hover lift */
.main-prod-card:hover {
  box-shadow: rgba(0, 0, 0, 0.17);
}

/* ================= IMAGE ================= */
.main-prod-img {
  height: 230px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 10px;
  overflow: hidden;
}

.main-prod-img img {
  /* max-height: 150px; */
  max-height: 230px;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.likeProduct img {
  max-height: 150px;
}

/* ================= DESCRIPTION ================= */
.main-prod-desc {
  font-size: 16px;
  line-height: 1.6;
  color: #191919;
  font-family: 'RobotoSemiBold';
  display: none;
}

/* Image zoom ONLY */
/* .main-prod-card:hover .main-prod-img img {
  transform: scale(1.10);
} */

/* ================= TITLE (STABLE) ================= */
.main-prod-title {
  font-size: 15px;
  color: #191919;
  text-align: center;
  font-family: 'RobotoBold';
  padding: 0px 0;
  transform: none !important;
  transition: none !important;
  text-transform: capitalize;
}

/* ================= UNDERLINE (FADE) ================= */
.main-prod-card::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 3px;
  background: #f5b400;
  opacity: 0;
  transition: opacity 0.35s ease;
}

/* Show underline only on hover */
.main-prod-card:hover::after {
  opacity: 1;
}

/* MODAL LEFT SIDE */
.modal {
  z-index: 9999;
}

.product-modal-img {
  width: 100%;
  background: #F3F4F4;
  padding: 40px;
  text-align: center;
}

.product-modal-img img {
  width: 220px;
  object-fit: contain;
}

.prod-name {
  font-size: 20px;
  font-weight: 700;
  margin-top: 20px;
  text-transform: capitalize;
}

.modal-header {
  padding: 15px 30px;
  display: flex;
  align-items: center;
  justify-content: flex-end;
}

.modal-header .close {
  width: 28px;
  height: 28px;
  background: #000;
  color: #fff;
  border-radius: 50%;
  border: none;
  font-size: 20px;
  font-weight: normal;
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 1;
  margin-bottom: 20px;
  padding: 0;
  margin: 0 5px;
}

.modal-header .close span {
  line-height: 1;
}

#quoteModal .modal-body {
  padding: 30px;
}

#quoteModal .modal-header .modal-title {
  font-family: 'MontserratBold';
}

/*contact start*/
.contact-section {
  position: relative;
  background-color: #FFFEFE;
}

.contact-form-section {
  background-color: #F3F4F4;
  padding: 30px;
  border-radius: 8px;
  margin-bottom: 40px;
}

.contact-form-section h2 {
  font-size: 36px;
  margin-bottom: 20px;
  color: #191919;
  font-family: 'MontserratBold';
}

.contact-form-section p {
  font-size: 16px;
  color: #697077;
  margin-bottom: 30px;
  line-height: 1.6;
}

/* FLOATING INPUT START */
.form-group {
  position: relative;
  margin-bottom: 25px;
}

.form-control {
  width: 100%;
  border: 1px solid #ddd;
  border-radius: 6px;
  padding: 14px 16px 10px;
  font-size: 1rem;
  background-color: #fff;
  transition: all 0.3s;
}

.form-group select.form-control {
  appearance: auto;
  -webkit-appearance: menulist;
  -moz-appearance: menulist;
}

.form-control:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 0.2rem rgba(255, 193, 7, 0.25);
}

.floating-label {
  position: absolute;
  left: 16px;
  top: 14px;
  color: #777;
  font-size: 1rem;
  pointer-events: none;
  transition: 0.2s ease;
  padding: 0 4px;
}

#captchaText,
#popupCaptchaText {
  user-select: none;
  font-family: 'Pacifico', cursive;
  font-style: italic;
  border-radius: 5px;
  background-color: #ffb700;
  display: inline-block;
  padding: 7px 15px;
  color: #191919;
  font-size: 22px;
  background-image: url(../images/captcha-bg.webp);
  background-size: cover;
  background-repeat: no-repeat;
  letter-spacing: 4px;
  font-weight: normal;
}

.captcha-img {
  background: #fff;
  padding: 10px;
  border: none;
}


.required-star {
  color: red;
  font-weight: bold;
}

/* Label floating effect */
.form-control:focus+.floating-label,
.form-control:not(:placeholder-shown)+.floating-label {
  top: -8px;
  left: 12px;
  font-size: 0.8rem;
  color: var(--accent);
  background: #fff;
}

select.form-control:focus+.floating-label,
select.form-control:valid+.floating-label {
  top: -8px;
  left: 12px;
  font-size: 0.8rem;
  color: var(--accent);
  background: #fff;
}

select.form-control:invalid+.floating-label {
  top: 14px;
  left: 16px;
  font-size: 1rem;
  color: #777;
  background: transparent;
}

textarea.form-control {
  min-height: 120px;
  resize: vertical;
}

/* FLOATING INPUT END */
.submit-btn {
  background-color: var(--accent);
  border: none;
  color: #000;
  padding: 12px 30px;
  font-size: 1rem;
  font-weight: 600;
  border-radius: 50px;
  cursor: pointer;
  transition: all 0.3s;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

/* CONTACT CARD */
.contact-card {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 20px 20px;
  border: 1px solid #e3e3e3;
  margin-bottom: 20px;
  border-radius: 5px;
}

.contact-card-icon img {
  width: 40px;
}

.contact-card-content h3 {
  font-size: 18px;
  font-family: 'MontserratBold';
  margin: 0 0 5px 0;
  color: #1a1a1a;
}

.contact-card-content p {
  color: #697077;
  line-height: 1.6;
  font-size: 16px;
  margin: 0;
}

.contact-card-content a {
  text-decoration: none;
  color: #191919;
  font-family: 'MontserratBold';
  font-size: 14px;
}

.map-container {
  background-color: #fff;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  margin-top: 0px;
}

.map-container iframe {
  width: 100% !important;
  height: 100% !important;
  min-height: 280px;
  /* 👈 control height */
  border: 0;
  border-radius: 10px;
  display: block;
}

.map-title {
  font-weight: 600;
  margin-bottom: 0;
  color: #ffffff;
  padding: 10px 15px;
  background-color: #000000;
  font-family: 'MontserratBold';
}

/*Investor */
.desktop-investor {
  padding: 20px 0;
  background: #f7f7f7;
}

.investor-relations-section {
  background-color: #FFFEFE;
}

.singlePara {
  font-size: 18px;
  margin-bottom: 30px;
}

.ir-card {
  background: #fff;
  border: 1px solid #E1E1E1;
  overflow: hidden;
  height: 100%;
  transition: all 0.3s ease;
}

.ir-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.12);
}

.ir-card a {
  text-decoration: none;
}

.ir-card-img {
  position: relative;
  overflow: hidden;
  height: 240px;
  background: #ddd;
}

.ir-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
  /* filter: grayscale(100%); */
}

.ir-card:hover .ir-card-img img {
  transform: scale(1.06);
  filter: grayscale(0%);
}

.ir-card-title {
  background: #fff;
  padding: 14px 16px;
  font-size: 18px;
  font-family: 'RobotoMedium';
  color: #191919;
  line-height: 1.4;
  min-height: 60px;
  display: flex;
  align-items: center;
}

@media (max-width: 1199px) {
  .ir-card-img {
    height: 220px;
  }
}

@media (max-width: 991px) {
  .investor-relations-section {
    padding: 30px 0 50px;
  }

  .ir-card-img {
    height: 210px;
  }

  .ir-card-title {
    font-size: 15px;
    padding: 12px 14px;
  }
}

@media (max-width: 767px) {
  .investor-relations-section {
    padding: 25px 0 40px;
  }

  .ir-card-img {
    height: 220px;
  }

  .ir-card-title {
    min-height: auto;
  }
}

@media (max-width: 575px) {
  .container {
    padding-left: 15px;
    padding-right: 15px;
  }

  .ir-card-img {
    height: 210px;
  }

  .ir-card-title {
    font-size: 14px;
    padding: 12px;
  }
}

.investor-section {
  background-color: #fff;
}

/* LEFT FILTER */
.filter-box {
  background: #fff;
  border-radius: 6px;
  border-right: 1px solid #eee;
}

.investor-filter-title {
  font-size: 18px;
  font-family: 'RobotoRegular';
}

.filter-menu {
  list-style: none;
  margin: 0;
  padding: 0;
}

.filter-menu li {
  padding: 10px 12px;
  font-size: 16px;
  color: #697077;
  cursor: pointer;
  font-family: 'RobotoRegular';
  font-weight: 400;
}

.filter-menu li:hover {
  background: #ffb70033;
}

.filter-menu li.active {
  background: rgb(255 183 0 / 20%);
  border-left: 3px solid var(--accent);
  color: #000000;
  font-family: 'RobotoSemiBold';
}

/* RIGHT CONTENT */
.section-heading {
  font-size: 26px;
  font-family: 'MontserratBold';
}

.sort-dropdown {
  width: 200px;
  font-family: 'RobotoRegular';
  font-weight: 400;
  border: 1px solid #191919;
}

/* CARD DESIGN */
.investor-card {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 22px;
  background: #fff;
  border: 1px solid #e7e7e7;
  border-radius: 8px;
  margin-bottom: 14px;
  transition: 0.2s ease;
}

.investor-card:hover {
  box-shadow: 0px 4px 18px rgba(0, 0, 0, 0.07);
}

.investor-card table {
  table-layout: fixed;
  width: 100%;
}

.investor-card table td {
  font-size: 14px;
}

.investor-card table td:first-child {
  width: 5%;
}

.no-hover:hover {
  box-shadow: none;
}


.card-left {
  display: flex;
  gap: 15px;
  align-items: flex-start;
}

.pdf-icon {
  width: 24px;
}

.investor-card h5 {
  margin: 0;
  font-size: 18px;
  line-height: 24px;
  color: #191919;
  font-family: 'RobotoRegular';
}

.investor-card p,
.invList li {
  font-size: 16px;
  color: #697077;
  line-height: 30px;
  margin-bottom: 10px;
}

ol.invList li::marker {
  font-weight: bold;
}

.code-of-conduct h4 {
  font-size: 18px;
  font-family: 'RobotoSemiBold';
}

.investor-card p em {
  font-style: italic;
}

.download-btn {
  color: #191919;
  font-family: 'RobotoSemiBold';
  text-decoration: none;
}

.policyLst {
  list-style: none;
  padding: 0;
}

/*=========================
    OFFICIAL CARD
=========================*/

.official-card {
  width: 100%;
  padding: 5px;
  margin-bottom: 0px;
}


/*=========================
      CONTENT
=========================*/

.official-details {
  width: 100%;
}

.official-details h3 {
  color: #191919;
  margin: 0 0 0px;
  padding-bottom: 0px;
  font-size: 18px;
  font-family: 'RobotoMedium';
  color: #191919;
}

/*=========================
      PERSON
=========================*/

.official-item {
  padding: 5px 0px;
  margin-bottom: 0px;
}

.official-item:last-child {
  margin-bottom: 0;
}

.official-item h5 {
  margin: 0;
  font-size: 16px;
  color: #ab8521;
  line-height: 1.5;
}

.official-item p {
  margin: 6px 0 0px;
  color: #666;
  font-size: 16px;
  line-height: 1.6;
}

/*=========================
      MOBILE
=========================*/

@media(max-width:767px) {

  .official-card {
    padding: 5px 20px;
  }

  .official-details h3 {
    font-size: 16px;
  }

  .official-item h5 {
    font-size: 18px;
  }

  .official-item p {
    font-size: 15px;
  }

}


/* .download-btn i {
  font-size: 14px;
  margin-left: 4px;
  color: #0A9CDF;
} */
.download-btn .btn-outline-gray {
  padding: 4px 12px;
  font-size: 16px;
}

/* Desktop / Mobile switch */
.mobile-investor {
  display: none;
}

/* default tweak  */
.accordion-button:not(.collapsed) {
  background: #fff8e5;
  color: var(--accent);
}

/*Manufacture*/
.capabilities-section {
  background: #FFFEFE;
}

/* MAIN BOX BG */
.capability-box {
  background: #F9F9F9;
  padding: 25px;
}

/* Image */
.cap-img img {
  width: 100%;
}



/* Content */

.capWrapp {
  display: flex;
  align-items: center;
}

.cap-content h3 {
  font-size: 28px;
  font-family: 'RobotoMedium';
  margin-bottom: 0px;
  color: #191911;
}

.capWrapp .icon img {
  width: 80px;
  margin-right: 10px;
}

.cap-content p {
  font-size: 16px;
  line-height: 1.6;
  font-family: 'RobotoRegular';
  font-weight: 400;
  color: #697077;
}

.cap-content h6 {
  color: #191919;
  font-family: 'RobotoSemiBold';
  font-size: 20px;
}

/* Steel Items */




.steel-item {
  display: flex;
  align-items: center;
  gap: 10px;
  position: relative;
}

.steel-item span {
  color: #191919;
  font-family: 'RobotoRegular';
  font-weight: 400;
  font-size: 16px;
  padding-left: 30px;
}

.steel-item::before {
  width: 12px;
  height: 12px;
  border-radius: 50px;
  background-color: #2e2e2e;
  position: absolute;
  content: "";
  left: 0;
}

/* Responsive */
@media (max-width: 991px) {
  .capability-box {
    padding: 20px;
  }

  .cap-content h3 {
    margin-top: 10px;
  }
}

/* facilities-section */
.facilities-section {
  background-color: #191911;
}

.facilities-section .HeaderTitle,
.facilities-section h2 {
  color: #fff;
}

/* RIGHT-TOP YELLOW ICON BOX */
.cap-icon {
  position: absolute;
  right: 10px;
  top: 10px;
  background: #FFC400;
}

/* Titles */
.cap-card h4 {
  font-size: 22px;
  font-family: 'MontserratBold';
  margin-bottom: 15px;
  width: 70%;
  color: #fff;
}

.cap-card p {
  margin: 0;
  font-family: 'RobotoRegular';
  font-weight: 400;
}

.facility-card {
  position: relative;
  height: 420px;
  border-radius: 0px;
  overflow: hidden;
  color: #fff;
}

.facility-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  transform: scale(1);
  transition: transform .55s ease-in-out;
  z-index: 1;
}

.facility-card.card1::before {
  background-image: url('../images/manufacture/mumbai-photo.webp');
}

.facility-card.card2::before {
  background-image: url('../images/manufacture/falna-location.webp');
}

.facility-card .card-content {
position: absolute;
    left: 0;
    right: 0;
    padding: 15px;
    bottom: 0px;
    z-index: 3;
    background: #000000ad;
    transform: scale(1);
    transform-origin: center center;
    transition: transform .90s ease, opacity .90s ease, background .90s ease;
}

.facility-card .card-content h4 {
  font-size: 22px;
  margin: 0;
  font-family: 'RobotoMedium';
  color: #fff;
}

.facility-card .facility-details {
  margin-top: 15px;
  opacity: 0;
  max-height: 0;
  overflow: hidden;
  transition:
    opacity .75s ease,
    max-height .75s ease;
  font-family: 'RobotoRegular';
  font-weight: 400;
}

.facility-card .facility-details ol,
.facility-card .facility-details p {
  padding-left: 18px;
  margin: 0;
  font-size: 16px;
  line-height: 1.4;
}

.facility-card .facility-details ol li {
  font-family: 'RobotoRegular';
  font-weight: 400;
  font-size: 16px;
  line-height: 26px;
}

.facility-card:hover .facility-details {
  opacity: 1;
  max-height: 300px;
}

/*quality-assurance*/
.quality-assurance {
  background: #FFFEFE;
}

.quality-assurance .HeaderTitle,
.quality-assurance h2 {
  color: #191911;
}

.quality-assurance h3 {
  font-size: 28px;
  font-family: 'RobotoMedium';
  margin-bottom: 15px;
  color: #191911;
}

.qa-sub {
  font-size: 16px;
  font-family: 'RobotoRegular';
  letter-spacing: 1px;
  text-transform: uppercase;
  color: #fff;
}

.qa-image img {
  width: 100%;
}

.qa-content p {
  color: #697077;
  font-family: 'RobotoRegular';
  font-weight: 400;
  font-size: 16px;
}

.qa-desc {
  font-size: 20px;
  line-height: 1.6;
  margin-bottom: 35px;
}

.qa-values-title {
  font-size: 24px;
  font-family: 'RobotoSemiBold';
  margin-bottom: 25px;
}

.qa-values-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.qa-values-list li {
  display: flex;
  align-items: center;
  font-family: 'RobotoRegular';
  font-weight: 400;
  font-size: 20px;
  color: #191919;
  margin-bottom: 10px;
}

.qa-values-list li:last-child {
  margin-bottom: 0px;
}

.qa-values-list li img {
  width: 55px;
  margin-right: 15px;
}

/*footer*/
footer {
  background-color: #191919;
  color: #fff;
  padding: 60px 0 20px;
}

.footer-logo img {
  max-width: 90px;
  margin-bottom: 15px;
}

.footer-text {
  font-size: 16px;
  color: #fff;
}

.footer-heading {
  font-family: 'RobotoBold';
  margin-bottom: 20px;
  display: inline-block;
  color: var(--accent);
}

.footer-links a {
  display: block;
  color: #fff;
  text-decoration: none;
  margin-bottom: 8px;
  font-size: 16px;
  transition: 0.3s;
}

.footer-links a:hover {
  color: var(--accent);
}

.addressWrapp ul {
  padding: 0;
  list-style: none;
}

.addressWrapp ul li {
  margin-bottom: 10px;
}

.addressWrapp ul li a {
  color: #fff;
  font-size: 16px;
  margin-right: 15px;
  text-decoration: none;
  display: flex;
}

.addressWrapp ul li a:hover {
  color: var(--accent);
}

.addressWrapp ul li a span {
  margin-right: 10px;
}

.social-icons a {
  color: #fff;
  font-size: 20px;
  margin-right: 15px;
  transition: 0.3s;
}

.social-icons a:last-of-type {
  margin-right: 0;
}

.social-icons a:hover {
  color: var(--accent);
}

.footer-divider {
  border-top: 1px solid #C1C7CD;
  margin: 40px 0 20px;
}

.footer-bottom {
  font-size: 14px;
  color: #fff;
}

.footerLogo img {
  width: 70px;
  margin-right: 20px;
}

.footerLogo a {
  display: inline-block;
}

/* Scroll Top Button */
#scrollTopBtn {
  position: fixed;
  right: 25px;
  bottom: 25px;
  width: 45px;
  height: 45px;
  background: #1480c0;
  color: #fff;
  border: none;
  outline: none;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 20px;
  cursor: pointer;
  z-index: 999;
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
  transition: all 0.4s ease;
}

#scrollTopBtn img {
  width: 30px;
}

#scrollTopBtn.show {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

/*product cart*/
.countCart {
  position: relative;
  display: flex;
  align-items: center;
  text-decoration: none !important;
  line-height: 1;
  padding: 6px 10px;
  border-radius: 2px;
  background: rgb(255 255 255 / 18%);
  font-family: 'RobotoSemiBold';
}

.countCart i {
  display: inline-block;
  margin-top: -3px;
  font-size: 20px;
  color: #fff;
}

.cart-count {
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 28px;
  height: 28px;
  border-radius: 50%;
  font-weight: 400;
  font-size: 14px;
  margin-left: .5rem;
  color: #191919;
  background-color: #ffb700;
}

.cardWrapp {
  max-width: 960px;
  margin: 0 auto;
}

.cart-header {
  text-align: center;
  padding: 0px 0 30px;
}

.cart-header h2 {
  font-family: 'MontserratBold';
  font-size: 36px;
}

/* Table */
.cart-table {
  background: #fff;
  border-radius: 12px;
  border: 1px solid #555;
}

.cart-table th {
  font-family: 'RobotoSemiBold';
  font-size: 18px;
  padding: 18px 15px;
   border: 1px solid #555;

}

.cart-table td {
  padding: 18px 15px;
  font-size: 16px;
  font-family: 'RobotoRegular';
   border: 1px solid #555;
}

/* Product */
.cartProductInfo {
  display: flex;
  align-items: center;
  gap: 15px;
  font-size: 16px;
  font-family: 'RobotoRegular';
}

.cartProductInfo img {
  width: 90px;
  border-radius: 8px;
}

.remove-btn {
  cursor: pointer;
  color: #f20000 !important;
}

/* Career*/
.career-section {
  background-color: #FFFEFE;
}

/* FILTER BOX */
.Careerfilters-box {
  background: #fff;
  border-radius: 10px;
  padding: 20px;
  border: 1px solid #e5e5e5;
}

.Careerfilters-box h4 {
  font-family: 'RobotoRegular';
  color: #191919;
}

/* ROW */
.Careerfilter-row {
  display: flex;
  gap: 15px;
  align-items: center;
}

/* ITEM */
.Careerfilter-item {
  flex: 1;
  border: 1px solid #eee;
  padding: 12px;
  border-radius: 10px;
  position: relative;
  cursor: pointer;
  background: #fff;
}

/* TITLE */
.Careerfilter-title {
  display: flex;
  justify-content: space-between;
  color: #8F8F8F;
  font-size: 16px;
  font-family: 'RobotoRegular';
}

/* DROPDOWN */
.Careerfilter-content {
  display: none;
  position: absolute;
  top: 105%;
  left: 0;
  width: 100%;
  background: #fff;
  border: 1px solid #eee;
  border-radius: 10px;
  padding: 10px;
  z-index: 999;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
}

.Careerfilter-item.active .Careerfilter-content {
  display: block;
}

/* LIST */
.Careerfilter-content li {
  list-style: none;
  padding: 8px;
  cursor: pointer;
  color: #8F8F8F;
  border-radius: 6px;
  font-size: 16px;
  font-family: 'RobotoRegular';
}

.Careerfilter-content li:hover {
  background: #f2f2f2;
}

/* SEARCH BUTTON */


.search-btn {
  background: var(--accent);
  color: #000;
  border: none;
  padding: 12px 18px;
  border-radius: 30px;
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 16px;
  white-space: nowrap;
  font-family: 'RobotoSemiBold';
}

/* JOB CARD */
.Careerjob-card {
  background: #fff;
  border-radius: 14px;
  padding: 20px;
  border: 1px solid #e5e5e5;
  margin-bottom: 15px;
  transition: 0.3s;
}

.Careerjob-card h5 {
  font-family: 'RobotoRegular';
  color: #191919;
}

.Careerjob-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
}

.Careerjob-card p {
  font-family: 'RobotoRegular';
  font-size: 16px;
}

.Careerapply-btn {
  margin-top: 10px;
  padding: 8px 26px;
  border: none;
}

.Careerapply-btn .fa-solid {
  margin-left: 10px;
}

.upload-box {
  display: flex;
  align-items: center;
  gap: 15px;
}

.upload-btn {
  background: var(--accent);
  color: #000;
  padding: 10px 18px;
  border-radius: 25px;
  cursor: pointer;
  font-size: 16px;
  font-family: 'RobotoRegular';
}

#fileName {
  font-size: 16px;
  color: #555;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 200px;
}

/* MOBILE */
@media(max-width:768px) {
  .Careerfilter-row {
    flex-direction: column;
    align-items: stretch;
  }

  .search-btn {
    width: 100%;
    justify-content: center;
  }

  .Careerfilter-content {
    position: relative;
    top: 10px;
  }
}

/* Sustanibility Page */
.management-section {
  background: #FFFEFE;
}

/* INNER CONTAINER BG */
.management-box {
  background: #F9F9F9;
  padding: 40px;
}

/* IMAGE */
.management-img img {
  width: 100%;
  height: auto;
}

/* HEADING */
.management-title {
  margin-bottom: 20px;
}

/* QUOTE */
.management-quote {
  position: relative;
  font-size: 16px;
  line-height: 1.8;
  padding: 0px 0px 10px 0;
  text-align: justify;
}

.ceoBox {
  display: flex;
  align-items: center;
  gap: 20px;
  width: 100%;
  background: #fff;

}

.ceoUser {
  width: 55px;
  height: 55px;

  min-width: 55px;

  border: 2px solid #ffb700;
  border-radius: 50%;

  display: flex;
  align-items: center;
  justify-content: center;

  background: #fffdf5;
}

.ceoUser i {
  font-size: 32px;
  color: #ffb700;
}

.envPolicyheading{
  font-family: 'RobotoSemiBold';
    letter-spacing: .02em;
    color: #191919;
    text-transform: capitalize;
    font-size: 18px;
    line-height: normal;
}

.envPolicyList{
  list-style: none;
  padding: 0;
  margin: 0;
}

.envPolicyList li{
  margin: 10px 0;
}

.envPolicyList .fa-circle-check{
  color: #ffb700 !important;
  font-size: 16px;
}

/* LEFT QUOTE */
/* .management-quote::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 30px;
  height: 30px;
  background: url('../images/sustainability/left-quote.png') no-repeat center;
  background-size: contain;
}  */
/* RIGHT QUOTE */
/* .management-quote::after {
  content: "";
  position: absolute;
  right: 0px;
  bottom: 0;
  width: 40px;
  height: 40px;
  background: url('../images/sustainability/left-quote.png') no-repeat center;
  background-size: contain;
  transform: rotate(180deg);
} */

/* NAME */
.management-name {
  font-family: 'RobotoSemiBold';
  font-size: 24px;
  margin-top: 0px;
  margin-bottom: 0;
  color: #191919;
}

/* POSITION */
.management-role {
  font-size: 16px;
  color: #697077;
  font-family: 'RobotoRegular';
  margin-bottom: 0px;
}

/*core section*/
.core-section {
  background: #191919;
  color: #fff;
}

.core-section .HeaderTitle {
  color: #fff;
}

/* CARD */
.core-card {
  position: relative;
  overflow: hidden;
}

.core-card a {
  color: #fff;
  text-decoration: none;
  display: block;
}

/* IMAGE */
.core-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: 0.5s;
}

/* OVERLAY */
.core-card .overlay {
  position: absolute;
  inset: 0;
  /* background: linear-gradient(to top, rgba(0,0,0,0.85), rgba(0,0,0,0.2)); */
  transition: 0.4s;
}

/* TEXT */
.card-content {
  position: absolute;
  bottom: 20px;
  left: 20px;
  z-index: 2;
}

.card-content h4 {
  font-size: 22px;
  margin: 0;
  font-family: 'RobotoMedium';
}

/* HOVER */
.core-card:hover img {
  transform: scale(1.1);
}

/* Key Highlights*/
.KeyHighlights-section {
  background: #FFFEFE;
}

/* ROW GAP */
.highlight-row {
  margin-top: 40px;
}

/* COLUMN SPACING FIX */
.highlight-row .col-md-5:first-child {
  padding-right: 60px;
}

.highlight-row .col-md-5:last-child {
  padding-left: 60px;
}

/* ITEM */
.highlight-item {
  padding: 25px 0 0px;
  border-top: 1px solid #191911;
}

/* ADD SPACE BETWEEN ITEMS */
.highlight-item+.highlight-item {
  margin-top: 35px;
}

/* TITLE */
.highlight-item h4 {
  font-size: 24px;
  font-weight: 500;
  margin-bottom: 12px;
  font-family: 'MontserratSemiBold';
}

/* VALUE */
.highlight-value {
  font-size: 40px;
  font-family: 'RobotoBold';
  color: var(--accent);
  margin-bottom: 10px;
}

/* TEXT */
.highlight-item p {
  font-size: 16px;
  color: #697077;
  margin: 0;
  max-width: 90%;
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .highlight-row .col-md-5 {
    padding: 0 15px !important;
  }

  .highlight-item {
    margin-bottom: 20px;
    padding-bottom: 10px;
  }

  .section-header h2 {
    font-size: 26px;
  }

  .highlight-value {
    font-size: 30px;
  }
}

/* Core Practices */
.core-practices-section {
  background: #F9F9F9;
}

.practice-card img {
  width: 100%;
  display: block;
}

/* TITLE */
.practice-card h5 {
  margin-top: 12px;
  font-size: 22px;
  font-family: 'RobotoSemiBold';
}

/* GAP CONTROL */
.core-practices-section .row.g-4 {
  --bs-gutter-x: 30px;
  --bs-gutter-y: 30px;
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .practice-card img {
    height: 220px;
  }

  .section-header h2 {
    font-size: 26px;
  }
}


.ourTeam-section {
  background: #ffffff;
}

.ourteam-card {
  background: #F9F9F9;
  margin-bottom: 40px;
  align-items: center;
  padding: 0;
}

.ourteam-card:last-child {
  margin-bottom: 0px;
}

/* REMOVE BOOTSTRAP GAP COMPLETELY */
.row.g-0>[class*='col-'] {
  padding: 0;
}

.team-img {
  width: 100%;
}

.team-img img {
  width: 100%;
  display: block;
}

.team-content {
  padding: 40px;
}

.team-content h3 {
  font-family: 'RobotoSemiBold';
  color: #191919;
}

.team-content span {
  display: block;
  font-size: 18px;
  font-family: 'RobotoRegular';
  color: #191919;
  margin-bottom: 10px;
}

.team-content p {
  font-size: 16px;
  color: #697077;
  max-width: 420px;
  font-family: 'RobotoRegular';
}

.linkedin-icon {
  display: inline-block;
  margin-top: 10px;
  border: 1px solid #0073b2;
  padding: 0px 8px;
  background-color: #0073b2;
  transition: 0.3s ease-in;
  border-radius: 5px;
}

.team-content a {
  color: #fff;
  font-size: 28px;
  text-decoration: none;
}



/* Responsive */
@media (max-width: 991px) {
  .ourteam-card {
    text-align: center;
  }

  .team-content {
    padding: 20px;
  }

  .team-img {
    max-width: 100%;
  }
}

.cart-toast {
  position: fixed;
  top: 20px;
  right: 20px;
  background: #2fb872;
  color: #fff;
  padding: 14px 24px;
  border-radius: 8px;
  z-index: 9999;
  opacity: 0;
  transform: translateY(-15px);
  transition: all 0.3s ease;
  pointer-events: none;
  font-weight: 500;
  font-size: 15px;
  display: flex;
  align-items: center;
  gap: 10px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.cart-toast.error {
  background: #dc3545;
}

.cart-toast.show {
  opacity: 1;
  transform: translateY(0);
}

.cart-toast i {
  font-size: 18px;
}


.related-product-slider .item {
  height: auto;
}

.related-product-slider .owl-nav {
  margin-top: 20px;
  text-align: center;
}

.related-product-slider .owl-nav button {
  font-size: 34px !important;
  line-height: 20px !important;
}

.related-product-slider .owl-nav .owl-prev,
.related-product-slider .owl-nav .owl-next {

  top: 45%;

}

.zoom-text {
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  gap: 8px;
  margin-top: 12px;
  color: #666;
  font-size: 14px;
  font-weight: 500;
  position: absolute;
  left: 15px;
  top: 5px;
}

.zoom-text i {
  color: #6e6e6e;
  font-size: 32px;
}