@import url('https://fonts.googleapis.com/css2?family=Manrope:wght@200..800&display=swap');

:root {
  --primary-orange: #ff5000;
  --background-light: #fff;
  --text-dark: #232323;
  --border-radius: 30px;
  --primary-burgundy: #4a5739;
  --primary-gold: #b6934c;
  --secondary-rose: #c37076;
  --accent-cream: #f5e1d1;
  --text-light: #6c4b2c;
}

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

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

body {
  font-family: "Manrope", sans-serif;
  background-color: #fff;
  color: #232323;
  font-weight: 400;
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
}
/* font-lato */
.font-lato {
  font-family: "Abhaya Libre", serif !important;
}
.font-prato {
  font-family: "Prata", serif !important;
}
/* order  */
.order-1 {
  order: 1;
}
.order-2 {
  order: 2;
}
.order-3 {
  order: 3;
}
.order-4 {
  order: 4;
}
.order-5 {
  order: 5;
}
.order-6 {
  order: 6;
}
@media (min-width: 992px) {
  .order-lg-1 {
    order: 1;
  }
  .order-lg-2 {
    order: 2;
  }
  .order-lg-3 {
    order: 3;
  }
  .order-lg-4 {
    order: 4;
  }
  .order-lg-5 {
    order: 5;
  }
  .order-lg-6 {
    order: 6;
  }
}

/* font-size */
/* font-wieght*/
.fw-300 {
  font-weight: 300;
}
.fw-400 {
  font-weight: 400;
}
.fw-500 {
  font-weight: 500;
}
.fw-600 {
  font-weight: 600;
}
.fw-700 {
  font-weight: 700;
}
.fw-800 {
  font-weight: 800;
}
.fw-900 {
  font-weight: 900;
}

/* color  */
.text-color-x-red {
  color: #752e42 !important;
}
.text-color-xs-red {
  color: #4a5739 !important;
}
.text-color-d-red {
  color: #c37076 !important;
}
.text-color-gray {
  color: #78716c !important;
}
.text-color-yellow {
  color: #eac7ae !important;
}
/* bg */
.bg-l-offwhite {
  background: #f6f0ec;
}
.bg-red {
  background: #4a5739 !important;
}
.bg-red-gradient {
  background: linear-gradient(270deg, #db587d 0%, #4a5739 100%);
}
.bg-yellow-gradient {
  background: linear-gradient(
    270deg,
    rgba(255, 215, 0, 0.43) 0%,
    rgba(153, 129, 0, 0.43) 100%
  );
}
.text-justify {
  text-align: justify;
}
.l-h-36 {
  line-height: 36px;
}
/* btn */
.btn-border-red {
 padding: 10px 24px;
    font-weight: 700;
    background: #ffd187;
    border-radius: 58px;
    font-size: 0.875rem;
    letter-spacing: 0.6px;
    transition: all 0.35s 
cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    height: auto;
    min-height: 44px;
    color: #000000 !important;
    text-decoration: none;
    border: 2px solid #93774014;
    box-shadow: 0 4px 12px rgba(117, 47, 67, 0.2);
}

/* .btn-border-red::before {
  content: "";
  position: absolute;
  bottom: -3px;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 3px;
  background: linear-gradient(90deg, #c37076 0%, #b6934c 50%, #c37076 100%);
  transition: width 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  border-radius: 2px;
  box-shadow: 0 3px 10px rgba(195, 112, 118, 0.35);
} */

.btn-border-red::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 8px;
  background: linear-gradient(
    135deg,
    transparent 0%,
    rgba(182, 147, 76, 0) 100%
  );
  opacity: 0;
  transition: opacity 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  pointer-events: none;
}

.btn-border-red:hover {
  color: #fff !important;
  background: #4a5739;
  border-color: #eac7ae;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
  transform: translateY(-3px);
  letter-spacing: 1px;
  box-shadow: 0 8px 24px rgba(117, 47, 67, 0.35);
}

.btn-border-red:hover::before {
  width: 80%;
  box-shadow: 0 4px 16px rgba(195, 112, 118, 0.5);
}

.btn-border-red:hover::after {
  opacity: 1;
}

.btn-border-red:active {
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(117, 47, 67, 0.25);
}

.btn-border-red img {
  transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1), filter 0.35s ease;
  width: 16px;
  height: 16px;
  filter: brightness(0.95);
}

.btn-border-red:hover img {
  transform: rotate(45deg) translateX(2px);
  filter: brightness(1.1);
}

/* Focus state for accessibility */
.btn-border-red:focus {
  outline: none;
  box-shadow: 0 8px 24px rgba(117, 47, 67, 0.35),
    0 0 0 3px rgba(182, 147, 76, 0.5);
}

/* Text decoration enhancement */
.btn-border-red span {
  position: relative;
  z-index: 1;
}

/* Primary Button Style */
.btn-primary-gold {
  background: linear-gradient(135deg, #b6934c 0%, #8a6f3d 100%);
  color: #fff !important;
  padding: 0.875rem 1.75rem;
  border: none;
  border-radius: 8px;
  font-weight: 600;
  font-size: 0.9375rem;
  letter-spacing: 0.5px;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 4px 15px rgba(182, 147, 76, 0.25);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  position: relative;
  overflow: hidden;
}

.btn-primary-gold::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.2),
    transparent
  );
  transition: left 0.5s ease;
}

.btn-primary-gold:hover {
  background: linear-gradient(135deg, #8a6f3d 0%, #6d5530 100%);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(182, 147, 76, 0.35);
  color: #fff !important;
}

.btn-primary-gold:hover::before {
  left: 100%;
}

.btn-primary-gold:active {
  transform: translateY(0);
  box-shadow: 0 2px 8px rgba(182, 147, 76, 0.2);
}

/* Secondary Button Style */
.btn-secondary-red {
  background: linear-gradient(135deg, #b6934c 0%, #8a6f3d 100%);
  color: #fff !important;
  padding: 0.875rem 1.75rem;
  border: none;
  border-radius: 8px;
  font-weight: 600;
  font-size: 0.9375rem;
  letter-spacing: 0.5px;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 4px 15px rgba(195, 112, 118, 0.25);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  position: relative;
  overflow: hidden;
}

.btn-secondary-red::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.2),
    transparent
  );
  transition: left 0.5s ease;
}

.btn-secondary-red:hover {
  background: linear-gradient(135deg, #4a5739 0%, #5a2335 100%);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(195, 112, 118, 0.35);
  color: #fff !important;
}

.btn-secondary-red:hover::before {
  left: 100%;
}

.btn-secondary-red:active {
  transform: translateY(0);
  box-shadow: 0 2px 8px rgba(195, 112, 118, 0.2);
}

/* Outline Button Style */
.btn-outline {
  background: transparent;
  border: 2px solid #b6934c;
  color: #b6934c !important;
  padding: 0.75rem 1.5rem;
  border-radius: 8px;
  font-weight: 600;
  font-size: 0.9375rem;
  letter-spacing: 0.5px;
  transition: all 0.3s ease;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  position: relative;
}

.btn-outline::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #b6934c;
  z-index: -1;
  transition: all 0.3s ease;
  border-radius: 6px;
}

.btn-outline:hover {
  color: #fff !important;
  border-color: #8a6f3d;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(182, 147, 76, 0.25);
}

.btn-outline:hover::before {
  transform: scaleX(1);
}

/* Small Button Style */
.btn-sm-custom {
  padding: 0.5rem 1rem;
  font-size: 0.8125rem;
  border-radius: 6px;
}

/* Large Button Style */
.btn-lg-custom {
  padding: 1rem 2rem;
  font-size: 1rem;
  border-radius: 10px;
}

/* Button Group */
.btn-group-custom {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

/* Responsive Button Styles */
@media (max-width: 768px) {
  .btn-primary-gold,
  .btn-secondary-red,
  .btn-outline {
    padding: 0.75rem 1.25rem;
    font-size: 0.875rem;
  }

  .btn-border-red {
    /* padding: 0.5rem 0 !important; */
    font-size: 0.8125rem;
  }
}

@media (max-width: 576px) {
  .btn-primary-gold,
  .btn-secondary-red {
    padding: 0.625rem 1rem;
    font-size: 0.8125rem;
    width: 100%;
    justify-content: center;
  }

  .btn-outline {
    padding: 0.625rem 1rem;
    font-size: 0.8125rem;
    width: 100%;
    justify-content: center;
  }

  .btn-group-custom {
    flex-direction: column;
    gap: 0.75rem;
  }
}
.justify-items-center {
  justify-items: center;
}
@media (min-width: 992px) {
  .justify-items-lg-sart {
    justify-items: start;
  }
}
section {
  position: relative;
  padding: 60px 0px;
}

@media (max-width: 992px) {
  section {
    padding-top: 40px;
    padding-bottom: 40px;
  }
}
@media (max-width: 567px) {
  section {
    padding-top: 30px;
    padding-bottom: 30px;
  }
}
/* readmore */
.read-more {
  display: inline-block;
  white-space: nowrap;
  text-decoration: none;
  font-weight: bold;
  font-size: 14px;
  color: #298fc2;
}
.read-more:hover {
  color: #298fc2;
}
/* url-primary */
.url-primary {
  position: absolute;
  cursor: pointer;
  z-index: 1;
  inset: 0;
}

/* header */
.header {
  position: sticky;
  top: 0;
  z-index: 1100;
}
.login-btn{
  display: inline-block;
  padding: 8px 16px ;
  border-radius: 30px;
  background: #ffd187;
  color: #000;
  text-decoration: none;
  text-transform: uppercase;
  font-weight: 600;
}
.header .header-top {
  color: #fff;
  background: #3D482E;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
.header .header-top .form-select {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  border: 1px solid #555;
  border-radius: 4px;
  background-image: linear-gradient(45deg, transparent 50%, white 50%),
    linear-gradient(135deg, white 50%, transparent 50%);
  background-position: calc(100% - 15px) center, calc(100% - 10px) center;
  background-size: 5px 5px, 5px 5px;
  background-repeat: no-repeat;
  padding-right: 30px;
  background-color: transparent;
  color: #fff;
  border: 0px;
  width: auto;
  justify-self: end;
}
.header .header-top .form-select:focus {
  border: 0px;
  outline: none;
  box-shadow: none;
}
.header .header-top .form-select option {
  color: #222;
}
.header .header-bottom {
  padding: 15px 0px;
  background: #4a5739;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
}
.header .header-bottom .logo {
  max-height: 60px;
}
/* menu-bar */
.header .menu-bar .menu {
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
}
.header .menu-bar .menu .link-item {
  display: inline-block;
  text-align: left;
}
.header .menu-bar .menu .link-item .link {
  width: 100%;
  display: inline-block;
  text-decoration: none;
  /*text-transform: uppercase;*/
  padding: 10px 15px;
  font-size: 16px;
  font-weight: 600;
  transition: all 0.3s;
  color: #fff;
  position: relative;
  letter-spacing: 0.8px;
}
.header .menu-bar .menu .link-item .link.active {
  color: #eac7ae;
  font-weight: 800;
  /*border-bottom: 2px solid #752f46;*/
}
.header .menu-bar .menu .link-item .link:hover {
  transition: all 0.3s;
  font-weight: 800;
  color: #eac7ae;
}
@media (min-width: 992px) and (max-width: 1199px) {
  .header .menu-bar .menu {
    /* margin-right: 110px; */
    margin-right: 10px;
  }
  .header .menu-bar .menu .link-item .link {
    padding-left: 9px;
    padding-right: 9px;
    padding-bottom: 18px;
    font-size: 14px;
  }
}
@media (max-width: 991px) {
  .header .header-bottom .logo {
    max-width: 70px;
  }
  .header .menu-bar {
    position: fixed;
    z-index: 101;
    top: 0;
    background-color: #fff;
    padding-top: 70px;
    width: 300px;
    height: 100%;
    overflow-y: auto;
    overflow-x: hidden;
    /**/
    left: -300px;
    -webkit-transition: left 0.4s ease-in-out;
    -moz-transition: left 0.4s ease-in-out;
    -ms-transition: left 0.4s ease-in-out;
    -o-transition: left 0.4s ease-in-out;
    transition: left 0.4s ease-in-out;
  }
  .open-menu .header .menu-bar {
    left: 0;
            background: #4a5739;
  }
  /*
.open-menu .header .menu-bar .menu {
    padding-top: 60px;}*/
  .header .menu-bar .menu .link-item {
    margin-left: 0;
    display: block;
  }
  .header .menu-bar .menu .link-item .link {
    padding: 15px 30px;
    color: #fff;
  }
}
/* header-bg-transparent */
/* @media (min-width: 992px) {
body:not(.specific_scroll) .header-bg-transparent header .menu-bar .menu .link-item .link {
    color: #fff;}
} */

/* menu-outside */
body:not(.open-menu) .header .menu-outside {
  display: none;
}
@media (max-width: 991px) {
  .open-menu .header .menu-outside {
    background: #00000096;
    position: fixed;
    z-index: 100;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
  }
}

/* dropdown */
/* dropdown-toggle */
.header .menu .dropdown-toggle {
  margin-top: -4px;
}
.header .menu .dropdown-toggle::after {
  border: 0;
  font-family: FontAwesome;
  content: "\f107";
  position: relative;
  left: 5px;
  top: 3px;
  display: none;
}
/* dropdown-menu */
.header .menu .dropdown-menu {
  border: none;
  min-width: 200px;
  border-radius: 0;
  padding: 0;
  box-shadow: 3px 2px 12px #0000002e;
}
.header .menu .dropdown-menu .dropdown-item {
  background-color: transparent;
  position: relative;
  font-size: 12px;
  padding: 13px 25px;
  color: #727272;
}
.header .menu .dropdown-menu .dropdown-item.active {
  color: #3db166 !important;
}
.header .menu .dropdown-menu li:not(:last-of-type) .dropdown-item {
  border-bottom: 1px solid #efefef;
}
.header .menu .dropdown-menu .dropdown-item:hover {
  color: #3db166 !important;
}

/* top-nav */
@media (min-width: 992px) {
  .header .header-bottom .top-nav {
    display: none;
  }
}
/*.header-bottom{*/
/*    height: 78px;*/
/*}*/
/* menu-toggle */
.header .menu-toggle {
  position: absolute;
  z-index: 10;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  left: 15px;
  background-color: transparent;
  border: none;
  padding: 0;
  width: 32px;
  height: 22px;
}
.header .menu-toggle span {
  background-color: #fff;
  display: block;
  position: relative;
  width: 70%;
  height: 1.5px;
  float: right;
  border-radius: 25px;
}
.header .menu-toggle span:nth-of-type(1) {
  width: 80%;
  height: 1.5;
  top: -7px;
}
.header .menu-toggle span:nth-of-type(3) {
  width: 80%;
  top: 6px;
}
@media (min-width: 992px) {
  .header .menu-toggle {
    display: none;
  }
}
/* header-bg-transparent */
/* body:not(.specific_scroll) .header-bg-transparent .header .menu-toggle span {
    background-color: #000;} */

/* close-btn */
.header .menu-bar .close-btn {
  top: 10px;
  right: 15px;
}
@media (max-width: 991px) {
  .close-btn:before,
  .close-btn:after {
    position: absolute;
    left: 12px;
    top: 5px;
    content: " ";
    height: 100%;
    width: 2px;
    background-color: #fff;
  }
  .close-btn:after {
    transform: rotate(-45deg);
  }
  .close-btn:before {
    transform: rotate(45deg);
  }
  .close-btn {
    position: absolute;
    width: 22px;
    height: 22px;
    opacity: 0.3;
    cursor: pointer;
  }
}
@media (min-width: 992px) {
  .header .menu-bar .close-btn {
    display: none;
  }
}

/* expand-search */
.header-bottom .dropdown-menu {
  margin-top: 15px !important;
}
.header-bottom .dropdown-toggle::after {
  display: none;
}
.header .expand-search {
  width: 220px;
}
.header .expand-search input {
  color: #192f59;
  border-color: #192f59;
  height: 30px;
  padding: 5px 30px 5px 10px;
  border-radius: 50px;
  font-size: 11px;
}
.header .expand-search input:focus {
  border-color: #192f59;
  box-shadow: none;
}
/* placeholder */
.header .expand-search .btn {
  position: absolute;
  top: 14px;
  right: 8px;
  color: #192f59;
  padding: 3px 8px;
}
.header .expand-search .btn img {
  height: 14px;
}
@media (max-width: 991px) {
  .header .expand-search {
    right: 61px;
    bottom: -53px;
  }
}
@media (max-width: 575px) {
  .header .expand-search,
  .header .expand-search.focus {
    position: initial;
    width: 190px;
  }
}
/* login */

#login_modal .login-card {
  position: relative;
  width: 100%;
}
#login_modal .signin-form {
  max-width: 100%;
  padding: 0;
  border-radius: 10px;
  box-shadow: 0 0.4rem 0.8rem rgba(0, 0, 0, 0.15) !important;
  animation: fadeIn 1s ease-in-out;
  width: 100%;
}
#login_modal .form {
  padding: 25px 30px;
}
#login_modal .logo {
  padding: 15px 20px;
}
#login_modal .logo img {
  width: 100px;
  height: auto;
}
@media (max-width: 767px) {
  #login_modal .logo {
    padding: 50px 0px;
  }
}
#login_modal h2 {
  text-align: center;
  margin-bottom: 1.5rem;
  font-size: 1.8rem;
  color: #4a5739;
  font-weight: 700;
}
#login_modal .input-group {
  margin-bottom: 1rem;
}
#login_modal .input-group label {
  display: block;
  font-size: 1rem;
  color: #4a5739;
  margin-bottom: 0.5rem;
}

#login_modal .input-group input {
  width: 100%;
  padding: 0.5rem;
  border: 1px solid #ddd;
  border-radius: 5px;
  font-size: 1rem;
  transition: border 0.3s;
}
#login_modal .input-group input:focus {
  border: 1px solid #333;
  outline: none;
}
#login_modal .modal-footer button {
  width: fit-content;
  padding: 0.75rem 1.75rem;
  border: none;
  border-radius: 5px;
  color: #ffffff;
  background-color: #4a5739;
  font-size: 1rem;
  cursor: pointer;
}

.login_page {
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
}
.login_page .login-card {
  position: relative;
  width: 100%;
}
.login_page .signin-form {
  max-width: 100%;
  padding: 0;
  border-radius: 10px;
  box-shadow: 0 0.4rem 0.8rem rgba(0, 0, 0, 0.15) !important;
  animation: fadeIn 0.3s ease-in-out;
  width: 100%;
  background: #4a5739;
}
.login_page .form {
  padding: 25px 30px;
}
.login_page .logo {
  padding: 15px 20px;
}
.login_page .logo img {
  width: 130px;
  height: auto;
}
@media (max-width: 767px) {
  .login_page .logo {
    padding: 50px 0px;
  }
}
.login_page h2 {
  text-align: left;
  margin-bottom: 1.5rem;
  font-size: 1.8rem;
  color: #333;
  font-weight: 700;
}
.login_page .input-group {
  margin-bottom: 1rem;
}
.login_page .input-group label {
  display: block;
  font-size: 1rem;
  color: #333;
  margin-bottom: 0.5rem;
}

.login_page .input-group input {
  width: 100%;
  padding: 0.5rem;
  border: 1px solid #ddd;
  border-radius: 5px;
  font-size: 1rem;
  transition: border 0.3s;
}
.login_page .input-group input:focus {
  border: 1px solid #333;
  outline: none;
}
.login_page button {
  width: fit-content;
  padding: 0.75rem 1.75rem;
  border: none;
  border-radius: 5px;
  background: #752e42;
  color: white;
  font-size: 1rem;
  cursor: pointer;
}
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
/* / login  */

/* home page  */
.home_banner_sec img {
  width: 100%;
  height: calc(100vh - 209.9px);
  min-height: 80vh;
  object-position: top;
  object-fit: cover;
}
.home_about_sec {
  background: linear-gradient(135deg, #fef9f2 0%, #f5e1d1 50%, #fef9f2 100%);
  padding: 4rem 0;
  position: relative;
  /* overflow: hidden; */
}

.home_about_sec::before {
  content: "";
  position: absolute;
  top: -30%;
  left: -10%;
  width: 400px;
  height: 400px;
  background: radial-gradient(
    circle,
    rgba(182, 147, 76, 0.08) 0%,
    transparent 70%
  );
  border-radius: 50%;
  z-index: 0;
}

.home_about_sec::after {
  content: "";
  position: absolute;
  bottom: -20%;
  right: -5%;
  width: 350px;
  height: 350px;
  background: radial-gradient(
    circle,
    rgba(195, 112, 118, 0.08) 0%,
    transparent 70%
  );
  border-radius: 50%;
  z-index: 0;
}

.home_about_sec > .container {
  position: relative;
  z-index: 1;
}

.home_about_sec .img-card {
  aspect-ratio: 646 / 536;
  border-radius: 16px;
  width: 100%;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.1);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.home_about_sec .img-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
}

.home_about_sec .img-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 16px;
}

.home_about_sec h1 {
  font-size: clamp(32px, 5vw, 48px);
  font-weight: 500;
  color: #000;
  margin-bottom: 1rem;
  letter-spacing: -0.5px;
  font-family: "Prata", serif;
}

.home_about_sec h2 {
  font-size: clamp(16px, 2vw, 20px);
  font-weight: 500;
  color: #b6934c;
  margin-bottom: 1.5rem;
  letter-spacing: 0.5px;
}

.home_about_sec a {
  font-size: 15px;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.section-title {
  font-size: clamp(32px, 4vw, 40px);
  font-weight: 500;
  color: #4a5739;
  font-family: "Prata", serif;
  letter-spacing: -0.5px;
  position: relative;
  display: inline-block;
  margin-bottom: 1.5rem;
}

.section-title::after {
  content: "";
  position: absolute;
  bottom: -8px;
  left: 0;
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, #b6934c 0%, #8a6f3d 100%);
  border-radius: 2px;
}

.shop_by_trend_sec .img-card {
  aspect-ratio: 645 / 375;
  width: 100%;
  border-radius: 14px;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.shop_by_trend_sec .img-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 14px;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.shop_by_trend_sec .img-card:hover {
  transform: scale(1.05);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.12);
}

.perfect_match_sec {
  padding: 3rem 0;
}

.perfect_match_sec .pro-card:hover .img-card img {
  transform: scale(1.1);
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.perfect_match_sec .pro-card .img-card {
  width: 100%;
  border-radius: 14px;
  aspect-ratio: 400 / 400;
  overflow: hidden;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.perfect_match_sec .pro-card:hover .img-card {
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.15);
}

.perfect_match_sec .pro-card .img-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.perfect_match_sec .pro-card .cont {
  font-size: clamp(18px, 2vw, 24px);
  font-weight: 600;
  letter-spacing: 0.3px;
  margin-top: 1rem;
  color: #232323;
}
.video_sec {
  background: linear-gradient(135deg, #f5e1d1 0%, #fef9f2 50%, #f5e1d1 100%);
  padding: 3rem 0;
  position: relative;
}

.video_sec iframe {
  width: 100%;
  height: 100%;
  min-height: 500px;
  object-fit: cover;
  border-radius: 16px;
  box-shadow: 0 16px 50px rgba(0, 0, 0, 0.15);
}

.curated_sec {
  padding: 3rem 0;
}

.curated_sec .sub-title {
  color: #b6934c;
  font-size: clamp(16px, 2vw, 22px);
  font-weight: 500;
  letter-spacing: 0.5px;
  margin-top: 0.5rem;
}
.product-card {
  /*border: 1px solid #b5b5b5;*/
  padding: 15px;
  border-radius: 10px;
  background: #fff;
}

.curated_sec .product-card .img-card {
  width: 100%;
  aspect-ratio: 400 / 400;
  border-radius: 14px;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  overflow: hidden;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
}

.curated_sec .product-card:hover .img-card {
  transform: translateY(-8px);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.15);
}

.curated_sec .product-card .img-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.curated_sec .product-card:hover .img-card img {
  transform: scale(1.08);
}

.curated_sec .product-card .cont {
  font-size: clamp(18px, 2vw, 24px);
  font-weight: 600;
  letter-spacing: 0.3px;
  margin-top: 1.25rem;
  color: #232323;
}
.invest_sec {
  background: linear-gradient(135deg, #4a5739 0%, #60704b 50%, #4a5739 100%);
  padding: 4rem 0;
  position: relative;
  overflow: hidden;
}

.invest_sec::before {
  content: "";
  position: absolute;
  top: -50%;
  right: -20%;
  width: 500px;
  height: 500px;
  background: radial-gradient(
    circle,
    rgba(234, 199, 174, 0.1) 0%,
    transparent 70%
  );
  border-radius: 50%;
  z-index: 0;
}

.invest_sec > .container {
  position: relative;
  z-index: 1;
}

.invest_sec .title-text {
  color: #eac7ae;
  font-size: clamp(28px, 4vw, 40px);
  font-weight: 700;
  font-family: "Prata", serif;
  letter-spacing: -0.5px;
  margin-bottom: 1.25rem;
  line-height: 1.2;
}

.invest_sec .text-main {
  color: #eac7ae;
  font-size: clamp(17px, 2vw, 20px);
  font-weight: 400;
  line-height: 1.8;
  opacity: 0.95;
  margin-bottom: 1.5rem;
}

.invest_sec .text-down {
  color: #eac7ae;
  font-size: clamp(14px, 2vw, 18px);
  font-weight: 500;
  letter-spacing: 0.3px;
}

.invest_sec img {
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.invest_sec img:hover {
  transform: scale(1.05);
}
/*  */
.home_branch_sec {
  padding: 3rem 0;
}

/* contact - options section */
.contact_options_sec { padding-top: 30px; padding-bottom: 30px; }
.contact_options_sec .opt-card{
  background: linear-gradient(180deg, #fff8ec 0%, #f4f7ff 100%);
  border-radius: 16px;
  padding: 24px;
  /* border: 1px solid #eee6ff; */
  box-shadow: 0 10px 28px rgba(17,17,17,.06);
}
.contact_options_sec .opt-icon{ 
  width: 52px; height: 52px; border-radius: 12px; display:flex; align-items:center; justify-content:center; 
  background: #fff; color:#b66f6f; box-shadow:0 6px 16px rgba(0,0,0,.06); margin-bottom: 12px;
}
.contact_options_sec .opt-icon i{ font-size: 22px; color:#4a5739; }
.contact_options_sec .opt-title{  font-size: 25px; color:#232323; margin: 5px 0 12px 0px; font-weight: 600; }
.contact_options_sec .opt-sub{ color:#6b7280; font-size: 14px; margin-bottom: 10px; }
.contact_options_sec .opt-list{ list-style:none; padding-left:0; margin:0; }
.contact_options_sec .opt-list li{ display:flex; align-items:center; gap:8px; padding:6px 0; color:#232323; }
.contact_options_sec .opt-list li i{ color:#b6934c; }
.contact_options_sec .opt-list a{ color:#4a5739; text-decoration:none; }
.contact_options_sec .opt-list a:hover{ text-decoration: underline; }
.contact_options_sec .opt-list .or{ color:#9ca3af; font-size:12px; padding:2px 0; }
.contact_options_sec .opt-list .sep{ height:1px; width:100%; background:#eaeaea; margin:6px 0; }
.contact_options_sec .opt-office .office-name{ font-weight:700; color:#232323; }
.contact_options_sec .opt-office .office-addr{ color:#6b7280; font-size:14px; }
.contact_options_sec .opt-office .divider{ height:1px; background:#eaeaea; margin:10px 0; }
@media (max-width: 575.98px){ .contact_options_sec { padding-top: 20px; padding-bottom: 20px; } .contact_options_sec .opt-card{ padding:18px; } }

/* branches page */
.branches_list_sec{ padding: 40px 0; }
.branches_list_sec .branch-card{ background:#fff; border-radius:14px; padding:14px; box-shadow:0 8px 24px rgba(0,0,0,.06); transition: transform .2s ease, box-shadow .2s ease; }
.branches_list_sec .branch-card:hover{ transform: translateY(-4px); box-shadow:0 12px 32px rgba(0,0,0,.1); }
.branches_list_sec .branch-card .img-card{ aspect-ratio: 400 / 260; overflow:hidden; border-radius:10px; }
.branches_list_sec .branch-card .img-card img{ width:100%; height:100%; object-fit:cover; transition: transform .35s ease; border-radius:10px; }
.branches_list_sec .branch-card:hover .img-card img{ transform: scale(1.06); }
.branches_list_sec .branch-card .meta{ padding:14px 6px 4px; }
.branches_list_sec .branch-card .meta .name{ font-weight:700; color:#232323; font-size:18px; margin-bottom:4px; }
.branches_list_sec .branch-card .meta .location{ color:#6b7280; font-size:14px; display:flex; align-items:center; gap:6px; margin-bottom:10px; }
.branches_list_sec .branch-card .view-btn{ margin-top:6px; }
/* about - promise section */
.promise_sec {
  background: #f6f0ec;
}
.promise_sec .promise-card {
 
}
.promise_sec .text-title {
  /* font-family: "Prata", serif; */
  color: #4a5739;
  font-size: clamp(20px, 2.2vw, 26px);
  font-weight: 600;
}
.promise_sec .promise-list {
  margin: 0;
  padding-left: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.promise_sec .promise-list li {
  color: #232323;
  line-height: 1.7;
  display: flex;
  align-items: flex-start;
  gap: 10px;
  list-style: none;
}
/* .promise_sec .promise-list li .ico{
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: #fff3d9;
  color: #b6934c;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 28px;
  box-shadow: 0 2px 8px rgba(0,0,0,.06);
} */

 li .ico i{ font-size: 14px; color:#4a5739; }
.promise_sec .promise-list li span:last-child{ flex: 1; }
/* horizontal badges (icon on top, label below) */
.promise_sec .badges-horizontal{ list-style: none; padding-left: 0; display: grid; grid-template-columns: repeat(auto-fit, minmax(160px, 1fr)); gap: 28px; justify-items: center; }
.promise_sec .badges-horizontal li{ display: flex; flex-direction: column; align-items: center; gap: 10px; text-align: center; border-radius: 10px;
    background: #fff; padding: 25px 10px; }
.promise_sec .badges-horizontal li .ico{ width: 70px; height: 70px; border-radius: 50%; border: 1.5px solid #b6934c; background: #fff; display: flex; align-items: center; justify-content: center; box-shadow: 0 6px 18px rgba(0,0,0,.05); }
.promise_sec .badges-horizontal li .ico i{ font-size: 34px; color: #b6934c; }
.promise_sec .badges-horizontal li span:last-child{ color: #000; font-size: 18px; line-height: 1.4; font-weight: 600;  }
@media (max-width: 991.98px){ .promise_sec .badges-horizontal{ grid-template-columns: repeat(auto-fit, minmax(140px, 1fr)); gap: 20px; } .promise_sec .badges-horizontal li .ico{ width: 96px; height: 96px; } .promise_sec .badges-horizontal li .ico i{ font-size: 28px; } }
@media (max-width: 575.98px){ .promise_sec .badges-horizontal{ grid-template-columns: 1fr 1fr; gap: 16px; } .promise_sec .badges-horizontal li .ico{ width: 86px; height: 86px; } .promise_sec .badges-horizontal li .ico i{ font-size: 24px; } }
@media (max-width: 575.98px){
  .promise_sec .promise-card { padding: 18px; }
}

/* about - chairman image */
.chairman_msg_sec .img-card img{ border-radius: 16px; }

.home_branch_sec .nav.nav-tabs .nav-item button {
  background: linear-gradient(135deg, #f5e1d1 0%, #eac7ae 100%);
  color: #4a5739;
  border: 0px;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  padding: 12px 24px;
  font-weight: 600;
  border-radius: 8px;
  margin-right: 8px;
  margin-bottom: 8px;
}

.home_branch_sec .nav.nav-tabs .nav-item button:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(117, 47, 67, 0.15);
}

.home_branch_sec .nav.nav-tabs .nav-item button.active {
  background: linear-gradient(85deg, #3D482E 0%, #819766 100%);
  color: #fff;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 8px 24px rgba(117, 47, 67, 0.25);
}

/* product page */
.product_page .product-toolbar .text-title {
  font-family: "Prata", serif;
  color: #4a5739;
  font-size: clamp(20px, 3vw, 28px);
}
.product_page .product-toolbar .text-sub-title {
  color: #78716c;
  font-size: 14px;
}
.product_page .product-toolbar .sort-select {
  min-width: 180px;
  border-radius: 6px;
}
.product_page .product-toolbar .view-toggle .btn {
  border-radius: 6px;
}
.product_page .product-toolbar .view-toggle .btn.active {
  background: #eac7ae;
  border-color: #eac7ae;
  color: #4a5739;
}

.product_page .nav-pills .nav-link {
  border: 1px solid #eee;
  color: #232323;
  margin-bottom: 8px;
  border-radius: 8px;
}
.product_page .nav-pills .nav-link.active {
  background: linear-gradient(135deg, #f5e1d1 0%, #eac7ae 100%);
  color: #4a5739;
  border-color: #eac7ae;
}

.product_page .product-card {
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.06);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.product_page .product-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.12);
}
.product_page .product-card .img-card {
  aspect-ratio: 1 / 1;
  border-radius: 12px;
  overflow: hidden;
}
.product_page .product-card .img-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}
.product_page .product-card:hover .img-card img {
  transform: scale(1.06);
}
.product_page .product-card .text-name {
  font-weight: 600;
  color: #232323;
}
.product_page .product-card .text-price {
  color: #b6934c;
  font-weight: 700;
}

.product_page .pagination .page-link {
  color: #4a5739;
}
.product_page .pagination .page-item.active .page-link {
  background-color: #4a5739;
  border-color: #4a5739;
}
.product_page .pagination .page-link:focus {
  box-shadow: 0 0 0 0.2rem rgba(117, 47, 67, 0.25);
}

/* Breadcrumbs */
nav[aria-label="breadcrumb"] {
  --breadcrumb-link: #4a5739;
  --breadcrumb-sep: #b6934c;
  --breadcrumb-text: #232323;
}
nav[aria-label="breadcrumb"] .breadcrumb {
  background-color: transparent;
  padding: 0;
  margin-bottom: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  align-items: center;
}
nav[aria-label="breadcrumb"] .breadcrumb-item {
  color: var(--breadcrumb-text);
  font-size: 14px;
}
nav[aria-label="breadcrumb"] .breadcrumb-item a {
  color: var(--breadcrumb-link);
  text-decoration: none;
  transition: color 0.2s ease;
}
nav[aria-label="breadcrumb"] .breadcrumb-item a:hover {
  color: #b6934c;
  text-decoration: underline;
  text-underline-offset: 3px;
}
nav[aria-label="breadcrumb"] .breadcrumb-item + .breadcrumb-item::before {
  content: "›";
  color: var(--breadcrumb-sep);
  padding: 0 4px;
  line-height: 1;
}
nav[aria-label="breadcrumb"] .breadcrumb-item.active {
  color: #78716c;
  font-weight: 600;
}
@media (max-width: 576px) {
  nav[aria-label="breadcrumb"] .breadcrumb-item {
    font-size: 13px;
  }
  nav[aria-label="breadcrumb"] .breadcrumb {
    gap: 4px;
  }
}

.slick_branch,
.slick_releted_blog,
.slick_branch_contact {
  margin-left: -15px;
  margin-right: -15px;
}

.slick_branch .slick-item,
.slick_releted_blog .slick-item,
.slick_branch_contact .slick-item {
  padding-left: 15px;
  padding-right: 15px;
}

.slick_branch .slick-prev,
.slick_branch .slick-next,
.slick_releted_blog .slick-prev,
.slick_releted_blog .slick-next {
  background: rgba(255, 255, 255, 0.9);
  border: 2px solid #b6934c;
  color: #4a5739 !important;
  font-size: 18px;
  width: 40px;
  height: 40px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.12);
  top: 43%;
  transform: translateY(-50%);
  z-index: 3;
  border-radius: 50%;
  cursor: pointer;
  pointer-events: all;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.slick_branch .slick-prev:hover,
.slick_branch .slick-next:hover,
.slick_releted_blog .slick-prev:hover,
.slick_releted_blog .slick-next:hover {
  background: linear-gradient(135deg, #b6934c 0%, #8a6f3d 100%);
  color: #fff !important;
  transform: translateY(-50%) scale(1.1);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

.slick_branch .slick-prev,
.slick_releted_blog .slick-prev {
  left: 30px;
}

.slick_branch .slick-next,
.slick_releted_blog .slick-next {
  right: 30px;
}

.slick_branch .slick-prev::before,
.slick_branch .slick-next::before,
.slick_releted_blog .slick-prev:before,
.slick_releted_blog .slick-next::before {
  content: "";
}

.slick_branch .branch-card:hover .img-card img {
  transform: scale(1.1);
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.slick_branch .branch-card .img-card {
  aspect-ratio: 419 / 460;
  width: 100%;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.slick_branch .branch-card:hover .img-card {
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.18);
}

.slick_branch .branch-card .img-card::after {
  position: absolute;
  content: "";
  inset: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, transparent 0%, rgba(0, 0, 0, 0.3) 100%);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
.slick_branch .branch-card .img-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 12px;
  transition: all 0.4s;
}
.slick_branch .branch-card .cont {
  font-size: clamp(16px, 3vw, 24px);
}
/* about */
.about_main_sec .img-card {
  z-index: 1;
}
.about_main_sec .main-title {
  font-size: clamp(20px, 3vw, 35px);
}
.about_main_sec .sub-text {
  font-size: clamp(17px, 2vw, 24px);
}
.about_main_sec span.border-bottom-red {
  position: absolute;
  content: "";
  background: #4a5739;
  height: 1px;
  width: 20%;
  margin-top: 10px;
  text-align: center;
  left: 39%;
}
.about_us_sec .about-sub-card {
  padding-top: 220px;
  padding-bottom: 70px;
  padding-left: 15px;
  padding-right: 15px;
  border-radius: 20px;
  margin-top: -250px;
}
.about_us_sec .about-title {
  font-size: Clamp(25px, 3vw, 35px);
  font-weight: bold;
}
.about_us_sec .sub-text {
  font-size: clamp(14px, 2vw, 16px);
  line-height: clamp(30px, 2vw, 40px);
}
@media (max-width: 767px) {
  .about_us_sec .about-sub-card {
    padding-top: 100px;
    margin-top: -100px;
  }
  .about_us_sec .about-sub-card .sub-text {
    text-align: justify;
  }
}
/* About page enhancements */
.about_main_sec .breadcrumb {
  margin-top: 8px;
}
.about_main_sec .img-card {
  border-radius: 16px;
  overflow: hidden;
  /* box-shadow: 0 12px 30px rgba(0, 0, 0, 0.12); */
}
.about_main_sec .img-card::after {
  content: "";
  position: absolute;
  inset: 0;
  /* background: linear-gradient(180deg, rgba(0,0,0,0) 0%, rgba(0,0,0,0.05) 60%, rgba(0,0,0,0.15) 100%); */
  pointer-events: none;
}

.chairman_msg_sec .img-card img {
  border-radius: 14px;
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.12);
}

/* .promise_sec .promise-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 14px 36px rgba(0, 0, 0, 0.16);
} */

@media (max-width: 576px) {
  .about_main_sec .main-title { font-size: clamp(22px, 5vw, 30px); }
  .about_main_sec .sub-text { font-size: clamp(15px, 4vw, 18px); }
}
/* chairman */
.chairman_msg_sec .char-text {
  font-size: 32px;
}
.chairman_msg_sec .text-desc {
  font-size: clamp(14px, 2vw, 16px);
}
@media (max-width: 992px) {
  .chairman_msg_sec {
    padding: 30px 40px 30px 30px;
    border-radius: 15px;
  }
}
.promise_sec .promise-card .text-title {
  font-size: clamp(22px, 3vw, 28px);
}
.promise_sec .promise-card .cont {
  font-size: clamp(16px, 2vw, 18px);
}
@media (max-width: 767px) {
  .promise_sec .promise-card {
    padding: 20px 30px;
  }
}
/* promise - professional polish */

.promise_sec .promise-card.bg-red-gradient { /* darker gradient card */
  border-color: rgba(255, 255, 255, 0.18);
}
.promise_sec .promise-card.bg-yellow-gradient { /* lighter gradient card */
  border-color: rgba(0, 0, 0, 0.06);
}
.promise_sec .promise-card .text-title {
  font-weight: 600;
  letter-spacing: 0.2px;
}
.promise_sec .promise-card .cont {
  line-height: 1.8;
}
.promise_sec .promise-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 10px;
}
.promise_sec .promise-list li {
  position: relative;
  /* padding-left: 22px; */
  color: #000;
}
/* .promise_sec .promise-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.6em;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: linear-gradient(135deg, #b6934c 0%, #8a6f3d 100%);
  box-shadow: 0 0 0 2px rgba(255, 255, 255, 0.35);
} */
.promise_sec .promise-card.bg-yellow-gradient .promise-list li::before {
  box-shadow: 0 0 0 2px rgba(255, 255, 255, 0.0), 0 0 0 0 rgba(0,0,0,0);
}
.promise_sec .promise-card.bg-red-gradient .promise-list li {
  color: #fff;
}
.promise_sec .promise-card.bg-yellow-gradient .promise-list li {
  color: #3a3a3a;
}
/* gallery */
.page_banner_sec {
  /* background: #FFD187;
background: linear-gradient(279deg, rgba(255, 209, 135, 1) 0%, rgba(156, 107, 30, 1) 100%); */
  /* min-height: 350px; */
  align-content: center;
  color: #fff;
}
.page_banner_sec .page-title {
  margin-bottom: 25px;
  margin-left: 15px;
  font-size: clamp(24px, 2vw, 34px);
}
.page_banner_sec .lg-top {
  width: 100px;
  height: 1px;
  background-color: #fff;
  position: absolute;
  content: "";
}
.page_banner_sec .lg-bottom {
  width: 100px;
  height: 1px;
  margin-left: 15%;
  background-color: #fff;
  position: absolute;
  content: "";
}
/* .page_banner_sec .page-title::after{
    position: absolute;
    content: "";
    left: 30%;
    width: 10%;
    background-color: #fff;
} */
.page_banner_sec .sub-text {
  font-size: clamp(18px, 2vw, 22px);
}
.product_page .page_banner_sec {
  min-height: auto;
}
.product_page .page_banner_sec .sub-text {
  font-size: clamp(14px, 2vw, 16px);
  line-height: clamp(18px, 3vw, 18px);
}
/* gallery */
.galley_card_sec .galley-card {
  aspect-ratio: 400 / 380;
  border-radius: 8px;
  width: 100%;
}
.galley_card_sec .galley-card img {
  width: 100%;
  box-shadow: 0px 8px 20px -6px rgba(0, 0, 0, 0.5);
  height: 100%;
  object-fit: cover;
  border-radius: 8px;
}
.galley_card_sec .galley-card .bottom-text {
  position: absolute;
  bottom: 25px;
  left: 25px;
  font-size: clamp(14px, 2vw, 18px);
  color: #fff;
  letter-spacing: 10px;
}
@media (max-width: 767px) {
  .galley_card_sec .galley-card {
    aspect-ratio: 230 / 220;
  }
}
/* / gallery */
/* /blog */
.blog_card_sec .blog-card:hover .img-card img,
.slick_releted_blog .blog-card:hover .img-card .img {
  transform: scale(1.3);
  transition: all 0.3s;
}
.blog_card_sec .blog-card:hover .blog-cont,
.slick_releted_blog .blog-card:hover .blog-cont {
  /* background-color: #752e42; */
  transition: all 0.3s;
}
.blog_card_sec .blog-card .img-card {
  width: 100%;
  aspect-ratio: 426 / 400;
  border-radius: 16px;
}
.blog_card_sec .blog-card .img-card img,
.slick_releted_blog .blog-card .img-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all 0.3s;
  border-radius: 16px;
}
.blog_card_sec .blog-card .blog-cont,
.slick_releted_blog .blog-card .blog-cont {
  margin-top: -100px;
  z-index: 1;
  bottom: 0;
  position: absolute;
  border-radius: 0px 0px 16px 16px;
  padding: 20px;
  background-color: #fff;
  transition: all 0.3s;
  color: #ffffff;
  /* border: 1px solid rgb(69 69 69 / 31%); */
}
.blog_card_sec .blog-card .blog-cont .blog-head,
.slick_releted_blog .blog-card .blog-cont .blog-head {
  font-size: clamp(18px, 2vw, 22px);
  color: #000;
}
.blog-head{
  font-weight: bold;
}
.blog_card_sec a{
  color: #000;
  text-decoration: underline;
}
.blog-des {
  color: #000;
}
.blog_card_sec .blog-card .blog-card .blog-des,
.slick_releted_blog .blog-card .blog-card .blog-des {
  font-size: clamp(15px, 2vw, 19px);
  line-height: clamp(17px, 2vw, 21px);
}
/* blog-view */
.blog_view_sec .img-card {
  width: 100%;
  aspect-ratio: 426 / 400;
  border-radius: 16px;
}
.blog_view_sec .img-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.blog_view_sec .text-title {
  font-size: clamp(18px, 2vw, 22px);
}
.blog_view_sec .text-des {
  font-size: clamp(13px, 2vw, 16px);
  line-height: clamp(23px, 3vw, 26px);
}
/* / blog */
/* prodcut */
.product_sec {
  background: #f7f1ed;
}
.product_sec .text-cata {
  color: #000;
  font-size: clamp(17px, 3vw, 22px);
  border-bottom: 1px solid #00000024;
  font-weight: 600;
}
.product_sec .nav .nav-link {
  font-size: 14px;
  border-radius: 0;
  text-align: start;
  border-bottom: 1px solid #b5b5b5;
  font-weight: 600;
  color: #000;
  padding: 11px 0px;
}
.product_sec .nav .nav-link.active {
  background-color: transparent;
  border-bottom: 1px solid #00000024;
}
.product_sec .tab-content .text-title {
  font-size: clamp(20px, 3vw, 30px);
}
.product_sec .tab-content .text-sub-title {
  color: #00000080;
  letter-spacing: 10%;
  font-size: clamp(17px, 2vw, 22px);
}
.product_sec .tab-content .product-card .img-card {
  width: 100%;
  aspect-ratio: 500 / 450;
  /*box-shadow: 0px 8px 20px -6px rgba(0, 0, 0, 0.5);*/
  border-radius: 16px;
}
.product_sec .tab-content .product-card .img-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 16px 16px 5px 5px;
}
.product_sec .tab-content .product-card .cont .text-name {
  color: #000000b2;
  font-size: clamp(14px, 2vw, 17px);
}
.product_sec .tab-content .product-card .cont .text-price {
  font-size: clamp(12px, 2vw, 15px);
}
@media (max-width: 767px) {
  .product_sec .tab-content .product-card .img-card {
    aspect-ratio: 190 / 203;
  }
}

/* / product */
/* contact page */
.contact_info_sec .cont-info-card {
  padding: 10px 20px;
  border-radius: 20px;
  text-align: center;
background: #fff;
  min-height: 150px;
  /* border: 1px solid #00000080; */
}
.contact_info_sec .cont-info-card .cont {
  font-size: clamp(14px, 2vw, 16px);
  line-height: clamp(19px, 3vw, 22px);
}
/* / */
/*  */
.contact_form_sec .contact-form .form-control {
  border-radius: 8px;
  padding: 10px;
  font-size: 14px;
  /* border: 1px solid #000000b2; */
}

.slick_branch_contact .branch-card:hover .img-card img {
  transform: scale(1.3);
  transition: all 0.3s;
}
.slick_branch_contact .branch-card .img-card {
  width: 100%;
  border-radius: 16px;
  aspect-ratio: 300 / 379;
}
.slick_branch_contact .branch-card .img-card::after {
  position: absolute;
  content: "";
  inset: 0;
  background-color: #00000060;
}
.slick_branch_contact .branch-card .img-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all 0.3s;
  border-radius: 16px;
}
.slick_branch_contact .branch-card .cont {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: #0b040480;
  border-radius: 12px;
  color: #fff;
  z-index: 1;
  padding: 10px 15px;
}
.slick_branch_contact .branch-card .cont .text-location {
  font-size: clamp(14px, 2vw, 16px);
}
.slick_branch_contact .branch-card .cont .text-address {
  font-size: clamp(11px, 2vw, 13px);
}

/* / */
/* footer */
.footer .footer-top {
  background: #4a5739;
  padding: 25px 0px;
  color: #fff;
}
.footer .footer-top img{
    max-height: 30px;
}
.footer .footer-center {
  padding: 25px 0px;
}
.footer .footer-center .text-sub {
  font-size: clamp(16px, 2vw, 18px);
  font-weight: 500;
}
.footer .footer-center .main-text {
  color: #0b0404;
  font-size: clamp(26px, 3vw, 36px);
}
.footer .footer-center .text-center-sub {
  color: #78716c;
  font-size: clamp(14px, 2vw, 16px);
}
.footer .footer-center input {
  max-width: 350px;
  box-shadow: none;
  outline: none;
  justify-self: center;
}
.footer .footer-center button.btn-sign {
  background-color: #4a5739;
  color: #fff;
  font-size: 14px;
  text-wrap: nowrap;
  padding: 7.3px 10px;
}
.footer .footer-center .social-text {
  font-size: clamp(14px, 2vw, 16px);
}
.footer .footer-bottom {
  background: #5e6f47;
  padding: 25px 0px;
  color: #eac7ae;
}
.footer .footer-bottom .link-items {
  font-size: clamp(14px, 2vw, 16px);
}
.footer .footer-sub-bottom {
  background: #4a5739;
  padding: 25px 0px;
  color: #fff;
  font-size: clamp(14px, 2vw, 16px);
}
.nav-pills .nav-link {
  /*background-color: #f5e1d1;*/
  color: #6c4b2c;
  transition: all 0.3s ease;
}

@media (max-width: 768px) {
  .scroll-btn {
    width: 36px;
    height: 36px;
    top: 35%;
  }
}

/* WhatsApp sticky button */
.whatsapp-sticky {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 10000;
  background: #25d366;
  color: #fff;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 18px rgba(37, 211, 102, 0.25);
  text-decoration: none;
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}

.whatsapp-sticky:hover {
  transform: scale(1.05);
  box-shadow: 0 8px 22px rgba(37, 211, 102, 0.32);
}

.whatsapp-sticky .wa-icon {
  font-size: 24px;
  line-height: 1;
}

/* smaller on very small screens */
@media (max-width: 420px) {
  .whatsapp-sticky {
    right: 20px;
    bottom: 20px;
    width: 48px;
    height: 48px;
  }
  .whatsapp-sticky .wa-icon {
    font-size: 20px;
  }
}

/* Statistics Cards Styling */
.stats-container {
  gap: 1rem;
}

.stat-card {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.5rem;
  background: linear-gradient(135deg, #f5e1d1 0%, #faf4f0 100%);
  border-radius: 12px;
  border-left: 4px solid #b6934c;
  transition: all 0.3s ease;
  box-shadow: 0 2px 8px rgba(182, 147, 76, 0.1);
}

.stat-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 6px 16px rgba(182, 147, 76, 0.2);
  border-left-color: #c37076;
}

.stat-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, #b6934c, #8a6f3d);
  border-radius: 50%;
  color: #fff;
  font-size: 1.5rem;
  flex-shrink: 0;
}

.stat-content {
  flex: 1;
}

.stat-number {
  font-size: 1.75rem;
  font-weight: 700;
  color: #4a5739;
  line-height: 1;
  margin-bottom: 0.25rem;
  font-family: "Prata", serif;
}

.stat-label {
  font-size: 0.875rem;
  color: #6c4b2c;
  font-weight: 500;
  text-transform: capitalize;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .stat-card {
    padding: 1.25rem;
    gap: 0.75rem;
  }

  .stat-number {
    font-size: 1.5rem;
  }

  .stat-label {
    font-size: 0.8125rem;
  }

  .stat-icon {
    width: 45px;
    height: 45px;
    font-size: 1.25rem;
  }
}

@media (max-width: 576px) {
  .stat-card {
    padding: 1rem;
    gap: 0.75rem;
  }

  .stat-number {
    font-size: 1.25rem;
  }

  .stat-label {
    font-size: 0.75rem;
  }

  .stat-icon {
    width: 40px;
    height: 40px;
    font-size: 1.125rem;
  }
}

/* Download App Section Styling */
.download_app_sec {
  background: linear-gradient(135deg, #4a5739 0%, #60704b 50%, #4a5739 100%);
  padding: 4rem 0;
  position: relative;
  overflow: hidden;
}

.download_app_sec::before {
  content: "";
  position: absolute;
  top: -50%;
  right: -20%;
  width: 500px;
  height: 500px;
  background: radial-gradient(
    circle,
    rgba(182, 147, 76, 0.1) 0%,
    transparent 70%
  );
  border-radius: 50%;
  z-index: 0;
}

.download_app_sec .container {
  position: relative;
  z-index: 1;
}

.app-content {
  padding-right: 2rem;
}

.app-title {
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: bold;
  color: #fff;
  margin-bottom: 0.5rem;
  line-height: normal;
  line-height: normal;
  /* font-family: "Prata", serif; */
}

.app-subtitle {
  font-size: clamp(1.125rem, 3vw, 1.5rem);
  color: #b6934c;
  font-weight: 600;
  margin-bottom: 1.5rem;
}

.app-description {
  font-size: clamp(0.9375rem, 2vw, 1.0625rem);
  color: #6c4b2c;
  line-height: 1.8;
  margin-bottom: 2rem;
}

/* Features List */
.app-features {
  margin-bottom: 2.5rem;
}

.feature-item {
  display: flex;
  gap: 1rem;
  margin-bottom: 1.5rem;
  align-items: flex-start;
}

.feature-icon {
  width: 50px;
  height: 50px;
  min-width: 50px;
  background: linear-gradient(135deg, #b6934c 0%, #8a6f3d 100%);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 1.5rem;
  box-shadow: 0 4px 12px rgba(182, 147, 76, 0.2);
}

.feature-text h4 {
  font-size: 1rem;
  font-weight: 600;
  color: #fff;
  margin-bottom: 0.25rem;
}

.feature-text p {
  font-size: 0.875rem;
  color: #fff;
  margin: 0;
}

/* App Download Buttons */
.app-buttons {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.app-btn {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1rem 1.5rem;
  border-radius: 12px;
  border: none;
  font-size: 0.875rem;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  cursor: pointer;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.app-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

/* Google Play Button */
.app-btn-google {
  background: linear-gradient(135deg, #3b3b3b 0%, #1a1a1a 100%);
  color: #fff;
}

.app-btn-google:hover {
  background: linear-gradient(135deg, #1a1a1a 0%, #000 100%);
}

/* App Store Button */
.app-btn-apple {
  background: linear-gradient(135deg, #000 0%, #1a1a1a 100%);
  color: #fff;
}

.app-btn-apple:hover {
  background: linear-gradient(135deg, #1a1a1a 0%, #333 100%);
}

.btn-icon {
  font-size: 1.75rem;
  display: flex;
  align-items: center;
}

.btn-text {
  display: flex;
  flex-direction: column;
}

.btn-label {
  font-size: 0.75rem;
  opacity: 0.9;
}

.btn-store {
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.5px;
}

/* App Image Container */
.app-image-container {
  text-align: center;
  padding: 2rem;
}

.phone-mockup {
  position: relative;
  display: inline-block;
  max-width: 100%;
  animation: floatAnimation 3s ease-in-out infinite;
}

.phone-mockup img {
  width: 100%;
  height: auto;
  max-width: 300px;
}

@keyframes floatAnimation {
  0%,
  100% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-20px);
  }
}

/* Responsive Design */
@media (max-width: 992px) {
  .app-content {
    padding-right: 0;
    margin-bottom: 2rem;
  }

  .app-title {
    font-size: 2.5rem;
  }

  .app-buttons {
    flex-direction: column;
  }

  .app-btn {
    width: 100%;
    justify-content: center;
  }
}

@media (max-width: 768px) {
  .download_app_sec {
    padding: 3rem 0;
  }

  .app-title {
    font-size: 2rem;
  }

  .app-subtitle {
    font-size: 1.25rem;
  }

  .app-description {
    font-size: 0.9375rem;
    margin-bottom: 1.5rem;
  }

  .feature-item {
    margin-bottom: 1rem;
  }

  .feature-icon {
    width: 45px;
    height: 45px;
    font-size: 1.25rem;
  }

  .feature-text h4 {
    font-size: 0.9375rem;
  }

  .feature-text p {
    font-size: 0.8125rem;
  }

  .app-buttons {
    gap: 0.75rem;
  }

  .app-btn {
    padding: 0.875rem 1.25rem;
    font-size: 0.8125rem;
  }

  .btn-icon {
    font-size: 1.5rem;
  }

  .btn-store {
    font-size: 0.875rem;
  }
}

@media (max-width: 576px) {
  .download_app_sec {
    padding: 2rem 0;
  }

  .app-title {
    font-size: 1.75rem;
  }

  .app-subtitle {
    font-size: 1.1rem;
  }

  .app-description {
    font-size: 0.875rem;
    margin-bottom: 1.25rem;
  }

  .app-buttons {
    flex-direction: column;
    gap: 0.75rem;
  }

  .app-btn {
    padding: 0.75rem 1rem;
    font-size: 0.75rem;
  }

  .btn-icon {
    font-size: 1.25rem;
  }

  .btn-label {
    font-size: 0.625rem;
  }

  .btn-store {
    font-size: 0.75rem;
  }

  .phone-mockup img {
    max-width: 200px;
  }
}

.blog_card_sec {
  background: #f7f1ed;
}

.blog_card_sec .row {
  row-gap: 24px;
}

.blog-card {
  background: #ffffff;
  border-radius: 14px;
  /* border: 1px solid rgba(0, 0, 0, 0.06); */
  overflow: hidden;
  height: 100%;
  display: flex;
  flex-direction: column;
  /* box-shadow: 0 8px 18px rgba(0, 0, 0, 0.06); */
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.blog-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 14px 28px rgba(0, 0, 0, 0.12);
}

.blog-card:focus-within {
  outline: 2px solid #b6934c33;
  outline-offset: 2px;
}

.blog-card .img-card {
  width: 100%;
  aspect-ratio: 4 / 3;
  border-top-left-radius: 12px;
  border-top-right-radius: 12px;
}

.blog-card .img-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.35s ease;
}

.blog-card:hover .img-card img {
  transform: scale(1.06);
}

.blog-card .blog-cont {
  padding: 16px 16px 18px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.blog-card .blog-head {
  font-size: clamp(18px, 2.2vw, 20px);
  font-weight: 700;
  color: #232323;
  letter-spacing: 0.2px;
}

.blog-card .blog-des {
  color: #6b7280;
  font-size: 0.9375rem;
  line-height: 1.65;
}

.truncate_90 {
  display: -webkit-box;
  line-clamp: 3;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

@media (max-width: 991.98px) {
  .blog_card_sec .row {
    row-gap: 18px;
  }

  .blog-card .blog-cont {
    padding: 14px;
  }
}

@media (max-width: 575.98px) {
  .blog-card .blog-head {
    font-size: 1rem;
  }

  .blog-card .blog-des {
    font-size: 0.875rem;
  }
}
