/***Common***/
:root {
  --fhead: 'Montserrat', sans-serif;
  --fregular: 'Poppins', sans-serif;
  --fbrand: 'Pacifico', sans-serif;
  --mainclr: #2e7d32;
  --mainclr-light: #4caf50;
  --subclr: #ef6c00;
  --staticclr: #111111;
  --headerheight: 96px;
}

body {
  font-family: var(--fregular);
  font-size: 16px;
  color: var(--staticclr);
  margin: 0;
  background-color: #f5f5f5;
  padding-top: var(--headerheight);
}

a {
  text-decoration: none;
  outline: none;
}

/***Header***/
.headsec {
  background-color: #ffffff;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.08);
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  height: 96px;
  display: flex;
  align-items: center;
}

.headsec::after {
  content: "";
  width: 100%;
  height: 16px;
  position: absolute;
  bottom: -15px;
  left: 0;
  background-image: url('../images/ripped-paper-header.png');
  background-position: center center;
  background-size: cover;
}

.headsec .navbar-brand {
  font-family: var(--fbrand);
  font-size: 1.8rem;
  display: flex;
  align-items: center;
  gap: 10px;
  background: linear-gradient(90deg, var(--mainclr), var(--subclr));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  white-space: nowrap;
}

.headsec .navbar-brand img {
  height: 70px;
  width: auto;
}

.headsec .nav-link {
  position: relative;
  font-family: var(--fhead);
  color: var(--staticclr);
  font-weight: 500;
  padding: 0.75rem 1rem;
  transition: color 0.3s ease;
  font-size: 14px;
}

.headsec .nav-link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--mainclr), var(--subclr));
  transition: width 0.3s ease;
}

.headsec .nav-link:hover {
  color: var(--subclr);
}

.headsec .nav-link:hover::after,
.headsec .nav-link.active::after {
  width: 100%;
}

.headsec .nav-link.active {
  color: var(--subclr);
  font-weight: 600;
}

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

/***Home Banner***/
.home-banner {
  padding: 16px 0 0;
}

.home-banner .banner {
  height: clamp(450px, calc(100vh - var(--headerheight)), 600px);
  padding: 5px 0 25px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.home-banner .banner .row {
  height: 100%;
}

.home-banner .banner .left-col,
.home-banner .banner .right-col {
  display: flex;
  flex-direction: column;
  height: 100%;
}

.home-banner .left-image {
  flex: 1 1 auto;
  min-height: 0;
  overflow: hidden;
}

.home-banner .left-image img {
  width: 100%;
  height: 100%;
  object-fit: fill;
}

.home-banner .left-content {
  flex: 0 0 auto;
  padding: 1rem 0 3rem;
}

.home-banner .right-image {
  flex: 1 1 auto;
  min-height: 0;
  overflow: hidden;
}

.home-banner .right-image img {
  width: 100%;
  height: 100%;
  object-fit: fill;
}

.home-banner .left-content h2 {
  font-family: var(--fhead);
  font-size: 1.8rem;
  line-height: 2rem;
  margin-bottom: 0;
  color: var(--mainclr);
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.25);
}

.home-banner .left-content p {
  font-family: var(--fregular);
  font-size: 1rem;
  color: var(--staticclr);
  margin: 0;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.25);
  display: none;
}

.home-banner .owl-nav {
  position: absolute;
  bottom: 20px;
  left: 0;
  display: flex;
  gap: 5px;
}

.home-banner .owl-nav button.owl-prev,
.home-banner .owl-nav button.owl-next {
  background: linear-gradient(90deg, var(--mainclr), var(--subclr)) !important;
  color: #fff !important;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  line-height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.15);
  transition: transform 0.2s ease;
}

.home-banner .owl-nav button.owl-prev:hover,
.home-banner .owl-nav button.owl-next:hover {
  transform: scale(1.1);
}

/*** Our Segments Section ***/
.segments-sec {
  background-color: var(--mainclr);
  /*background-image: url('../images/dropbg.webp');
  background-size: cover;
  background-attachment: fixed;*/
  padding: 80px 0;
  color: #fff;
  margin: 60px 0 0;
  position: relative;
  z-index: 0;
}

/*.segments-sec::before {
  content: '';
  z-index: -1;
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  background: rgb(0 0 0 / 50%);
}*/

.segments-sec .sec-title {
  text-align: left;
  font-size: 2.5rem;
  margin-bottom: 40px;
  color: #fff;
  font-family: var(--fbrand);
}

.segments-sec .segments-slider .seg-item {
  position: relative;
  display: block;
  background-color: var(--mainclr-light);
  border-radius: 8px;
  overflow: hidden;
  text-align: center;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  transition: transform 0.3s ease, box-shadow 0.3s ease, height 0.3s ease;
  color: #fff;
  text-decoration: none;
  height: 280px;
}

.segments-sec .segments-slider.has-nav .seg-item {
  height: 240px;
}

.segments-sec .seg-item:hover {
  transform: translateY(-6px);
  box-shadow: 0 10px 20px rgba(46, 125, 50, 0.3);
}

.segments-sec .seg-img {
  position: relative;
  width: 100%;
  height: 222px;
  overflow: hidden;
  border-radius: 8px 8px 0 0;
}

.segments-sec .seg-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.3s ease;
}

.segments-sec .seg-item:hover .seg-img img {
  transform: scale(1.05);
}

.segments-sec h3 {
  font-family: var(--fhead);
  font-size: 1.2rem;
  font-weight: 600;
  margin: 12px 0;
  color: #fff;
  transition: color 0.3s ease;
}

.no-segments {
  text-align: center;
  padding: 40px;
  font-size: 1.2rem;
  color: #666;
  background: #f9f9f9;
  border-radius: 8px;
}

.segments-sec .owl-nav {
  text-align: center;
  margin-top: 20px;
}

.segments-sec .owl-nav button {
  background: var(--mainclr-light);
  border: none;
  color: #fff;
  font-size: 1.4rem;
  margin: 0 8px;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: background 0.3s ease;
}

.segments-sec .owl-nav button:hover {
  background: var(--subclr);
  color: #fff;
}

.segments-sec .owl-nav i {
  font-size: 1.2rem;
  line-height: 1;
}



/***Home Products***/
#hmproductssec {
  scroll-margin-top: 80px;
}

.products-sec {
  background: #ffffff;
  padding: 70px 0;
}

.products-sec .seg-btn {
  background: linear-gradient(90deg, var(--mainclr), var(--subclr));
  color: #fff;
  border: none;
  padding: 14px 20px;
  font-size: 18px;
  font-weight: 600;
  border-radius: 8px;
  transition: all 0.3s ease;
}

.products-sec .seg-btn i {
  margin-right: 8px;
  font-size: 20px;
}

.products-sec .seg-btn:hover,
.products-sec .seg-btn.active {
  background: var(--subclr);
  color: #fff;
  transform: translateY(-3px);
}

.products-sec .product-name-list {
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
  justify-content: center;
  text-align: center;
}

.products-sec .product-pill {
  padding: 8px 16px;
  background: var(--mainclr);
  color: #fff;
  border-radius: 20px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: 0.3s ease;
}

.products-sec .product-pill:hover,
.products-sec .product-pill.active {
  background: var(--subclr);
  transform: translateY(-3px);
}

.products-sec .left-sticky {
  position: sticky;
  top: 100px;
  padding: 20px;
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

.products-sec .filter-title {
  font-family: var(--fbrand);
  font-size: 22px;
  color: var(--mainclr);
  margin-bottom: 10px;
}

.products-sec .filter-box label {
  display: block;
  margin-bottom: 8px;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  color: var(--subclr);
}

.products-sec .filter-box input[type="radio"] {
  margin-right: 6px;
  accent-color: var(--subclr);
}

.products-sec .product-card {
  background: #fff;
  border-radius: 12px;
  padding: 15px;
  text-align: center;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
  transition: 0.3s ease;
  cursor: pointer;
}

.products-sec .product-card>.p-img {
  height: 180px;
  width: 180px;
  margin: 0 auto;
}

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

.products-sec .p-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
}

.products-sec .p-name {
  font-family: var(--fhead);
  font-size: 20px;
  color: var(--mainclr);
  margin-top: 12px;
}

.products-sec .p-desc {
  font-size: 14px;
  color: #555;
  margin: 10px 0 15px;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}

.products-sec .view-btn {
  background: var(--subclr);
  color: #fff;
  border: none;
  padding: 8px 18px;
  border-radius: 6px;
  font-weight: 600;
  transition: 0.3s ease;
  margin: 0 0 20px 0;
  display: inline-block;
}

.products-sec .view-btn:hover {
  background: var(--mainclr);
}

.products-sec .products-title {
  text-align: left;
  font-size: 2.5rem;
  margin-bottom: 40px;
  color: var(--mainclr);
  font-family: var(--fbrand);
}

.products-sec .seg-main-title {
  font-family: var(--fhead);
  font-size: 36px;
  color: var(--mainclr);
  text-align: center;
  margin: 25px 0 10px;
  line-height: 1.3;
  font-weight: 700;
}

.products-sec .seg-sub-title {
  font-family: var(--fregular);
  font-size: 18px;
  color: var(--subclr);
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
  line-height: 1.6;
  font-weight: 400;
}

.products-sec .p-origin {
  font-size: 15px;
  color: var(--mainclr);
  margin: 5px 0 10px;
  font-weight: 600;
}

.products-sec .p-origin i {
  color: var(--subclr);
  margin-right: 6px;
}



/*** Home Certificates ***/
.certification-sec {
  background: linear-gradient(180deg, var(--mainclr) 0%, var(--staticclr) 100%);
  padding: 70px 0;
}

.cert-title {
  font-family: var(--fbrand);
  font-size: 2.5rem;
  color: #fff;
  text-align: left;
  margin-bottom: 25px;
}

.cert-paragraph {
  color: #fff;
  font-size: 15px;
  text-align: left;
}

.cert-slider {
  margin: 60px 0 0;
}

.cert-slider .cert-item {
  background: #fff;
  padding: 10px;
  border-radius: 12px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.25);
  display: flex;
  align-items: center;

  justify-content: center;

  transition: 0.3s ease;

  height: 100px;
}

.cert-slider .cert-item img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}


/***Footer***/
.main-footer {
  background: #111;
  color: #ddd;
  padding: 60px 0 20px;
  font-size: 14px;
}

.footer-logo {
  width: 120px;
  max-width: 100%;
  margin-bottom: 10px;
}

.footer-brand {
  font-family: var(--fbrand);

  font-size: 20px;
  color: #fff;
  margin-bottom: 15px;
}

.footer-about p {
  color: #bbb;
  line-height: 1.6;
}

.footer-title {
  font-family: var(--fhead);
  font-size: 22px;
  color: var(--subclr);
  margin-bottom: 15px;
}

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

.footer-links li {
  margin-bottom: 8px;
}

.footer-links li a {
  color: #ccc;
  text-decoration: none;
  transition: 0.3s ease;
}

.footer-links li a:hover {
  color: var(--mainclr);
}

.footer-contact {
  display: flex;
  align-items: flex-start;
}

.footer-contact-logo {
  flex: 0 0 auto;
}

.footer-contact-details {
  flex: 1;
}

.footer-contact-details p {
  margin-bottom: 8px;
  color: #ccc;
  line-height: 1.6;
}

.footer-contact-details a {
  color: #ccc;
  text-decoration: none;
  transition: 0.3s ease;
}

.footer-contact-details a:hover {
  color: var(--subclr);
}

.company-name {
  font-family: var(--fhead);
  font-size: 18px;
  color: var(--subclr);

  margin-bottom: 10px;
}

.footer-bottom {
  text-align: center;
  margin-top: 30px;
  border-top: 1px solid #333;
  padding-top: 15px;
  color: #aaa;
}

/***About Us***/
.bg-fixed {
  position: fixed;
  top: var(--headerheight);
  left: 0;
  width: 100%;
  height: calc(100vh - var(--headerheight));
  z-index: -1;
  background-image: url('../images/about-plain.webp');
  background-size: cover;
  background-attachment: fixed;
}

.bg-fixed img {
  height: calc(100vh - var(--headerheight));
  object-fit: fill;
  width: 350px;
  margin: 0 0 0 -30px;
}

.about-head {
  font-family: var(--fbrand);
  font-size: 2rem;
  color: #fff;
  margin-bottom: 20px;
  position: relative;
}

.about-head::after {
  content: "";
  display: block;
  width: 60px;
  height: 3px;
  background-color: var(--subclr);
  margin-top: 10px;
}

.about-pgh {
  font-family: var(--fregular);
  font-size: 1.05rem;
  line-height: 1.7;
  color: #fff;
  margin-bottom: 15px;
}

.abtourstory {
  padding: 60px 0 60px 300px;
}

.about-page {
  position: relative;
  z-index: 1;
}

.abtroundedsec {
  height: 400px;
  background: rgb(0 0 0 / 50%);
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  margin: 0 auto 55px;
  aspect-ratio: 1 / 1;
  padding: 15px;
}

.abtroundedsec>p {
  max-width: 90%;
}

/***About Us***/

/***Our Values***/
.our-values-page {
  padding: 0 0 60px;
}

.corebusvaluescntsec .values-head {
  font-family: var(--fhead);
  font-size: 2rem;
  font-weight: 700;
  color: var(--mainclr);
  margin-bottom: 20px;
  background: rgb(255 255 255 / 60%);
  padding: 10px;
  border-radius: 12px;
}

.corebusvaluescntsec .values-head.center {
  text-align: center;
}

.corebusvaluescntsec .right-head {
  font-family: var(--fhead);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--mainclr);
  text-align: center;
  margin: 40px 0 20px;
}


.corebusvaluescntsec .detailed-values {
  margin-top: 50px;
}

.corebusvaluescntsec .detail-row {
  display: flex;
  align-items: flex-start;
  gap: 18px;
  padding: 16px 18px;
  margin-bottom: 16px;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.08);
}

.corebusvaluescntsec .detail-icon i {
  font-size: 2rem;
  color: var(--subclr);
}

.corebusvaluescntsec .detail-content h4 {
  font-family: var(--fhead);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--mainclr);
  margin: 0 0 6px;
}

.corebusvaluescntsec .detail-content p {
  font-family: var(--fregular);
  font-size: 0.98rem;
  line-height: 1.6;
  color: var(--staticclr);
  margin: 0;
}

.our-values-page .right-head {
  font-family: var(--fhead);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--mainclr);
  text-align: center;
  margin: 40px 0 20px;
}

.our-values-page .imgsdg {
  margin: 15px 0 0;
}

.our-values-page .imgsdg>img {
  max-width: 100%;
}

/***ESG***/
.esg-framework h1 {
  font-family: var(--fhead);
  font-weight: 700;
  color: var(--mainclr);
}

.esg-framework .subhead {
  font-family: var(--fregular);
  font-size: 1.25rem;
  color: var(--subclr);
}

.esg-framework .card {
  border: none;
  border-radius: 1rem;
  overflow: hidden;
  box-shadow: 0 6px 16px rgba(0, 0, 0, .1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  background: #fff;
}

.esg-framework .card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 24px rgba(0, 0, 0, .2);
}

.esg-framework .card-header {
  padding: 1rem;
  color: #fff;
  display: flex;
  align-items: center;
  flex-direction: column;
  justify-content: center;
}

.esg-framework .card-header>div {
  text-align: center;
}

.esg-framework .card-header i {
  font-size: 2.2rem;
  margin-right: 0.75rem;
}

.esg-framework .card-header h2 {
  font-family: var(--fhead);
  font-size: 1.6rem;
  margin: 0;
  text-transform: uppercase;
  letter-spacing: .06em;
}

.esg-framework .card-header .sub-title {
  font-size: 0.78rem;
  margin: 0;
  opacity: .9;
}

.esg-framework .env-header {
  background: linear-gradient(90deg, var(--mainclr), var(--mainclr-light));
}

.esg-framework .soc-header {
  background: linear-gradient(90deg, var(--subclr), #ff9800);
}

.esg-framework .gov-header {
  background: linear-gradient(90deg, #1565c0, #1e88e5);
}

.esg-framework .env-card .card-body {
  background: rgba(46, 125, 50, .06);
  padding: 1.2rem;
}

.esg-framework .soc-card .card-body {
  background: rgba(239, 108, 0, .08);
  padding: 1.2rem;
}

.esg-framework .gov-card .card-body {
  background: rgba(21, 101, 192, .08);
  padding: 1.2rem;
}

.esg-framework .tagline {
  font-size: 0.85rem;
  color: var(--subclr);
  margin: 0 0 1rem;
  text-align: center;

  position: relative;

}

.esg-framework .tagline::before,
.esg-framework .tagline::after {
  content: "";
  display: inline-block;
  width: 10%;

  height: 1px;

  background: var(--subclr);
  vertical-align: middle;
  margin: 0 0.5em;

}



.esg-framework .list-group-item {
  display: flex;
  align-items: center;
  border: none;
  background: transparent;
  transition: color 0.3s ease;
  padding: .55rem 0;
}

.esg-framework .list-group-item i {
  margin-right: .6rem;
}


.esg-framework .list-group-item.main-point {
  font-size: 1.12rem;
  font-weight: 700;
  padding: .7rem .75rem;
  border-radius: .6rem;
  background: #fff;
  box-shadow: 0 4px 10px rgba(0, 0, 0, .06);
  transition: transform .2s ease, box-shadow .2s ease;
  color: var(--mainclr);
  margin: 0 0 5px;
}

.esg-framework .list-group-item.main-point i {
  font-size: 1.55rem;
  background: rgba(0, 0, 0, .06);
  border-radius: 50%;
  padding: .35rem;
}

.esg-framework .env-card .list-group-item.main-point {
  border-left: 4px solid #2e7d32;
}

.esg-framework .soc-card .list-group-item.main-point {
  border-left: 4px solid #ef6c00;
}

.esg-framework .gov-card .list-group-item.main-point {
  border-left: 4px solid #1565c0;
}

.esg-framework .list-group-item.main-point:hover {
  transform: translateX(3px);
  box-shadow: 0 6px 14px rgba(0, 0, 0, .1);
}


.esg-framework .list-group-item.secondary-point {
  font-size: 0.76rem;
  margin-top: 0;
  padding: .35rem 0;
  opacity: 0.9;
  line-height: 1;
  color: var(--subclr);
}

.esg-framework .list-group-item.secondary-point:nth-of-type(4) {
  padding: 30px 0 0;
}


.esg-framework .banner {
  background: var(--mainclr-light);
  color: #fff;
  padding: .35rem .8rem;
  margin-top: 2rem;
  text-align: center;
  box-shadow: 0 6px 16px rgba(0, 0, 0, .1);
}

.esg-framework .banner-text {
  font-family: var(--fhead);
  font-weight: 600;
  font-size: .98rem;
  letter-spacing: .03em;
}

.corebusinessvaluewrapper {
  background-color: var(--mainclr);
}

.corebusvaluescntsec {
  background-image: url('../images/about_fixed.webp');
  background-size: cover;
  background-attachment: fixed;
}

.tblsdgesgpillar tbody td,
.tblsdgesgpillar thead th {
  vertical-align: middle;
}

.tblsdgesgpillar thead th {
  background-color: var(--mainclr);
  color: #fff;
}

.tblsdgesgpillar tbody tr.envclr td {
  background: linear-gradient(180deg, var(--mainclr), var(--mainclr-light));
}

.tblsdgesgpillar tbody tr.socclr td {
  background: linear-gradient(180deg, var(--subclr), #ff9800);
}

.tblsdgesgpillar tbody tr.govclr td {
  background: linear-gradient(180deg, #1565c0, #1e88e5);
}

.esg-framework {
  width: 90%;
  margin: 0 auto;
}

.tblsdgesgpillar tbody td.focustxt {
  color: #fff;
  font-weight: bold;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.25);
}

/***Our Values***/

/***Our Products***/
.product-detail-page {
  background: radial-gradient(circle at center, #fff9e6 0%, #fff2cc 50%, #ffeaa7 100%);
  padding: 0 0 25px;
}

.product-detail-page .productimgsec {
  height: 300px;
  width: 300px;
  margin: 0 auto 30px;
  border: 12px solid var(--mainclr);
  border-radius: 50%;
  aspect-ratio: 1 / 1;
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
  animation: float 6s ease-in-out infinite;
}

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

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

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

.product-detail-page .color-box {
  padding: 25px;
  border-radius: 20px;
  margin-bottom: 25px;
  border: none;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  display: flex;
  align-items: center;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.04);
  position: relative;
  overflow: hidden;
}

.product-detail-page .box-green {
  background: linear-gradient(135deg, rgba(46, 125, 50, 0.1) 0%, rgba(46, 125, 50, 0.05) 100%);
  border-left: 6px solid var(--mainclr);
}

.product-detail-page .box-orange {
  background: linear-gradient(135deg, rgba(239, 108, 0, 0.1) 0%, rgba(239, 108, 0, 0.05) 100%);
  border-left: 6px solid var(--subclr);
}

.product-detail-page .point-text {
  font-family: var(--fregular);
  color: var(--staticclr);
  font-size: 1.05rem;
  margin: 0;
  line-height: 1.4;
}

.product-detail-page .color-box {
  background-color: #fff !important;
}

.product-detail-page .productimgsec>img {
  height: 100%;
  width: 100%;
  object-fit: contain;
  border-radius: 50%;
}

.product-detail-page .detail-head {
  font-family: var(--fhead);
  font-size: 3.5rem;
  color: var(--mainclr);
  margin: 2.5rem 0 3.5rem;
  font-weight: 600;
}

.product-detail-page .detail-description {
  /*font-size: 1rem;
  color: var(--mainclr);
  margin: 50px auto 0;
  background: #fff;
  padding: 25px;
  border-radius: 10px;
  font-weight: 500;*/
  margin-top: 80px;
  padding: 50px;
  background-color: #fcfcfc;
  border-radius: 30px;
  border: 1px solid #f0f0f0;
}

.product-detail-page .detail-description .desc-para {
  line-height: 1.8;
  color: #444;
  margin-bottom: 30px;
  font-size: 1rem;
}

.product-detail-page .detail-description .desc-para.intro {
  font-weight: 500;
}

.product-detail-page .detail-description .desc-title {
  font-family: var(--fhead);
  color: var(--mainclr);
  font-size: 1.5rem;
  margin-bottom: 15px;
  border-bottom: 2px solid var(--subclr);
  display: inline-block;
  padding-bottom: 5px;
  font-weight: bold;
}

.product-detail-page .detail-description .tag-pill {
  display: inline-block;
  background: var(--mainclr);
  color: #fff;
  padding: 5px 15px;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 600;
  margin: 5px;
}

.product-detail-page .detail-description .desc-special {
  background-color: #fff;
  padding: 25px;
  border-radius: 15px;
  border-left: 5px solid var(--subclr);
}

.product-detail-page .accordion-button {
  font-family: var(--fhead);
  font-weight: 600;
  color: var(--mainclr);
  background-color: #f9f9f9;
  white-space: pre-line;
}

.product-detail-page .accordion-button:not(.collapsed) {
  background-color: var(--mainclr);
  color: #fff;
  line-height: 0;
  font-size: 1.8rem;
  padding: 15px 25px;
}

.product-detail-page .accordion-button:focus {
  box-shadow: none;
}

.product-detail-page .accordion-body {
  background: #fff;
  border-left: 3px solid var(--mainclr-light);
  padding: 1rem 1.25rem;
}

.product-detail-page .card {
  border-radius: 12px;
  overflow: hidden;
  transition: transform 0.3s ease;
}

.product-detail-page .card-header {
  background: linear-gradient(135deg, var(--mainclr-light) 0%, var(--mainclr) 100%);
}

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

.product-detail-page .card-img-top {
  width: 180px;
  height: 180px;
  border-radius: 50%;
  object-fit: cover;
  margin: 15px auto;
  display: block;
}

.product-detail-page .card-body p {
  margin-bottom: 0.4rem;
  font-size: 0.9rem;
  font-family: var(--fhead);
  font-weight: bolder;
  color: var(--subclr);
}

.product-detail-page .card-body strong {
  color: var(--mainclr);
}

.product-detail-page .quote-head {
  font-family: var(--fhead);
  font-size: 1.8rem;
  color: var(--mainclr);
  font-weight: 600;
}

.product-detail-page .quote-form .form-control {
  border-radius: 8px;
  box-shadow: none;
}

.quote-btn {
  display: inline-block;
  border-radius: 8px;
  padding: 10px 25px;
  font-weight: 600;
  background: var(--mainclr);
  border: none;
  color: #fff;
  transition: background 0.2s ease;
}

.quote-btn:hover {
  background: var(--mainclr-light);
}

.product-detail-page .segment-header {
  display: block;
  font-weight: 600;
  font-size: 1rem;
  color: var(--mainclr);
  margin-bottom: 6px;
}

.product-detail-page .variant-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  padding: 10px 0 15px 15px;
  background: #f9f9f9;
}

.product-detail-page .variant-item {
  cursor: pointer;
  padding: 4px 10px;
  border-radius: 6px;
  background: var(--mainclr-light);
  font-size: 0.85rem;
  color: #fff;
  transition: all 0.5s ease;
}

.product-detail-page .variant-item.active,
.product-detail-page .variant-item:hover {
  background: var(--mainclr);
  color: #fff;
}

.related-products-section {
  background: linear-gradient(90deg, var(--mainclr), var(--subclr));
  margin: 0;
  padding: 2rem;
}

.related-products-section .section-head {
  font-family: var(--fhead);
  font-size: 1.8rem;
  font-weight: 600;
  color: #ffffff;
  text-align: center;
  margin-bottom: 3rem;
}

.related-products-carousel .owl-nav {
  padding: 15px 0 0;
  text-align: center;
}

.related-products-carousel .owl-nav>button {
  background: #fff !important;
}

.related-products-carousel .product-card {
  text-align: center;
  background: #fff;
  border-radius: 12px;
  padding: 1.5rem;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
  cursor: pointer;
}

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

.related-products-carousel .product-card .p-img {
  width: 180px;
  height: 180px;
  margin: 0 auto 1rem auto;
  border-radius: 50%;
}

.related-products-carousel .product-card .p-img img {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  object-fit: cover;
}

.related-products-carousel .product-card .p-name {
  font-family: var(--fhead);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--mainclr);
  margin-bottom: 0.5rem;
}

.related-products-carousel .product-card .p-origin {
  font-family: var(--fregular);
  font-size: 0.9rem;
  color: var(--subclr);
  margin-bottom: 0.5rem;
}

.related-products-carousel .product-card .p-desc {
  font-family: var(--fregular);
  font-size: 0.85rem;
  color: var(--staticclr);
  margin-bottom: 1rem;
}

.related-products-carousel .product-card .view-btn {
  display: inline-block;
  border-radius: 8px;
  padding: 8px 20px;
  font-weight: 600;
  background: var(--mainclr);
  border: none;
  color: #fff;
  transition: background 0.2s ease;
  text-decoration: none;
}

.related-products-carousel .product-card .view-btn:hover {
  background: var(--mainclr-light);
}

.related-products-carousel .owl-nav button {
  background: var(--mainclr);
  color: #fff;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  border: none;
  margin: 0 5px;
  transition: background 0.2s ease;
}

.related-products-carousel .owl-nav button:hover {
  background: var(--mainclr-light) !important;
}

.related-products-carousel .owl-nav button span {
  font-size: 1.5rem;
  line-height: 1;
}

/***Our Products***/

/***Our Services***/
.servicesimgsec .osimgsec,
.servicesimgsec .safeimgsec {
  height: 472px;
}

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

section.servicestop {
  padding: 0;
}

.servicestop .cnt {
  margin: 0 auto;
  color: #fff;
}

.servicestop .cnt h2 {
  font-family: var(--fhead);
  font-weight: 700;
  text-align: center;
  font-size: 2.4rem;
  color: #fff;
  display: block;
  padding: 15px 30px;
  margin: 20px auto;
  background: linear-gradient(135deg, var(--mainclr), var(--staticclr));
  border-radius: 10px;
  position: relative;
}

.servicestop .cnt h2::after {
  content: '';
  display: block;
  width: 140px;
  height: 4px;
  background: linear-gradient(90deg, var(--subclr), var(--mainclr-light));
  margin: 10px auto 0;
  border-radius: 2px;
}

.servicestop .cnt ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.servicestop .cnt ul li:nth-child(5) {}

.servicestop .cnt ul>li {
  font-size: 2rem;
  border-radius: 12px;
  padding: 15px 20px;
  margin-bottom: 12px;
  font-family: var(--fregular);
  display: flex;
  align-items: center;
  color: #fff;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.servicestop .cnt ul>li>i {
  padding: 0 15px 0 0;
}

.servicestop .cnt ul>li:nth-child(1) {
  background: linear-gradient(135deg, #c0392b, #f7b7a3);
}

.servicestop .cnt ul>li:nth-child(2) {
  background: linear-gradient(135deg, #3498db, #2ecc71);
}

.servicestop .cnt ul>li:nth-child(3) {
  background: linear-gradient(135deg, #f1c40f, #e67e22);
}

.servicestop .cnt ul>li:nth-child(4) {
  background: linear-gradient(135deg, #9b59b6, #cba3ff);
}

.servicestop .cnt ul>li:nth-child(5) {
  background: linear-gradient(135deg, #ff7a00, #ffb347);
}

.servicestop .cnt h4 {
  font-family: var(--fregular);
  font-size: 1.9rem;
  text-align: center;
  color: #fff;
  position: relative;
  display: block;
  padding: 25px;
  margin: 20px auto;
  z-index: 1;
  text-transform: uppercase;
}

.servicestop .cnt h4::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, var(--mainclr), #056a08);
  border-radius: 6px;
  z-index: -1;
}

.servicestop .cnt h4 .ctry {
  color: var(--subclr);
  position: relative;
  padding-left: 40px;
}

.servicestop .cnt h4 .ctry::before {
  content: '';
  height: 35px;
  width: 35px;
  position: absolute;
  left: 0;
  top: 5px;
  background-size: contain;
  background-repeat: no-repeat;
}

.servicestop .cnt h4 .india::before {
  background-image: url('../images/indiaflag.png');
}

.servicestop .cnt h4 .vietnam::before {
  background-image: url('../images/vietnamflag.png');
}

.servicestop .cnt h4 b {
  color: var(--mainclr-light);
}

.servicestop .cnt h4 i {
  font-style: normal;
}

.servicestop .rightsec {
  background: linear-gradient(135deg, var(--mainclr), var(--staticclr));
  color: #fff;
  padding: 40px;
  border-radius: 12px;
  text-align: center;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
  margin-top: 20px;
}

.servicestop .rightsec h3 {
  font-family: var(--fhead);
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 20px;
  display: block;
  padding: 15px 25px;
  background: linear-gradient(135deg, var(--mainclr), var(--subclr));
  border-radius: 8px;
  position: relative;
}

.servicestop .rightsec h3::after {
  content: '';
  display: block;
  width: 140px;
  height: 4px;
  background: linear-gradient(90deg, var(--subclr), var(--mainclr-light));
  margin: 10px auto 0;
  border-radius: 2px;
}

.servicestop .rightsec h5 {
  font-family: var(--fregular);
  font-size: 1.2rem;
  font-weight: 400;
  margin-top: 15px;
  color: #f1f1f1;
}

.servicestop .rightsec h5 i {
  color: var(--subclr);
  font-style: normal;
}

.servicestop .btn-contact {
  font-family: var(--fregular);
  font-size: 1.6rem;
  font-weight: 600;
  color: #fff;
  text-decoration: none;
  background: linear-gradient(135deg, var(--subclr), var(--mainclr));
  box-shadow: 0 6px 14px rgba(0, 0, 0, 0.15);
  transition: all 0.3s ease;
  border: none;
  text-align: center;
  height: 120px;
  width: 100%;
  display: flex;
  border-radius: 10px;
  justify-content: center;
  align-items: center;
}

.servicestop .btn-contact:hover {
  background: linear-gradient(135deg, var(--mainclr), var(--staticclr));
  transform: translateY(-2px);
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.2);
}

.servicestop .speech-bubble {
  background: #2ecc71;
  color: #fff;
  padding: 50px;
  border-radius: 20px;
  position: relative;
  margin-bottom: 50px;
  font-size: 2.2rem;
  text-align: center;
}

.servicestop .speech-bubble::after {
  content: "";
  position: absolute;
  bottom: -20px;
  left: 30px;
  border-width: 20px 20px 0;
  border-style: solid;
  border-color: #2ecc71 transparent;
}

.servicestop .scroll-banner {
  background: #27ae60;
  color: #0b3d0b;
  padding: 15px;
  border-radius: 10px;
  margin-bottom: 20px;
  font-weight: bold;
  font-size: 1.5rem;
}

.servicestop .arrow-box {
  background: #3498db;
  color: #fff;
  padding: 25px;
  position: relative;
  font-size: 1.6rem;
}

.servicestop .arrow-box::after {
  content: "";
  position: absolute;
  right: -20px;
  top: 50%;
  transform: translateY(-50%);
  border-width: 20px 0 20px 20px;
  border-style: solid;
  border-color: transparent transparent transparent #3498db;
}

.service-details {}

.service-details .cntsec {
  display: block;
  margin: 0 auto;
  background: var(--mainclr);
  border-radius: 12px;
}

.service-details h3 {
  font-family: var(--fhead);
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 20px;

  background: #fff;
  color: var(--mainclr);
  display: block;
  padding: 12px 20px;
  border-radius: 12px 12px 0 0;
  position: relative;
}



.service-details p {
  font-family: var(--fregular);
  font-size: 1.1rem;
  line-height: 1.7;
  color: #fff;
  margin-bottom: 0;
  padding: 0 20px 20px;
}

.service-details .imgsec {
  width: 100%;
  height: 311px;
}

.service-details img {
  border-radius: 12px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
  transition: transform 0.3s ease;
  height: 100%;
  width: 100%;
  object-fit: fill;
}



.service-details .row {
  margin-bottom: 50px;
}

.service-models .headmain,
.service-importance .headmain {
  text-align: center;
}


.service-importance,
.service-models,
.outsourcing-comparison,
.servicestop,
.service-details,
.servicesimgsec {
  padding: 60px 0;
  color: #fff;
  background-image: url('../images/tfbg.webp');
  background-size: cover;
  background-attachment: fixed;
  position: relative;
  z-index: 0;
}

.service-importance::before,
.service-models::before,
.outsourcing-comparison::before,
.servicestop::before,
.service-details::before,
.servicesimgsec::before {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  background: rgb(255 255 255 / 10%);
  z-index: 1;
}

.service-importance .container,
.service-models .container,
.outsourcing-comparison .container,
.servicestop .container,
.service-details .container,
.servicesimgsec .container {
  z-index: 2;
  position: relative;
}

.service-models h2,
.service-importance h2 {
  text-align: center;
  font-family: var(--fhead);
  font-size: 2.2rem;
  margin-bottom: 40px;
  background: linear-gradient(135deg, var(--mainclr), var(--subclr));
  display: inline-block;
  padding: 12px 20px;
  border-radius: 8px;
}

.service-importance ul {
  list-style: none;
  padding: 0;
  font-size: 1.2rem;
  display: grid;
  grid-template-columns: repeat(5, 1fr);

  gap: 20px;
}

.service-importance ul li {
  margin-bottom: 12px;
  padding: 12px;
  background: rgb(46 125 50 / 80%);
  border-radius: 6px;
  text-align: center;
}

.service-models h2 {
  text-align: center;
  font-family: var(--fhead);
  font-size: 2.2rem;
  margin-bottom: 40px;
  background: linear-gradient(135deg, var(--mainclr), var(--subclr));
  display: inline-block;
  padding: 12px 20px;
  border-radius: 8px;
}

.model-box {
  background: rgb(46 125 50 / 80%);
  border-radius: 10px;

  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.model-box h3 {
  font-family: var(--fhead);
  font-size: 1.1rem;
  margin-bottom: 12px;
  color: var(--mainclr-light);
  background: #fff;
  padding: 10px;
  border-radius: 10px 10px 0 0;
}

.model-box p {
  font-family: var(--fregular);
  font-size: 1rem;
  line-height: 1.6;
  color: #f1f1f1;
  padding: 20px;
}

.model-box:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

.outsourcing-comparison h2 {
  text-align: center;
  font-family: var(--fhead);
  font-size: 2.2rem;
  margin-bottom: 40px;
  background: linear-gradient(135deg, var(--mainclr), var(--subclr));
  display: inline-block;
  padding: 12px 20px;
  border-radius: 8px;
}

.country-box {
  background: rgba(255, 255, 255, 0.05);
  border-radius: 10px;
  padding: 25px;
  margin-bottom: 20px;
  box-shadow: 0 6px 14px rgba(0, 0, 0, 0.15);
}

.country-box h3 {
  font-family: var(--fhead);
  font-size: 1.8rem;
  margin-bottom: 20px;
  color: var(--mainclr-light);
}

.country-box ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.country-box ul li {
  margin-bottom: 12px;
  font-size: 1.1rem;
  line-height: 1.6;
  color: #f1f1f1;
  padding: 6px 0;
}

.country-box ul li i {
  margin-right: 8px;
  color: var(--subclr);
}

.country-box ul li b {
  color: var(--subclr);
}


.highlight-labor {
  background: linear-gradient(135deg, #c0392b, #f7b7a3);

  border-radius: 6px;
  padding: 10px 12px;
  color: #fff;
}

.highlight-labor i {
  color: #fff;

}

.model-box-container {
  display: grid;
  grid-template-columns: repeat(5, 1fr);

  gap: 20px;
}

.comparison-table {
  background: rgba(255, 255, 255, 0.05);
  color: #f1f1f1;
  border-radius: 10px;
  overflow: hidden;
}

.comparison-table th:nth-child(1),
.comparison-table td:nth-child(1) {
  background: var(--mainclr);
  color: #fff;
}

.comparison-table th:nth-child(3),
.comparison-table td:nth-child(3) {
  background: var(--mainclr);
  color: #fff;
}

.comparison-table td {
  background: var(--subclr);
}

.comparison-table th {
  background: var(--subclr);
  color: #fff;
  text-align: center;
  font-family: var(--fhead);
  font-size: 1.2rem;
}

.comparison-table td {
  padding: 14px;
  vertical-align: middle;
}

.comparison-table td b {
  color: #fff;
}

.highlight-labor td {
  background: linear-gradient(135deg, #c0392b, #f7b7a3);
  color: #fff;
}

/***Our Services***/

/***Contact Us***/
.contact-section {
  background-image: url('../images/Contact.webp');
  background-size: cover;
}

.contact-section .company-info {
  background-color: rgb(255 255 255 / 77%);
  padding: 30px;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  text-align: center;
}

.contact-section .company-info::before {}

.contact-section .company-logo {
  max-width: 200px;
  margin-bottom: 20px;
}

.contact-section .company-name {
  font-family: var(--fhead);
  color: var(--mainclr);
  margin-bottom: 10px;
}

.contact-section .company-address,
.contact-section .company-contact {
  color: var(--staticclr);
  line-height: 1.6;
}

.contact-section .company-contact a {
  color: var(--mainclr);
  text-decoration: none;
  display: block;
  margin: 6px 0;
  transition: color 0.3s;
}

.contact-section .company-contact a:hover {
  color: var(--subclr);
}


.contact-section .contact-form {
  background: #fff;
  padding: 30px;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.contact-section .contact-form h3 {
  font-family: var(--fhead);
  color: var(--mainclr);
  margin-bottom: 20px;
}

.contact-section .btn-submit {
  background: var(--mainclr);
  color: #fff;
  padding: 12px 24px;
  border: none;
  border-radius: 6px;
  font-family: var(--fhead);
  cursor: pointer;
  transition: background 0.3s;
}

.contact-section .btn-submit:hover {
  background: var(--subclr);
}

/***Contact Us***/