body {
  font-family: "Poppins", sans-serif;
  color: #0c0c0c;
  background-color: #ffffff;
}

/* Login Form Styles */
.login-form {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  border-radius: 15px;
  padding: 2rem;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.login-form .form-group {
  margin-bottom: 1.5rem;
}

.login-form label {
  color: #1e3c72;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.login-form .form-control {
  border: 2px solid #e1e8ed;
  border-radius: 8px;
  padding: 12px 15px;
  font-size: 1rem;
  transition: all 0.3s ease;
}

.login-form .form-control:focus {
  border-color: #27B5A7;
  box-shadow: 0 0 0 0.2rem rgba(39, 181, 167, 0.25);
}

.login-form .btn-primary {
  background: linear-gradient(135deg, #27B5A7, #1a8b7f);
  border: none;
  padding: 12px 30px;
  border-radius: 25px;
  font-weight: 600;
  transition: all 0.3s ease;
}

.login-form .btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(39, 181, 167, 0.4);
}

.forgot-password {
  color: #27B5A7;
  text-decoration: none;
  font-size: 0.9rem;
  transition: color 0.3s ease;
}

.forgot-password:hover {
  color: #1a8b7f;
  text-decoration: underline;
}

.register-link {
  color: #27B5A7;
  text-decoration: none;
  font-weight: 600;
  transition: color 0.3s ease;
}

.register-link:hover {
  color: #1a8b7f;
  text-decoration: underline;
}

.custom-control-label {
  color: #666;
  font-size: 0.9rem;
}

.layout_padding {
  padding: 75px 0;
}

.layout_padding2 {
  padding: 45px 0;
}

.layout_padding2-top {
  padding-top: 45px;
}

.layout_padding2-bottom {
  padding-bottom: 45px;
}

.layout_padding-top {
  padding-top: 75px;
}

.layout_padding-bottom {
  padding-bottom: 75px;
}

.heading_container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.heading_container h2 {
  position: relative;
}

.heading_container h2::before {
  content: "";
  position: absolute;
  width: 9px;
  height: 30px;
  top: 14%;
  right: -15px;
  background: -webkit-gradient(linear, left top, right top, from(#fb930a), to(#f5e47b));
  background: linear-gradient(to right, #fb930a, #f5e47b);
}

/*header section*/
.hero_area {
  height: 100vh;
  position: relative;
  background-image: url(../images/hero-bg-3.png);
  background-size: cover;
  background-position: bottom right;
  background-repeat: no-repeat;
}

.sub_page .hero_area {
  height: auto;
  background-position: top right;
}

.hero_area.sub_pages {
  height: auto;
}

.header_section .container-fluid {
  padding-right: 15px;
  padding-left: 15px;
}

.header_section .nav_container {
  margin: 0 auto;
}

.custom_nav-container.navbar-expand-lg .navbar-nav .nav-link {
  padding: 10px 18px;
  color: #111;
  text-align: center;
  font-weight: 500;
  font-size: 16px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  position: relative;
  transition: color 0.2s ease;
  border-radius: 0;
  margin: 0 5px;
  background: transparent;
  box-shadow: none;
  transform: none;
}

.custom_nav-container.navbar-expand-lg .navbar-nav .nav-link:hover {
  color: #000000;
}

.custom_nav-container.navbar-expand-lg .navbar-nav .nav-link::before {
  content: '';
  position: absolute;
  bottom: 4px;
  left: 50%;
  width: 0;
  height: 2px;
  border-radius: 50%;
  background: #fff;
  transition: all 0.3s ease;
  transform: translateX(-50%);
}

.custom_nav-container.navbar-expand-lg .navbar-nav .nav-link:hover::before {
  width: 70%;
}

.custom_nav-container.navbar-expand-lg .navbar-nav .nav-item.active .nav-link {
  color: #000000;
  box-shadow: none;
}

.custom_nav-container.navbar-expand-lg .navbar-nav .nav-item.active .nav-link::before {
  width: 70%;
}

/* Mobile Responsive Slider Styles */
@media (max-width: 768px) {
  .slider_section .carousel-item {
    display: flex;
    flex-direction: column;
  }
  
  .slider_section .row {
    flex-direction: column;
  }
  
  .slider_section .col-md-6 {
    width: 100%;
    order: 2;
  }
  
  .slider_section .col-md-6:last-child {
    order: 1;
  }
  
  .slider_section .detail_box {
    text-align: left;
    padding: 20px 15px;
    order: 2;
  }
  
  .slider_section .img-box {
    text-align: center;
    padding: 20px 0;
    order: 1;
  }
  
  .slider_section .img-box img {
    max-width: 90%;
    height: auto;
  }
  
  .slider_section .detail_box h2 {
    font-size: 18px !important;
    margin-bottom: 10px;
    line-height: 1.2;
  }
  
  .slider_section .detail_box h3 {
    font-size: 20px !important;
    margin-bottom: 15px;
    line-height: 1.2;
  }
  
  .slider_section .detail_box p {
    font-size: 14px;
    line-height: 1.4;
    margin-bottom: 15px;
    text-align: left;
    display: block;
  }
  
  .slider_section .detail_box p.expanded {
    line-clamp: unset;
    -webkit-line-clamp: unset;
    display: block;
  }
  
  .slider_section .detail_box div {
    display: flex;
    justify-content: center;
    gap: 10px;
    flex-wrap: nowrap;
    margin-top: 20px;
  }
  
  .slider_section .detail_box a {
    padding: 8px 20px;
    font-size: 14px;
    margin: 0 5px;
    white-space: nowrap;
  }
  
  .read-more-btn {
    display: none !important;
  }
  
  .read-more-btn:hover {
    color: #764ba2;
    transform: scale(1.1);
  }
  
  .read-more-btn:before {
    content: "↓";
    display: inline-block;
  }
  
  .read-more-btn.expanded:before {
    content: "↑";
  }
  
  /* Fix carousel sliding on mobile */
  .carousel-inner {
    overflow: hidden;
    position: relative;
    width: 100%;
  }
  
  .carousel-item {
    transition: transform 0.6s ease-in-out;
    position: relative;
    display: block;
    width: 100%;
  }
  
  .carousel-item.active {
    display: block;
  }
  
  .carousel-item:not(.active) {
    display: none;
  }
  
  .carousel-item-next,
  .carousel-item-prev {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
  }
  
  .carousel-item-next {
    transform: translateX(100%);
  }
  
  .carousel-item-prev {
    transform: translateX(-100%);
  }
}

a,
a:hover,
a:focus {
  text-decoration: none;
}

a:hover,
a:focus {
  color: initial;
}

.btn,
.btn:focus {
  outline: none !important;
  -webkit-box-shadow: none;
          box-shadow: none;
}

.custom_nav-container .nav_search-btn {
  background-image: url(../images/search-icon.png);
  background-size: 22px;
  background-repeat: no-repeat;
  background-position-y: 7px;
  width: 35px;
  height: 35px;
  padding: 0;
  border: none;
}

.navbar-brand {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
          align-items: center;
}

.brand-logo {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  margin-right: 15px;
  object-fit: cover;
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
}

.brand-main {
  font-size: 28px;
  font-weight: 700;
  color: #191919;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.brand-sub {
  font-size: 14px;
  font-weight: 400;
  color: #666;
  text-transform: capitalize;
}

.custom_nav-container {
  z-index: 99999;
  padding: 5px 0;
}

.custom_nav-container .navbar-toggler {
  outline: none;
}

.custom_nav-container .navbar-toggler .navbar-toggler-icon {
  background-image: url(../images/menu.png);
  background-size: 45px;
}

.quote_btn-container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.quote_btn-container a {
  color: #000000;
  position: relative;
}

.quote_btn-container a .cart_number {
  position: absolute;
  top: 68%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  color: #ffffff;
  font-size: 12px;
}

.quote_btn-container a img {
  width: 20px;
  margin: 0 25px;
}

/*end header section*/
/* slider section */
.slider_section {
  height: calc(100% - 70px);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  position: relative;
}

.slider_section .row {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.slider_section .design-box {
  position: absolute;
  bottom: 0;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  left: 0;
  width: 75px;
}

.slider_section .design-box img {
  width: 100%;
}

.slider_section .slider_number-container {
  position: absolute;
  top: 45%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  right: 4%;
  text-align: center;
  opacity: .6;
}

.slider_section .slider_number-container hr {
  width: 1px;
  height: 50px;
  border: none;
  background-color: #ffffff;
}

.slider_section .slider_number-container .number-box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  color: #ffffff;
  text-transform: uppercase;
}

.slider_section .detail_box h2 {
  margin-bottom: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.slider_section .detail_box h2 span {
  margin-right: 10px;
}

.slider_section .detail_box h2 hr {
  margin: 0;
  border: none;
  width: 55px;
  height: 1px;
  background-color: #000000;
}

.slider_section .detail_box h1 {
  font-weight: bold;
  text-transform: uppercase;
  font-size: 5rem;
  margin-bottom: 30px;
}

.slider_section .detail_box a {
  display: inline-block;
  padding: 8px 40px;
  background-color: #27B5A7;
  border: 1px solid #27a195;
  color: #ffffff;
  border-radius: 0;
  margin: 35px 0;
}

.slider_section .detail_box a:hover {
  background-color: transparent;
  color: #0d0806;
}

.slider_section .img-box img {
  width: 100%;
}

.slider_section .carousel-indicators {
  padding: 0;
  margin: 0;
  right: initial;
  bottom: 22%;
  left: 17%;
}

.slider_section .carousel-indicators li {
  text-indent: 0;
  width: auto;
  height: auto;
  opacity: 1;
  background-color: transparent;
  border: none;
  color: #c0c0c0;
  font-size: 24px;
  display: none;
}

.slider_section .carousel-indicators li.active {
  display: block;
}

.item_section .item_container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding: 40px 0;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.item_section .category-carousel-wrapper {
  overflow: hidden;
  width: 100%;
  max-width: 100%;
  padding: 10px 0 30px;
  position: relative;
  box-sizing: border-box;
}

.item_section .item_container.category-carousel {
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  gap: 20px;
  padding: 30px 10px;
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  will-change: transform;
  -webkit-animation: categoryMarquee 22s linear infinite;
          animation: categoryMarquee 22s linear infinite;
}

.item_section .item_container.category-carousel .box {
  width: clamp(220px, 70vw, 300px);
  margin: 0;
}

.item_section .category-carousel-wrapper:hover .item_container.category-carousel {
  -webkit-animation-play-state: paused;
          animation-play-state: paused;
}

@-webkit-keyframes categoryMarquee {
  0% {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
  100% {
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
  }
}

@keyframes categoryMarquee {
  0% {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
  100% {
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
  }
}

.item_section .item_container .box {
  width: 300px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin: 30px 10px;
  padding: 15px;
  -webkit-box-shadow: 0px 0px 2px 0.5px rgba(0, 0, 0, 0.15);
  box-shadow: 0px 0px 2px 0.5px rgba(0, 0, 0, 0.15);
}

.item_section .item_container.category-carousel .box {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
}

.item_section .item_container .box .img-box {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.item_section .item_container .box .img-box img {
  width: 125px;
}

.item_section .item_container .box h6 {
  color: #fbb534;
  text-transform: uppercase;
}

.item_section .item_container .box h5 {
  text-transform: uppercase;
}

.item_section .item_container .box:hover {
  -webkit-box-shadow: 0px 0px 25px 1px rgba(0, 0, 0, 0.1);
          box-shadow: 0px 0px 25px 1px rgba(0, 0, 0, 0.1);
}

.about_section {
  position: relative;
}

.about_section .design-box {
  position: absolute;
  bottom: 0;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  right: 0;
  width: 75px;
}

.about_section .design-box img {
  width: 100%;
}

.about_section .row {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.about_section .detail-box p {
  margin-top: 35px;
}

.contact_section .contact_card button {
  width: 100%;
  margin-top: 10px;
  border-radius: 12px;
  background-color: #27B5A7;
  border: 1px solid #27a195;
}

.contact_section .contact_card button:hover {
  background-color: #1fa598;
}

.contact_section .contact_info_list {
  display: grid;
  gap: 14px;
}

.contact_section .contact_info_item {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  padding: 12px;
  border-radius: 14px;
  background: rgba(39, 181, 167, 0.06);
  border: 1px solid rgba(39, 181, 167, 0.12);
}

.contact_section .contact_info_icon {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #ffffff;
  border: 1px solid rgba(0, 0, 0, 0.06);
}

.contact_section .contact_info_icon img {
  width: 18px;
  height: 18px;
}

.contact_section .contact_info_text h6 {
  margin: 0;
  font-weight: 700;
  color: #0d0806;
}

.contact_section .contact_info_text p {
  margin: 4px 0 0;
  color: #555;
  font-size: 14px;
  line-height: 1.5;
}

.contact_section .contact_map_card {
  margin-top: 18px;
  padding: 0;
  overflow: hidden;
}

.contact_section .contact_map_card .map_container {
  padding-bottom: 0;
}

.contact_section .contact_map_card iframe {
  min-height: 100px;
}

@media (max-width: 991.98px) {
  .contact_section .contact_card {
    margin-bottom: 16px;
  }

  .contact_section .contact_map_card iframe {
    min-height: 100px;
  }
}

.about_section .detail-box a {
  display: inline-block;
  padding: 8px 40px;
  background-color: #0d0806;
  border: 1px solid #0d0806;
  color: #ffffff;
  border-radius: 0;
  margin-top: 35px;
}

.about_section .detail-box a:hover {
  background-color: transparent;
  color: #0d0806;
}

.about_section .img-box img {
  width: 100%;
}

.price_section {
  background-color: #f8f8f8;
}

.price_section .price_container {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  justify-content: center;
  padding: 40px 0;
  gap: 20px;
}

.price_section .price_container .box {
  width: 100%;
  min-width: 0;
  max-width: none;
  height: auto;
  min-height: 420px;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin: 0;
  padding: 28px 18px 22px 18px;
  text-align: center;
  background-color: #ffffff;
  -webkit-box-shadow: 0px 0px 6px 0 rgba(0, 0, 0, 0.05);
  box-shadow: 0px 0px 6px 0 rgba(0, 0, 0, 0.05);
  border-radius: 14px;
}

.price_section .price_container .box .img-box {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.price_section .price_container .box .img-box img {
  width: 140px;
}

.price_section .price_container .box h6 {
  font-weight: bold;
  font-size: 18px;
}

.price_section .price_container .box .detail-box h5 {
  text-transform: uppercase;
  font-weight: bold;
  font-size: 22px;
}

.price_section .price_container .box .detail-box {
  width: 100%;
}

.price_section .price_container .box .detail-box .product-desc {
  margin: 10px 0 12px;
  color: #555;
  font-size: 14px;
  line-height: 1.45;
}

.price_section .price_container .box .detail-box .product-meta {
  padding-left: 0;
  margin: 0 0 14px;
  list-style: none;
  display: grid;
  grid-template-columns: 1fr;
  gap: 6px;
}

.price_section .price_container .box .detail-box .product-meta li {
  font-size: 13px;
  color: #666;
}

.price_section .price_container .box .detail-box h5 span {
  color: #fbb534;
}

.price_section .price_container .box .detail-box a {
  display: inline-block;
  padding: 8px 18px;
  border: 1px solid #27a195;
  font-weight: bold;
  color: #27B5A7;
  margin-top: 15px;
  border-radius: 10px;
}

.price_section .price_container .box:hover a {
  border-color: #27B5A7;
  color: #27B5A7;
}

.price_section .price_btn {
  display: inline-block;
  padding: 8px 40px;
  background-color: #0d0806;
  border: 1px solid #0d0806;
  color: #ffffff;
  border-radius: 0;
}

.price_section .price_btn:hover {
  background-color: transparent;
  color: #0d0806;
}

/* About page (cards + lists) */
.about_cards_section h2 {
  margin-bottom: 10px;
}

.about_cards_section .price_container {
  padding-top: 22px;
}

.about_cards_section .price_container .box {
  align-items: flex-start;
  text-align: left;
  min-height: unset;
}

.about_cards_section .price_container .box .detail-box {
  width: 100%;
}

.about_cards_section .price_container .box .detail-box p {
  text-align: left;
}

.about_list {
  padding-left: 18px;
  margin: 12px 0 0;
  color: #555;
}

.about_list li {
  margin-bottom: 8px;
  line-height: 1.55;
}

.about_contact_list {
  padding-left: 0;
  list-style: none;
  margin-top: 14px;
}

.about_contact_list li {
  padding: 10px 12px;
  border-radius: 14px;
  background: rgba(39, 181, 167, 0.06);
  border: 1px solid rgba(39, 181, 167, 0.12);
  margin-bottom: 10px;
}

.page_header_section {
  padding: 28px 0 10px;
}

.page_header_inner {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 18px;
  padding: 18px 18px;
  border-radius: 16px;
  background: linear-gradient(135deg, rgba(39, 181, 167, 0.08), rgba(251, 181, 52, 0.08));
  border: 1px solid rgba(0, 0, 0, 0.06);
}

.page_title {
  margin: 0;
  font-size: 30px;
  font-weight: 800;
  color: #0d0806;
  letter-spacing: 0.2px;
}

.page_subtitle {
  margin: 6px 0 0;
  color: #555;
  font-size: 14px;
  line-height: 1.55;
}

.page_breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #666;
  font-size: 13px;
  white-space: nowrap;
}

.page_breadcrumb a {
  color: #27B5A7;
  text-decoration: none;
  font-weight: 600;
}

.page_breadcrumb a:hover {
  text-decoration: underline;
}

.about_side_card {
  padding: 30px;
  border-radius: 16px;
  background: #ffffff;
  border: 1px solid rgba(39, 181, 167, 0.16);
  box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.06);
}

.about_side_card h5 {
  margin: 0;
  font-weight: 800;
  font-size: 16px;
  color: #0d0806;
}

.about_side_list {
  margin-top: 14px;
}

.about_side_note {
  margin-top: 14px;
  padding: 12px;
  border-radius: 14px;
  background: rgba(39, 181, 167, 0.06);
  border: 1px solid rgba(39, 181, 167, 0.12);
  color: #555;
  font-size: 14px;
  line-height: 1.55;
}

.about_kpi_grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-top: 18px;
}

.about_kpi_card {
  padding: 18px;
  border-radius: 16px;
  background: #ffffff;
  border: 1px solid rgba(0, 0, 0, 0.06);
  box-shadow: 0px 0px 18px rgba(0, 0, 0, 0.05);
}

.about_kpi_title {
  color: #666;
  font-size: 13px;
  font-weight: 600;
}

.about_kpi_value {
  margin-top: 8px;
  font-size: 18px;
  font-weight: 800;
  color: #0d0806;
}

.about_kpi_desc {
  margin-top: 6px;
  color: #555;
  font-size: 13px;
  line-height: 1.55;
}

.about_card .detail-box {
  width: 100%;
}

.about_card .detail-box p {
  margin: 10px 0 0;
  color: #555;
  font-size: 14px;
  line-height: 1.55;
  text-align: left;
}

.about_card .detail-box h6 {
  color: #27B5A7;
  text-transform: uppercase;
  letter-spacing: 0.4px;
}

.about_muted_heading {
  margin: 12px 0 0;
  color: #666;
  font-size: 13px;
  font-weight: 600;
}

.mission_block {
  margin-top: 14px;
  padding: 12px;
  border-radius: 14px;
  background: rgba(0, 0, 0, 0.02);
  border: 1px solid rgba(0, 0, 0, 0.06);
}

.mission_title {
  font-weight: 800;
  color: #0d0806;
  font-size: 14px;
  margin-bottom: 8px;
}

.mission_block .about_list {
  margin-top: 0;
}

.price_section .price_container.about_two_col {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.price_section .price_container.about_three_col {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.price_section .price_container .box.about_card_full {
  grid-column: 1 / -1;
  text-align: left;
  align-items: flex-start;
}

.services_kpi_grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  margin-top: 18px;
}

.services_kpi_card {
  padding: 14px;
  border-radius: 14px;
  background: #ffffff;
  border: 1px solid rgba(0, 0, 0, 0.06);
  box-shadow: 0px 0px 18px rgba(0, 0, 0, 0.04);
}

.services_kpi_title {
  font-weight: 800;
  color: #0d0806;
  font-size: 14px;
}

.services_kpi_desc {
  margin-top: 6px;
  color: #555;
  font-size: 13px;
  line-height: 1.55;
}

.services_section_head {
  max-width: 820px;
  margin: 0 auto 22px;
}

.services_section_subtitle {
  margin: 8px auto 0;
  color: #555;
  font-size: 15px;
  line-height: 1.6;
}

.services_features_section {
  background: #ffffff;
}

.services_feature_card {
  height: 100%;
  padding: 18px;
  border-radius: 16px;
  background: linear-gradient(135deg, rgba(39, 181, 167, 0.06), rgba(251, 181, 52, 0.06));
  border: 1px solid rgba(0, 0, 0, 0.06);
  box-shadow: 0px 0px 18px rgba(0, 0, 0, 0.04);
}

.services_feature_title {
  font-weight: 800;
  font-size: 15px;
  color: #0d0806;
}

.services_feature_desc {
  margin-top: 8px;
  color: #555;
  font-size: 14px;
  line-height: 1.6;
}

.services_process_section {
  background: #f8f8f8;
}

.services_process_card {
  height: 100%;
  padding: 18px;
  border-radius: 16px;
  background: #ffffff;
  border: 1px solid rgba(39, 181, 167, 0.16);
  box-shadow: 0px 0px 18px rgba(0, 0, 0, 0.04);
}

.services_step {
  width: 44px;
  height: 44px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 900;
  color: #ffffff;
  background: #27B5A7;
}

.services_process_title {
  margin-top: 12px;
  font-weight: 800;
  color: #0d0806;
  font-size: 15px;
}

.services_process_desc {
  margin-top: 8px;
  color: #555;
  font-size: 14px;
  line-height: 1.6;
}

.services_cta_section {
  background: #ffffff;
}

.services_cta_box {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 22px;
  border-radius: 18px;
  background: linear-gradient(135deg, rgba(39, 181, 167, 0.10), rgba(251, 181, 52, 0.10));
  border: 1px solid rgba(0, 0, 0, 0.06);
}

.services_cta_title {
  margin: 0;
  font-weight: 900;
  font-size: 20px;
  color: #0d0806;
}

.services_cta_desc {
  margin: 10px 0 0;
  color: #555;
  font-size: 14px;
  line-height: 1.6;
}

.services_cta_actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.services_cta_btn {
  display: inline-block;
  padding: 10px 18px;
  border-radius: 12px;
  background-color: #27B5A7;
  border: 1px solid #27a195;
  color: #ffffff;
  font-weight: 700;
}

.services_cta_btn:hover {
  background-color: #1fa598;
  color: #ffffff;
}

.services_cta_btn_outline {
  display: inline-block;
  padding: 10px 18px;
  border-radius: 12px;
  background: transparent;
  border: 1px solid rgba(39, 181, 167, 0.6);
  color: #27B5A7;
  font-weight: 700;
}

.services_cta_btn_outline:hover {
  border-color: #27B5A7;
  color: #27B5A7;
}

.services_faq_section {
  background: #f8f8f8;
}

.services_faq_card {
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid rgba(0, 0, 0, 0.06);
  box-shadow: 0px 0px 18px rgba(0, 0, 0, 0.04);
  margin-bottom: 12px;
}

.services_faq_card .card-header {
  background: #ffffff;
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

.services_faq_btn {
  width: 100%;
  text-align: left;
  color: #0d0806;
  font-weight: 800;
  text-decoration: none;
  padding: 0;
}

.services_faq_btn:hover,
.services_faq_btn:focus {
  text-decoration: none;
  color: #0d0806;
}

.services_faq_card .card-body {
  background: #ffffff;
  color: #555;
  font-size: 14px;
  line-height: 1.6;
}

.contact_extras_section {
  background: #ffffff;
}

.contact_extras_section:nth-of-type(odd) {
  background: #f8f8f8;
}

.contact_info_card {
  height: 100%;
  padding: 18px;
  border-radius: 16px;
  background: linear-gradient(135deg, rgba(39, 181, 167, 0.06), rgba(251, 181, 52, 0.06));
  border: 1px solid rgba(0, 0, 0, 0.06);
  box-shadow: 0px 0px 18px rgba(0, 0, 0, 0.04);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 12px;
}

.contact_info_card_title {
  font-weight: 900;
  font-size: 15px;
  color: #0d0806;
}

.contact_info_card_actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.contact_info_link {
  display: inline-block;
  padding: 9px 14px;
  border-radius: 12px;
  background: #ffffff;
  border: 1px solid rgba(39, 181, 167, 0.35);
  color: #27B5A7;
  font-weight: 800;
  font-size: 13px;
  text-decoration: none;
}

.contact_info_link:hover {
  border-color: rgba(39, 181, 167, 0.6);
  background: rgba(39, 181, 167, 0.06);
  color: #27B5A7;
  text-decoration: none;
}

.contact_bank_card,
.contact_details_card {
  border-radius: 16px;
}

.contact_kv {
  padding: 14px;
  border-radius: 14px;
  background: #ffffff;
  border: 1px solid rgba(0, 0, 0, 0.06);
  box-shadow: 0px 0px 18px rgba(0, 0, 0, 0.03);
}

.contact_k {
  color: #666;
  font-size: 13px;
  font-weight: 800;
}

.contact_v {
  margin-top: 6px;
  color: #0d0806;
  font-size: 14px;
  line-height: 1.55;
  font-weight: 600;
}

.contact_v a {
  color: #27B5A7;
  font-weight: 800;
  text-decoration: none;
}

.contact_v a:hover {
  text-decoration: underline;
}

.contact_muted {
  display: inline-block;
  margin-top: 6px;
  color: #666;
  font-size: 12px;
  font-weight: 600;
}

.jewellery_categories_section {
  background: #ffffff;
}

.jewellery_bestsellers_section {
  background: #f8f8f8;
}

.jewellery_category_card {
  display: block;
  height: 100%;
  padding: 18px;
  border-radius: 16px;
  background: linear-gradient(135deg, rgba(39, 181, 167, 0.06), rgba(251, 181, 52, 0.06));
  border: 1px solid rgba(0, 0, 0, 0.06);
  box-shadow: 0px 0px 18px rgba(0, 0, 0, 0.04);
  text-decoration: none;
}

.jewellery_category_card:hover {
  text-decoration: none;
  box-shadow: 0px 0px 26px rgba(0, 0, 0, 0.07);
}

.jewellery_category_title {
  font-weight: 900;
  font-size: 15px;
  color: #0d0806;
}

.jewellery_category_desc {
  margin-top: 8px;
  color: #555;
  font-size: 14px;
  line-height: 1.6;
}

@media (max-width: 992px) {
  .price_section .price_container.about_three_col {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .page_header_inner {
    align-items: flex-start;
  }

  .about_kpi_grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .services_kpi_grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .services_cta_box {
    align-items: flex-start;
  }

  .contact_info_card {
    padding: 16px;
  }
}

@media (max-width: 576px) {
  .price_section .price_container.about_two_col,
  .price_section .price_container.about_three_col {
    grid-template-columns: 1fr;
  }

  .page_header_inner {
    flex-direction: column;
  }

  .page_title {
    font-size: 24px;
  }

  .page_breadcrumb {
    white-space: normal;
  }

  .about_kpi_grid {
    grid-template-columns: 1fr;
  }

  .services_kpi_grid {
    grid-template-columns: 1fr;
  }

  .services_cta_box {
    flex-direction: column;
  }

  .services_cta_actions {
    width: 100%;
    justify-content: flex-start;
  }

  .contact_info_card_actions {
    gap: 8px;
  }

  .contact_info_link {
    width: 100%;
    text-align: center;
  }

  .contact_kv {
    padding: 12px;
  }

  .item_section .item_container {
    justify-content: center;
  }

  .item_section .item_container .box {
    width: 100%;
    max-width: 360px;
  }

  .item_section .item_container .box .img-box img {
    width: 120px;
  }
}

.ring_section {
  text-align: center;
  position: relative;
}

.ring_section .row {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.ring_section .container {
  -webkit-box-shadow: 0px 0px 56px 1px rgba(0, 0, 0, 0.08);
  box-shadow: 0px 0px 56px 1px rgba(0, 0, 0, 0.08);
}

.ring_section .design-box {
  position: absolute;
  bottom: 0;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  left: 0;
  width: 75px;
}

.ring_section .design-box img {
  width: 100%;
}

.ring_section .ring_container .detail-box h4 {
  text-transform: uppercase;
  color: #fbb534;
}

.ring_section .ring_container .detail-box a {
  display: inline-block;
  padding: 5px 15px;
  border: 1px solid #000000;
  font-weight: bold;
  color: #000000;
  margin-top: 15px;
}

.ring_section .ring_container .img-box img {
  width: 100%;
}

.client_section .heading_container {
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.client_section .secondary_heading {
  text-align: center;
}

.client_section .client_container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  border: 1px solid #fbb534;
  padding: 25px;
  width: 85%;
  margin: 75px auto;
}

.client_section .client_container .client-id {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 45%;
}

.client_section .client_container .client-id .img-box {
  margin-right: 25px;
}

.client_section .client_container .client-id .img-box img {
  width: 100%;
}

.client_section .client_container .client-id h5 {
  font-weight: bold;
}

.client_section .client_container .client-id h6 {
  color: #f6d768;
}

.client_section .client_container .detail-box {
  width: 55%;
}

.client_section .client_container .detail-box p {
  margin: 0;
}

.client_section .carousel-control-prev,
.client_section .carousel-control-next {
  opacity: 1;
}

.client_section .carousel-control-prev {
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
}

.client_section .carousel-control-next {
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}

.client_section .carousel-control-prev-icon,
.client_section .carousel-control-next-icon {
  width: 30px;
  height: 30px;
  background-size: 25px;
}

.client_section .carousel-control-prev-icon {
  background-image: url(../images/prev-black.png);
}

.client_section .carousel-control-prev-icon:hover {
  background-image: url(../images/prev.png);
}

.client_section .carousel-control-next-icon {
  background-image: url(../images/next-black.png);
}

.client_section .carousel-control-next-icon:hover {
  background-image: url(../images/next.png);
}

.contact_section {
  position: relative;
}

.contact_section .design-box {
  position: absolute;
  bottom: 50%;
  -webkit-transform: translateY(50%);
          transform: translateY(50%);
  right: 0;
  width: 75px;
}

.contact_section .design-box img {
  width: 100%;
}

.contact_section h2 {
  margin-bottom: 65px;
}

.contact_section .contact_header {
  max-width: 760px;
  margin: 0 auto 35px;
  text-align: center;
}

.contact_section .contact_header h2 {
  margin-bottom: 10px;
}

.contact_section .contact_header p {
  margin: 0;
  color: #555;
  font-size: 15px;
  line-height: 1.6;
}

.contact_section .contact_grid {
  margin-top: 10px;
}

.contact_section .contact_card {
  background: #ffffff;
  border-radius: 16px;
  padding: 22px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
  border: 1px solid rgba(0, 0, 0, 0.06);
  height: 100%;
}

.contact_section .contact_card_title {
  margin: 0 0 16px;
  font-weight: 700;
  font-size: 18px;
  color: #0d0806;
}

.contact_section form {
  padding-right: 35px;
}

.contact_section .contact_card form {
  padding-right: 0;
}

.contact_section input {
  width: 100%;
  border: none;
  height: 50px;
  margin-bottom: 25px;
  padding-left: 25px;
  background-color: transparent;
  outline: none;
  color: #101010;
  -webkit-box-shadow: 0px 2px 5px 0px rgba(0, 0, 0, 0.16);
  box-shadow: 0px 2px 5px 0px rgba(0, 0, 0, 0.16);
}

.contact_section .contact_card input {
  border-radius: 12px;
  border: 1px solid rgba(0, 0, 0, 0.08);
  box-shadow: none;
  padding: 12px 14px;
  height: 48px;
}

.contact_section .contact_card input.message-box {
  height: 120px;
  padding-top: 14px;
}

.contact_section .contact_card input:focus {
  outline: none;
  border-color: rgba(39, 181, 167, 0.6);
  box-shadow: 0 0 0 0.2rem rgba(39, 181, 167, 0.15);
}

.contact_section input::-webkit-input-placeholder {
  color: #131313;
}

.contact_section input:-ms-input-placeholder {
  color: #131313;
}

.contact_section input::-ms-input-placeholder {
  color: #131313;
}

.contact_section input::placeholder {
  color: #131313;
}

.contact_section input.message-box {
  height: 120px;
}

.contact_section button {
  padding: 12px 45px;
  outline: none;
  border: none;
  border-radius: 30px;
  color: #fff;
  background: -webkit-gradient(linear, left top, left bottom, from(#f5e47b), to(#fb930a));
  background: linear-gradient(to bottom, #f5e47b, #fb930a);
  margin-top: 35px;
}

.contact_section .map_container {
  height: 100%;
  padding-bottom: 110px;
}

.contact_section .map_container .map-responsive {
  height: 100%;
}

.info_section {
  background-color: #363636;
  color: #ffffff;
}

.info_section .info_container .info_logo {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding: 100px 10px 45px 10px;
  background-color: #ffffff;
  width: 200px;
  border-radius: 0 0 50px 50px;
}

.info_section .info_container .info_logo a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.info_section .info_container .info_logo a img {
  width: 50px;
  margin-right: 10px;
}

.info_section .info_container .info_logo a span {
  text-transform: uppercase;
  color: #000000;
  font-size: 28px;
  font-weight: bold;
}

.info_section .info_container .info_contact {
  padding: 115px 10px 45px 10px;
}

.info_section .info_container .info_contact a {
  color: #ffffff;
}

.info_section .info_container .info_contact a img {
  margin-right: 10px;
}

.info_section .info_heading {
  text-transform: uppercase;
  margin: 20px 0;
  position: relative;
}

.info_section .info_heading::before {
  content: "";
  width: 45px;
  height: 5px;
  position: absolute;
  bottom: -8px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  border-radius: 5px;
  background-color: #f8bf46;
}

.info_section .info_form form {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.info_section .info_form form .email_box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.info_section .info_form form label {
  color: #5a5959;
}

.info_section .info_form form input {
  width: 500px;
  border: none;
  background-color: #ffffff;
  outline: none;
  padding: 5px;
}

.info_section .info_form form button {
  padding: 8px 65px;
  outline: none;
  border: none;
  border-radius: 30px;
  color: #fff;
  background: -webkit-gradient(linear, left top, left bottom, from(#f5e47b), to(#fb930a));
  background: linear-gradient(to bottom, #f5e47b, #fb930a);
  margin-top: 35px;
  text-transform: uppercase;
}

.info_section .info_social {
  padding-top: 35px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.info_section .info_social .social_box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin: 15px auto;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.info_section .info_social .social_box img {
  min-width: 10px;
  margin: 0 10px;
}

/* footer section*/
.footer_section {
  background-color: #363636;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  position: relative;
}

.footer_section p {
  border-top: 1px solid #ffffff;
  color: #9c9b9b;
  margin: 0;
  text-align: center;
  padding: 20px 35px;
  margin: 0;
}

.footer_section a {
  color: #9c9b9b;
}

/* New Footer Layout */
.site_footer {
  width: 100%;
  background: #1a786f !important;
  color: #ffffff !important;
  display: block;
}

.site_footer,
.site_footer * {
  box-sizing: border-box;
}

.site_footer a {
  color: inherit;
}

.site_footer .footer_top {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
  gap: 28px;
  padding: 35px 0 30px;
}

.site_footer .footer_col {
  min-width: 0;
}

.site_footer .footer_col {
  transition: transform 0.25s ease, box-shadow 0.25s ease, background-color 0.25s ease, border-color 0.25s ease;
}

.site_footer .footer_col:hover {
  transform: translateY(-4px);
}

.site_footer .footer_logo {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
}

.site_footer .footer_logo img {
  width: 54px;
  height: 54px;
  object-fit: cover;
  border-radius: 8px;
}

.site_footer .footer_brand_name {
  font-weight: 800;
  letter-spacing: 0.2px;
  font-size: 18px;
  color: #37BDAD;
  line-height: 1.1;
}

.site_footer .footer_brand_sub {
  font-weight: 600;
  color: rgba(255, 255, 255, 0.85);
  font-size: 13px;
  margin-top: 3px;
}

.site_footer .footer_about {
  margin: 0;
  color: rgba(255, 255, 255, 0.75);
  font-size: 14px;
  line-height: 1.7;
  max-width: 420px;
}

.site_footer .footer_title {
  font-size: 15px;
  font-weight: 700;
  color: #ffffff;
  margin: 10px 0 14px;
}

.site_footer .footer_links,
.site_footer .footer_contact_list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 10px;
}

.site_footer .footer_links a {
  color: rgba(255, 255, 255, 0.75);
  text-decoration: none;
  font-size: 14px;
  display: inline-block;
  position: relative;
  padding-bottom: 2px;
  transition: color 0.2s ease, transform 0.2s ease;
}

.site_footer .footer_links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  height: 2px;
  width: 0;
  background: rgba(255, 255, 255, 0.9);
  transition: width 0.25s ease, background-color 0.25s ease;
}

.site_footer .footer_links a:hover {
  color: #37BDAD;
  transform: translateX(2px);
}

.site_footer .footer_links a:hover::after {
  width: 100%;
  background: #37BDAD;
}

.site_footer .footer_contact_list li {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 10px;
  border-radius: 12px;
  transition: background-color 0.25s ease, border-color 0.25s ease;
}

.site_footer .footer_contact_list li:hover {
  background: rgba(255, 255, 255, 0.08);
}

.site_footer .footer_contact_list img {
  width: 18px;
  height: 18px;
  filter: brightness(0) invert(1);
  opacity: 0.9;
}

.site_footer .footer_contact_list a {
  color: rgba(255, 255, 255, 0.78);
  text-decoration: none;
  font-size: 14px;
}

.site_footer .footer_contact_list a:hover {
  color: #37BDAD;
}

.site_footer .footer_social {
  display: flex;
  gap: 10px;
  margin-top: 16px;
}

.site_footer .footer_social a {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.22);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s ease;
  background: rgba(255, 255, 255, 0.06);
}

.site_footer .footer_social a:hover {
  border-color: rgba(55, 189, 173, 0.7);
  box-shadow: 0 8px 20px rgba(55, 189, 173, 0.18);
  transform: translateY(-2px);
}

.site_footer .back_to_top:hover {
  border-color: rgba(55, 189, 173, 0.75);
  background: rgba(55, 189, 173, 0.18);
}

.site_footer .footer_social img {
  width: 16px;
  height: 16px;
  filter: brightness(0) invert(1);
  opacity: 0.9;
}

.site_footer .footer_bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  padding: 14px 0;
}

.site_footer .footer_bottom_row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 15px;
}

.site_footer .footer_bottom_row p {
  margin: 0;
  color: rgba(255, 255, 255, 0.7);
  font-size: 13px;
}

.site_footer .footer_bottom_row p a {
  color: #e24a4a;
  text-decoration: none;
}

.site_footer .footer_bottom_row p a:hover {
  text-decoration: underline;
}

.site_footer .back_to_top {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  font-size: 16px;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  border: 1px solid rgba(255, 255, 255, 0.22);
}

.site_footer .back_to_top:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 22px rgba(0, 0, 0, 0.18);
}

@media (max-width: 991.98px) {
  .site_footer .footer_top {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 575.98px) {
  .site_footer .footer_top {
    grid-template-columns: 1fr;
  }

  .site_footer .footer_bottom_row {
    flex-direction: column;
    align-items: flex-start;
  }

  .site_footer .back_to_top {
    align-self: flex-end;
  }
}
/*# sourceMappingURL=style.css.map */