@import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap');

:root {

  /* Colors */

  --theme-color: #000;
  --theme-color-second: #086463;
  --theme-color-third: #d36c2c;

  /* Fonts */

  --heading-font: "Inter", sans-serif;
  --paragraph-font: "Inter", sans-serif;
  --span-font: "Inter", sans-serif;

  /* Shadows */

  --shadow-small: 0 1px 3px rgba(0, 0, 0, 0.1);
  --shadow-base: 0 4px 6px rgba(0, 0, 0, 0.1);
  --shadow-large: 0 10px 20px rgba(0, 0, 0, 0.2);

}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;

}

body {
  margin: 0;
  padding: 0;
  outline: none;
  font-size: 17px;
  color: #1e1e1e;
  background-color: #fff;
  overflow-x: hidden;
  font-family: var(--paragraph-font);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

a {
  color: #0055f1;
  text-decoration: none;
  transition: color 0.3s ease;

}

a:hover {
  text-decoration: none;
  transition: color 0.3s ease;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0 0 15px;
  font-family: var(--heading-font);
}

h1 {
  font-size: 60px;
}

h2 {
  font-size: 50px;
}

.span-font {
  font-family: var(--span-font);
}

p {
  margin: 0;
  line-height: 1.7;
  margin-bottom: 15px;
  font-size: 17px;
  font-weight: 500;
}

ul li {
  margin-bottom: 0px;
}

.img-fluid {
  max-width: 100%;
  height: auto;
  display: block;
  width: 100%;
}



ul {
  list-style: none;
  padding: 0;
}




.bg-cover {
  background-position: center !important;
  background-repeat: no-repeat !important;
  background-size: cover !important;
}

.gap {
  margin-bottom: 30px;
}

section {
  padding: 80px 0px;
}

.form-control:focus {
  border-color: #ced4da;
  outline: 0;
  box-shadow: none;
}

input {
  width: 100%;
  outline: none;
  border: none;
  border: 1px solid #ced4da;
}

textarea {
  width: 100%;
  outline: none;
  border: none;
  border: 1px solid #ced4da;
}

select {
  width: 100%;
  outline: none;
  border: none;
  border: 1px solid #ced4da;
  color: #c1c0bd;
}



.m-backtotop {
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  position: fixed;
  bottom: -50px;
  right: 0;
  width: 50px;
  height: 50px;
  background: var(--theme-color);
  border-radius: 0;
  text-align: center;
  border: 2px solid var(--theme-color-second);
  box-shadow: 0 2px 3px rgba(0, 0, 0, 0.1);
  opacity: 0;
  overflow: hidden;
  color: #fff;
}

.m-backtotop.active {
  bottom: 0;
  opacity: 1;
}

.m-backtotop>div {
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

.m-backtotop>div.arrow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translateY(-50%) translateX(-50%);
  opacity: 1;
  z-index: 999;
}

.m-backtotop>div.text {
  font-size: 0.5rem;
  line-height: 10px;
  text-transform: uppercase;
  font-weight: 900;
  font-family: "Open Sans", sans-serif;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translateY(50%) translateX(-50%);
  opacity: 0;
  margin-top: 1px;
}

.m-backtotop:hover {
  transform: scale(1.1);
  bottom: 0px;
  cursor: pointer;
  background: black;
  box-shadow: 0 10px 5px rgba(0, 0, 0, 0.1);
}

.m-backtotop:hover>div.arrow {
  transform: translateY(-150%) translateX(-50%);
  opacity: 0;
}

.m-backtotop:hover>div.text {
  transform: translateY(-50%) translateX(-50%);
  opacity: 1;
}

/* Progress bar styles */
.m-backtotop .progress-bar {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 0;
  background: var(--theme-color-second);
  transition: height 0.2s ease-in-out;
}

.py-5 {
  padding-top: 50px !important;
  padding-bottom: 50px !important;
}

.py-6 {
  padding-top: 60px !important;
  padding-bottom: 60px !important;
}

.py-7 {
  padding-top: 70px !important;
  padding-bottom: 70px !important;
}

.py-8 {
  padding-top: 80px !important;
  padding-bottom: 80px !important;
}

.py-9 {
  padding-top: 90px !important;
  padding-bottom: 90px !important;
}

.py-10 {
  padding-top: 100px !important;
  padding-bottom: 100px !important;
}

.gap-p p {
  margin-bottom: 0px;
}


/* ---------------------- */


/* ---------------------- */
.small {
  display: none;
}


a.navbar-brand img {
  width: 106px;
}

.header_menu li a:hover {
  color: var(--theme-color-second);
}

.hd_info {
  display: flex;
  align-items: center;
  gap: 10px;

  flex-wrap: wrap;
}

a.comon-btn {
  background: var(--theme-color-second);
  color: #fff;
  display: inline-block;
  font-size: 14px;
  padding: 12px 6px;
  border-radius: 5px;
  width: 14rem;
  text-align: center;
  text-transform: uppercase;
  font-weight: 500;
}

a.comon-btn:hover {
  background: var(--theme-color-third);
  color: #fff;
}

a.btn-2 {
  background-color: var(--theme-color-third);
}

a.btn-2:hover {
  background-color: #1e1e1e;
}

a.btn-white {
  background: #fff;
  color: #1e1e1e;
}

.header_menu li a {
  color: rgb(0, 0, 0);
  font-size: 14px;
  text-transform: capitalize;
  padding: 29px 14px;
  display: inline-block;
  font-weight: 500;
}

.navbar li:hover a {
  color: var(--theme-color-second);
}

.navbar li:hover .dropdown-menu {
  transition: .3s;
  opacity: 1;
  visibility: visible;
  top: 100%;
  transform: rotateX(0deg);
}

@media all and (min-width: 992px) {
  .navbar .dropdown-menu-end {
    right: 0;
    left: auto;
  }

  .navbar li .dropdown-menu {
    display: block;
    opacity: 0;
    visibility: hidden;
    transition: .3s;
    margin-top: 0;
  }

  .navbar li:hover a {
    color: var(--theme-color-second);
  }

  .navbar .dropdown-menu.fade-down {
    top: 80%;
    transform: rotateX(-75deg);
    transform-origin: 0% 0%;
  }

  .navbar .dropdown-menu.fade-up {
    top: 180%;
  }

  .navbar li:hover .dropdown-menu {
    transition: .3s;
    opacity: 1;
    visibility: visible;
    top: 100%;
    transform: rotateX(0deg);
  }
}

ul.dropdown-menu.fade-up li a:hover {
  color: #fff !important;
  background: var(--theme-color-second);
}

#main_header ul.dropdown-menu.fade-up li:last-child {
  border-bottom: 0px;
}

#main_header ul.dropdown-menu.fade-up li {
  border-bottom: 1px solid #c1c0bd;
  margin: 0 0 0 0;
}

ul.dropdown-menu.fade-up li a {
  color: #000 !important;
  font-size: 14px;
  display: block;
  width: 100%;
  padding: 11px 12px;
}

ul.dropdown-menu.fade-up {
  border: none;
  background: #fff;
  padding: 0 0;
  min-width: inherit;
  width: 200px;
  border-radius: 0px;
}

.link-sm-2 i {
  top: -9px !important;
}

.link-sm-2 {
  position: relative;
}


.sticky {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%
}

.sticky-top-1.sticky {
  background: var(--theme-color-second) !important;
  z-index: 9999;
  transition: 0.6s ease-in-out;
}
.sticky-top-1.sticky .header_menu li a {
    color:#fff;
    font-size: 14px;
    text-transform: capitalize;
    padding: 29px 14px;
    display: inline-block;
    font-weight: 500;
  transition: 0.6s ease-in-out;

}
.sticky-top-1.sticky a.navbar-brand img {
    width: 76px;
  transition: 0.6s ease-in-out;

}
/* ===== Top Header ===== */
.top-header {
  background: var(--theme-color-third);
  color: #fff;
  padding: 8px;
}

.top-header ul {
  display: flex;
  font-size: 12px;
}

.top-header .contact-list {
  justify-content: space-between;
}

.top-header a {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #f4f4f4;
  text-decoration: none;
}

.top-header a i {
  font-size: 15px;
}

.top-header .social {
  gap: 15px;
}


/* ===== Navbar ===== */
#main_header .navbar-expand-lg {
  flex-wrap: nowrap;
  justify-content: space-between;
}

#main_header .navbar-expand-lg .navbar-nav {
  flex-direction: row;
  justify-content: space-between;
}


/* ===== Banner ===== */
.banner_sec .heading h1,
.banner_sec .heading h2 {
  font-weight: 800;
  color: var(--theme-color-second);
  text-transform: capitalize;
  margin-bottom: 0;
}

.banner_sec .heading h3 {
  font-size: 30px;
  font-weight: 400;
  margin-bottom: 0;
}

.banner_sec .heading h2 {
  font-size: 60px;
}

.banner_sec .owl-nav img {
  width: 50px;
}

.banner_sec .owl-nav button {
  position: absolute;
  top: 30%;
  transform: translateY(-50%);
}

.banner_sec .owl-prev {
  left: -60px;
}

.banner_sec .owl-next {
  right: -60px;
}

.banner_sec .list-box {
  margin-top: 20px;
}

.banner_sec .list-box .rate {
  display: flex;
  justify-content: center;
  gap: 3px;
  color: orange;
  margin-bottom: 0;
}


/* ===== Packing Box ===== */
.custom_sec_2 .packing-box {
  display: flex;
  align-items: center;
  gap: 10px;
}

.custom_sec_2 .packing-box img {
  width: 50px;
  height: 50px;
  object-fit: contain;
}

.custom_sec_2 .packing-box h6 {
  font-size: 19px;
  font-weight: 600;
  color: var(--theme-color-third);
  margin: 0;
}


/* ===== Home Section 1 ===== */
.home_sec_1 {
  text-align: center;
  color: #fff;
}

.home_sec_1 a.read-more {
  color: #fff;
  text-transform: uppercase;
  text-decoration: underline;
  font-size: 14px;
}

.home_sec_1 .content h3 {
  font-size: 30px;
}

.home_sec_1 .img-box {
  height: 250px;
}

.home_sec_1 .img-box img {
  height: 100%;
  object-fit: contain;
  margin: auto;
}


/* ===== Home Section 3 ===== */
.home_sec_3 .content img {
  width: 80px;
  display: block;
  margin: 0 auto 20px;
}


/* ===== Footer ===== */
.footer {
  background: var(--theme-color-second);
  color: #fff;
  padding: 80px 0;
}

.footer h6 {
  font-size: 19px;
}

.footer .ft-logo {
  display: inline-block;
  margin-bottom: 18px;
}

.footer .ft-logo img {
  width: 150px;
  margin: 0 auto;
}

.footer .ft-link li {
  margin-bottom: 10px;
}

.footer .ft-link li a,
.footer .contact-list li a {
  color: #fff;
  font-size: 15px;
}

.footer .contact-list li {
  margin-bottom: 10px;
}

.footer .contact-list li a {
  display: flex;
  align-items: center;
  gap: 10px;
}

.footer .ft-heading h6 span {
  font-size: 14px;
}

.footer .social {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.footer .social li a {
  color: #fff;
  font-size: 23px;
}

.footer .lis-2 {
  display: flex;
  align-items: center;
  gap: 25px;
  flex-wrap: wrap;
}

/* ===== Contact Page ===== */
.contact-info-content {
    background: #fff;
    padding: 10px;
    width: 100%;
    height: 100%;
    flex-direction: column;
    border-radius: 10px;
    border: 3px solid var(--theme-color-second);
}

/* Icon */
.contact-info-content .icon {
    width: 50px;
    height: 50px;
    background: var(--theme-color-second);
    margin: auto;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 20px;
}

/* Info Text */
.contact-info-content .icon-info {
  margin-top: 20px;
}

.contact-info-content .icon-info h4,
.contact-info-content .icon-info p,
.contact-info-content .icon-info p a {
  color: #000;
  font-weight: 400;
}

.contact-info-content .icon-info h4 {
    margin-bottom: 4px !important;
    font-size: 16px;
    text-transform: uppercase;
    font-weight: 600;
}

.contact-info-content .icon-info p {
  font-size: 16px;
  word-break: break-all;
}
.contact-info-content .icon-info p a {
    font-size: 12px;
}

/* Contact Label */
.contact-info span {
  color: #cb1818;
  font-size: 16px;
  font-weight: 300;
  letter-spacing: 1.6px;
}

/* Form Heading */
.contact-page-form h2 {
  color: #111;
  font-size: 40px;
}

/* Map */
.map {
  line-height: 0;
}

.map iframe {
  width: 100%;
}

/* ===== Form Fields (Merged) ===== */

.contact-info input,
.contact-info select,
.contact-info textarea {
  padding: 15px 8px;
  width: 100%;
  color: #353535;
  background-color: #fff;
  border: 1px solid #666;
  border-radius: 3px;
  font-weight: 400;
  outline: 0;
  box-shadow: none;
}

/* Focus State (Fixed selector) */
.contact-info input:focus,
.contact-info select:focus,
.contact-info textarea:focus {
  border-color: #5F656F;
  color: #5F656F;
}

/* Button */
.contact-info button {
  padding: 15px 0;
  width: 100%;
  background: #000;
  color: #fff;
  border: none;
  border-radius: 3px;
  letter-spacing: 1px;
  text-transform: uppercase;
  font-weight: 400;
  transition: 0.3s ease;
}

.contact-info button:hover {
  opacity: 0.9;
}

/* Checkbox */
.form-check {
  display: flex;
  align-items: baseline;
  padding-left: 0;
}

.form-check input {
  width: 25px;
}

.about_page_1 h2 {
  color: var(--theme-color-second);
}

.home_sec_1 p a {
  color: #fff;
  text-decoration: underline;
}


/* product_sec */
.product_sec .select-cbox {
  display: flex;
  align-items: center;
  gap: 10px;
}

.product_sec .select-cbox input[type="checkbox"] {
  width: 15px;
  height: 15px;
}

.product_sec .select-cbox p.name-label {
  margin-bottom: 0;
  font-size: 14px;
}

.product_sec .accordion-button:not(.collapsed) {
  color: #000000;
  background-color: #fff;
  box-shadow: none;
}

.product_sec .accordion-button {
  border-bottom: 1px solid #000 !important;
  font-size: 18px;
  font-weight: 500;
}

.product_sec .accordion-item {
  border: 1px solid #000;
}

.product_sec .accordion-button:not(.collapsed)::after {
  background-image: none;
  content: '+';
  transform: rotate(0deg);
}

.product_sec .accordion-button::after {
  flex-shrink: 0;
  width: 1.25rem;
  height: 1.25rem;
  margin-left: auto;
  background-image: none;
  content: '+';
  background-repeat: no-repeat;
  background-size: 1.25rem;
  transition: transform .2s ease-in-out;
}

.product_sec .name-label {
  margin-bottom: 0;
  font-size: 14px;
}

.product_sec input,
.product_sec select {
  border: 1px solid #000;
  font-size: 13px;
  padding: 10px;
  color: #000;
}


.custom-pagination {
  display: flex;
  gap: 8px;
  list-style: none;
  padding: 0;
}

.custom-pagination li a {
  display: block;
  padding: 8px 14px;
  border: 2px solid var(--theme-color-second);
  color: var(--theme-color-second);
  border-radius: 6px;
  font-weight: 600;
  text-decoration: none;
  transition: 0.3s ease;
}

/* Active Page */
.custom-pagination li a.active {
  background-color: transparent;
  color: #000000;
  border-color: #000000;
}

/* Hover Effect */
.custom-pagination li a:hover {
  background-color: var(--theme-color-second);
  border-color: var(--theme-color-second);
  color: #fff;
}

/* Prev / Next */
.custom-pagination li a.prev,
.custom-pagination li a.next {
  font-weight: 700;
}

.product_sec .product-box {
  text-align: center;
  padding: 10px;
  border: 2px solid var(--theme-color-second);
  border-radius: 7px;
  background: #f7f6f6;
}

.product_sec .product-box .img-box {
  position: relative;
  margin-bottom: 15px;
  overflow: hidden;
  border-radius: 5px;
}

.product_sec .product-box .img-box .display-hide {
  position: absolute;
  top: 0;
  width: 100%;
  left: 0;
  opacity: 0;
  transition: 0.6s;
}

.product_sec .product-box:hover .img-box .display-hide {

  opacity: 1;
  transition: 0.6s;

}

.product_sec .product-box h4 {
  color: var(--theme-color-third);
  text-transform: uppercase;
  font-weight: 600;
  letter-spacing: 2px;
  margin-bottom: 0;
  font-size: 18px;
}

.product-details h2,
.product-details h1 {
  font-size: 35px;
}


.product-details .mySwiper2 img {
  /* height: 455px; */
  object-fit: contain;
  border: none !important;
}

.product-details .mySwiper img {
  object-fit: contain;

}



.product-details .swiper-button-next::after {
  font-family: swiper-icons;
  font-size: var(--swiper-navigation-size);
  text-transform: none !important;
  letter-spacing: 0;
  font-variant: initial;
  line-height: 1;
  color: var(--theme-color);
}

.product-details .swiper-button-prev::after {
  color: var(--theme-color);
}

.product-details ul {
  list-style-type: disc;
  list-style-position: inside;
}

.product-details ul li {
  margin-bottom: 5px;
}


.product-details form select {

  color: #000000;
  padding: 10px;
  background: #fff;
}

.product-details form select option {
  background-color: var(--theme-color-second);
}

.nab-info .nav-pills .nav-link.active {
  color: #fff;
  background-color: var(--theme-color-second);
}

.nab-info .nav-link {
  background-color: #000;
  color: #fff;
  width: 220px;
  padding: 15px;
  border-radius: 0;
}

.nab-info #pills-tab {
  gap: 18px;
  /* border-bottom: 1px solid aliceblue; */
  /* background: #000; */
  /* justify-content: center; */
  /* width: 63%; */
}

.nab-info #pills-tabContent {
  background: #1e1e1e;
  padding: 35px;
  color: #fff;
}

.nab-info #pills-tabContent ul {
  list-style: disc;
  padding-left: 15px;
}

.nab-info #pills-tabContent li {
  margin-bottom: 10px;
}

.nab-info table {
  border: 1px solid #ececec;
  border-color: #ececec;
  border-spacing: 0;
  margin-bottom: 1em;
  width: 100%;
}

.nab-info .bb {
  border-bottom: 1px solid #ececec;
  padding: 5px !important;

}

.nab-info th,
.nab-info td {
  padding: 10px;
}

.nab-info .pv1 {
  border-right: 1px solid #e1e1e1;
}


/* new css */

.quantity-counter .value {
  border: 1px solid #adadad;
  border-radius: 3px;
  margin: 2px 0;
  padding: 4px;
  width: 50px;
  height: 50px;
  text-align: center;
  -moz-appearance: textfield;
}

.quantity-counter .value::-webkit-outer-spin-button,
.quantity-counter .value::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

.quantity-counter .increment,
.quantity-counter .decrement {
  border: 1px solid #adadad;
  background: transparent;
  cursor: pointer;
  border-radius: 3px;
  background: var(--theme-color-second);
  color: #fff;
  height: 50px;
  width: 50px;
}

.quantity-counter .decrement {
  background-color: #000000;
}


.benifits_se .divider {
  width: 60px;
  height: 3px;
  background-color: #2FB5A3;
  /* Your Brand Teal */
  margin: 0 auto;
}


.benifits_se .intro-text {
  font-size: 1.1rem;
  max-width: 850px;
  margin: 0 auto;
  color: #666;
  line-height: 1.7;
}

.benifits_se .benefit-item h4 {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--theme-color-second);
  border-bottom: 1px solid #eeeeee;
  padding-bottom: 10px;
  margin-bottom: 15px;

}

/* RemixIcon Styling */
.benifits_se .benefit-item i {
  font-size: 1.4rem;
  color: var(--theme-color-forth);
  /* Subtle pop of brand color */
}

.benifits_se.benefit-item p {
  font-size: 0.95rem;
  line-height: 1.6;
  color: #777;
}


.benifits_se .benefit-item {
  height: 100%;
  border: 2px solid var(--theme-color-third);
  padding: 12px;
  border-radius: 6px;
}


#main_header a.navbar-brand {
  margin: 0;
}

#servoce_sec.benifits_se .benefit-item {
    transition: all 0.3s ease;
}

/* Hover on whole card */
#servoce_sec.benifits_se .benefit-item:hover {
    transform: translateY(-6px);
}

/* Heading style */
#servoce_sec.benifits_se .benefit-item h4 {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--theme-color-second);
    border-bottom: 0;
    padding-bottom: 0;
    margin-bottom: 0;
    flex-direction: column;
    gap: 16px;
    transition: all 0.3s ease;
}

/* Icon style */
#servoce_sec.benifits_se .benefit-item i {
    font-size: 65px;
    color: var(--theme-color-forth);
    transition: all 0.3s ease;
}
/* Card base */
.benifits_se .benefit-item {
  height: 100%;
  border: 2px solid var(--theme-color-third);
  padding: 12px;
  border-radius: 6px;
  transition: all 0.3s ease;
  background: #fff;
}

/* Icon Styling */
.benifits_se .benefit-item i {
  font-size: 1.4rem;
  color: var(--theme-color-forth);
  transition: all 0.3s ease;
}

/* Paragraph */
.benifits_se .benefit-item p {
  font-size: 0.95rem;
  line-height: 1.6;
  color: #777;
  transition: all 0.3s ease;
}

/* HOVER EFFECT */
.benifits_se .benefit-item:hover {
  transform: translateY(-6px);
  border-color: var(--theme-color-forth);
  box-shadow: 0 10px 25px rgba(0,0,0,0.08);
}
.contact-info-content {
   
    transition: all 0.3s ease;
}

.contact-info-content:hover {
    transform: translateY(-6px);
    border-color: var(--theme-color-third);
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.08);
}
form.wpcf7-form.init p {
    margin-bottom: 0;
}
.select-cbox input{
	width: 10px;
}