
/* Fonts */
:root {
  --default-font: "Open Sans",  system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", "Liberation Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
  --heading-font: "Marcellus",  sans-serif;
  --nav-font: "Marcellus",  sans-serif;
}

/* Global Colors - The following color variables are used throughout the website. Updating them here will change the color scheme of the entire website */
:root { 
  --background-color: #f7f2e7; /* Background color for the entire website, including individual sections */
  --default-color: #243126; /* Default color used for the majority of the text content across the entire website */
  --heading-color: #1d4a2b; /* Color for headings, subheadings and title throughout the website */
  --accent-color: #1f5d2f; /* Accent color that represents your brand on the website. It's used for buttons, links, and other elements that need to stand out */
  --surface-color: #fbf7ee; /* The surface color is used as a background of boxed elements within sections, such as cards, icon boxes, or other elements that require a visual separation from the global background. */
  --contrast-color: #ffffff; /* Contrast color for text, ensuring readability against backgrounds of accent, heading, or default colors. */
}

/* Nav Menu Colors - The following color variables are used specifically for the navigation menu. They are separate from the global colors to allow for more customization options */
:root {
  --nav-color: #243126;  /* The default color of the main navmenu links */
  --nav-hover-color: #1f5d2f; /* Applied to main navmenu links when they are hovered over or active */
  --nav-mobile-background-color: #fbf7ee; /* Used as the background color for mobile navigation menu */
  --nav-dropdown-background-color: #fbf7ee; /* Used as the background color for dropdown items that appear when hovering over primary navigation items */
  --nav-dropdown-color: #243126; /* Used for navigation links of the dropdown items in the navigation menu. */
  --nav-dropdown-hover-color: #1f5d2f; /* Similar to --nav-hover-color, this color is applied to dropdown navigation links when they are hovered over. */
}

/* Color Presets - These classes override global colors when applied to any section or element, providing reuse of the sam color scheme. */

.light-background {
  --background-color: #f2ebdc;
  --surface-color: #fbf7ee;
}

.dark-background {
  --background-color: #1b4a2a;
  --default-color: #f5efe2;
  --heading-color: #fbf7ee;
  --accent-color: #d8e7c8;
  --surface-color: #204f2e;
  --contrast-color: #ffffff;
}

/* Smooth scroll */
:root {
  scroll-behavior: smooth;
}

/*--------------------------------------------------------------
# General Styling & Shared Classes
--------------------------------------------------------------*/
body {
  color: var(--default-color);
  background-color: var(--background-color);
  font-family: var(--default-font);
}

html {
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
}

img,
video,
canvas,
svg {
  max-width: 100%;
  height: auto;
}

a {
  color: var(--accent-color);
  text-decoration: none;
  transition: 0.3s;
}

a:hover {
  color: color-mix(in srgb, var(--accent-color), transparent 25%);
  text-decoration: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  color: var(--heading-color);
  font-family: var(--heading-font);
}

.millet-pricing {
  font-weight: 700;
}

/* Global Motion System
------------------------------*/
.reveal-ready {
  opacity: 0;
  transform: translate3d(0, 26px, 0) scale(0.985);
  filter: blur(3px);
  transition: opacity 0.8s cubic-bezier(0.2, 0.7, 0.2, 1),
    transform 0.8s cubic-bezier(0.2, 0.7, 0.2, 1),
    filter 0.8s cubic-bezier(0.2, 0.7, 0.2, 1);
  will-change: transform, opacity, filter;
}

.reveal-show {
  opacity: 1;
  transform: none;
  filter: blur(0);
}

.reveal-delay-1 {
  transition-delay: 90ms;
}

.reveal-delay-2 {
  transition-delay: 180ms;
}

.reveal-delay-3 {
  transition-delay: 270ms;
}

.services .service-item,
.recent-posts .post-item,
.testimonials .testimonial,
.team .person {
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.services .service-item:hover,
.recent-posts .post-item:hover,
.testimonials .testimonial:hover,
.team .person:hover {
  transform: translateY(-5px);
  box-shadow: 0 16px 34px color-mix(in srgb, var(--default-color), transparent 85%);
}

.hero .carousel-item.active .carousel-container {
  animation: hero-caption-rise 0.95s cubic-bezier(0.2, 0.7, 0.2, 1) both;
}

@keyframes hero-caption-rise {
  from {
    opacity: 0;
    transform: translate3d(0, 30px, 0);
  }

  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}

@media (prefers-reduced-motion: reduce) {
  .reveal-ready,
  .reveal-show,
  .hero .carousel-item.active .carousel-container,
  .services .service-item,
  .recent-posts .post-item,
  .testimonials .testimonial,
  .team .person {
    animation: none !important;
    transition: none !important;
    transform: none !important;
    filter: none !important;
    opacity: 1 !important;
  }
}

/* PHP Email Form Messages
------------------------------*/
.php-email-form .error-message {
  display: none;
  background: #df1529;
  color: #ffffff;
  text-align: left;
  padding: 15px;
  margin-bottom: 24px;
  font-weight: 600;
}

.php-email-form .sent-message {
  display: none;
  color: #ffffff;
  background: #059652;
  text-align: center;
  padding: 15px;
  margin-bottom: 24px;
  font-weight: 600;
}

.php-email-form .loading {
  display: none;
  background: var(--surface-color);
  text-align: center;
  padding: 15px;
  margin-bottom: 24px;
}

.php-email-form .loading:before {
  content: "";
  display: inline-block;
  border-radius: 50%;
  width: 24px;
  height: 24px;
  margin: 0 10px -6px 0;
  border: 3px solid var(--accent-color);
  border-top-color: var(--surface-color);
  animation: php-email-form-loading 1s linear infinite;
}

@keyframes php-email-form-loading {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

/* Pulsating Play Button
------------------------------*/
.pulsating-play-btn {
  width: 94px;
  height: 94px;
  background: radial-gradient(var(--accent-color) 50%, color-mix(in srgb, var(--accent-color), transparent 75%) 52%);
  border-radius: 50%;
  display: block;
  position: relative;
  overflow: hidden;
}

.pulsating-play-btn:before {
  content: "";
  position: absolute;
  width: 120px;
  height: 120px;
  animation-delay: 0s;
  animation: pulsate-play-btn 2s;
  animation-direction: forwards;
  animation-iteration-count: infinite;
  animation-timing-function: steps;
  opacity: 1;
  border-radius: 50%;
  border: 5px solid color-mix(in srgb, var(--accent-color), transparent 30%);
  top: -15%;
  left: -15%;
  background: rgba(198, 16, 0, 0);
}

.pulsating-play-btn:after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translateX(-40%) translateY(-50%);
  width: 0;
  height: 0;
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
  border-left: 15px solid #fff;
  z-index: 100;
  transition: all 400ms cubic-bezier(0.55, 0.055, 0.675, 0.19);
}

.pulsating-play-btn:hover:before {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translateX(-40%) translateY(-50%);
  width: 0;
  height: 0;
  border: none;
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
  border-left: 15px solid #fff;
  z-index: 200;
  animation: none;
  border-radius: 0;
}

.pulsating-play-btn:hover:after {
  border-left: 15px solid var(--accent-color);
  transform: scale(20);
}

@keyframes pulsate-play-btn {
  0% {
    transform: scale(0.6, 0.6);
    opacity: 1;
  }

  100% {
    transform: scale(1, 1);
    opacity: 0;
  }
}

/*--------------------------------------------------------------
# Global Header
--------------------------------------------------------------*/
.header {
  color: var(--default-color);
  background-color: var(--background-color);
  padding: 10px 0;
  transition: all 0.5s;
  z-index: 997;
}

.header .logo {
  line-height: 1;
}

.header .logo img {
  width: clamp(380px, 30vw, 500px);
  height: auto;
  max-height: 96px;
  object-fit: contain;
  object-position: left center;
  display: block;
  margin-right: 8px;
}

@media (max-width: 1199px) {
  .header {
    padding: 10px 0;
  }

  .header .logo img {
    width: clamp(300px, 68vw, 430px);
    max-height: 84px;
  }
}

@media (max-width: 575px) {
  .header .logo img {
    width: clamp(260px, 78vw, 360px);
    max-height: 74px;
  }
}

.header .logo h1 {
  font-size: 30px;
  margin: 0;
  font-weight: 700;
  color: var(--heading-color);
}

.scrolled .header {
  box-shadow: 0px 0 18px color-mix(in srgb, var(--default-color), transparent 85%);
}

/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/
/* Navmenu - Desktop */
@media (min-width: 1200px) {
  .navmenu {
    padding: 0;
  }

  .navmenu ul {
    margin: 0;
    padding: 0;
    display: flex;
    list-style: none;
    align-items: center;
  }

  .navmenu li {
    position: relative;
  }

  .navmenu a,
  .navmenu a:focus {
    color: var(--nav-color);
    padding: 18px 15px;
    font-size: 16px;
    font-family: var(--nav-font);
    font-weight: 400;
    display: flex;
    align-items: center;
    justify-content: space-between;
    white-space: nowrap;
    transition: color 0.28s ease, transform 0.28s cubic-bezier(0.2, 0.7, 0.2, 1);
  }

  .navmenu>ul>li>a,
  .navmenu>ul>li>a:focus {
    position: relative;
    transform: translateY(0);
  }

  .navmenu>ul>li>a::after,
  .navmenu>ul>li>a:focus::after {
    content: "";
    position: absolute;
    left: 15px;
    right: 15px;
    bottom: 10px;
    height: 2px;
    background: var(--nav-hover-color);
    border-radius: 999px;
    transform: scaleX(0);
    transform-origin: center;
    transition: transform 0.28s cubic-bezier(0.2, 0.7, 0.2, 1);
  }

  .navmenu a i,
  .navmenu a:focus i {
    font-size: 12px;
    line-height: 0;
    margin-left: 5px;
    transition: 0.3s;
  }

  .navmenu li:last-child a {
    padding-right: 0;
  }

  .navmenu li:hover>a,
  .navmenu .active,
  .navmenu .active:focus {
    color: var(--nav-hover-color);
    transform: translateY(-1px);
  }

  .navmenu li:hover>a::after,
  .navmenu .active::after,
  .navmenu .active:focus::after {
    transform: scaleX(1);
  }

  @media (prefers-reduced-motion: reduce) {
    .navmenu a,
    .navmenu a:focus,
    .navmenu>ul>li>a::after,
    .navmenu>ul>li>a:focus::after {
      transition: none;
    }
  }

  .navmenu .dropdown ul {
    margin: 0;
    padding: 10px 0;
    background: var(--nav-dropdown-background-color);
    display: block;
    position: absolute;
    visibility: hidden;
    left: 14px;
    top: 130%;
    opacity: 0;
    transition: 0.3s;
    border-radius: 4px;
    z-index: 99;
    box-shadow: 0px 0px 30px color-mix(in srgb, var(--default-color), transparent 85%);
  }

  .navmenu .dropdown ul li {
    min-width: 200px;
  }

  .navmenu .dropdown ul a {
    padding: 10px 20px;
    font-size: 15px;
    text-transform: none;
    color: var(--nav-dropdown-color);
  }

  .navmenu .dropdown ul a i {
    font-size: 12px;
  }

  .navmenu .dropdown ul a:hover,
  .navmenu .dropdown ul .active:hover,
  .navmenu .dropdown ul li:hover>a {
    color: var(--nav-dropdown-hover-color);
  }

  .navmenu .dropdown:hover>ul {
    opacity: 1;
    top: 100%;
    visibility: visible;
  }

  .navmenu .dropdown .dropdown ul {
    top: 0;
    left: -90%;
    visibility: hidden;
  }

  .navmenu .dropdown .dropdown:hover>ul {
    opacity: 1;
    top: 0;
    left: -100%;
    visibility: visible;
  }
}

/* Navmenu - Mobile */
@media (max-width: 1199px) {
  .mobile-nav-toggle {
    color: var(--nav-color);
    font-size: 28px;
    line-height: 0;
    margin-right: 10px;
    cursor: pointer;
    transition: color 0.3s;
  }

  .navmenu {
    padding: 0;
    z-index: 9997;
  }

  .navmenu ul {
    display: none;
    list-style: none;
    position: absolute;
    inset: 60px 20px auto 20px;
    padding: 10px 0;
    margin: 0;
    border-radius: 6px;
    background-color: var(--nav-mobile-background-color);
    overflow-y: auto;
    max-height: calc(100dvh - 92px);
    transition: 0.3s;
    z-index: 9998;
    box-shadow: 0px 0px 30px color-mix(in srgb, var(--default-color), transparent 90%);
  }

  .navmenu a,
  .navmenu a:focus {
    color: var(--nav-dropdown-color);
    padding: 10px 20px;
    font-family: var(--nav-font);
    font-size: 17px;
    font-weight: 500;
    display: flex;
    align-items: center;
    justify-content: space-between;
    white-space: nowrap;
    position: relative;
    transform: translateX(0);
    transition: color 0.28s ease, transform 0.28s cubic-bezier(0.2, 0.7, 0.2, 1);
  }

  .navmenu a i,
  .navmenu a:focus i {
    font-size: 12px;
    line-height: 0;
    margin-left: 5px;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: 0.3s;
    background-color: color-mix(in srgb, var(--accent-color), transparent 90%);
  }

  .navmenu a i:hover,
  .navmenu a:focus i:hover {
    background-color: var(--accent-color);
    color: var(--contrast-color);
  }

  .navmenu a:hover,
  .navmenu .active,
  .navmenu .active:focus {
    color: var(--nav-dropdown-hover-color);
    transform: translateX(4px);
  }

  .navmenu .active i,
  .navmenu .active:focus i {
    background-color: var(--accent-color);
    color: var(--contrast-color);
    transform: rotate(180deg);
  }

  .navmenu .dropdown ul {
    position: static;
    display: none;
    z-index: 99;
    padding: 10px 0;
    margin: 10px 20px;
    background-color: var(--nav-dropdown-background-color);
    border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
    box-shadow: none;
    transition: all 0.5s ease-in-out;
  }

  .navmenu .dropdown ul ul {
    background-color: rgba(33, 37, 41, 0.1);
  }

  .navmenu .dropdown>.dropdown-active {
    display: block;
    background-color: rgba(33, 37, 41, 0.03);
  }

  @media (prefers-reduced-motion: reduce) {
    .navmenu a,
    .navmenu a:focus {
      transition: none;
    }
  }

  .mobile-nav-active {
    overflow: hidden;
  }

  .mobile-nav-active .mobile-nav-toggle {
    color: #fff;
    position: absolute;
    font-size: 32px;
    top: 15px;
    right: 15px;
    margin-right: 0;
    z-index: 9999;
  }

  .mobile-nav-active .navmenu {
    position: fixed;
    overflow: hidden;
    inset: 0;
    background: rgba(33, 37, 41, 0.8);
    transition: 0.3s;
  }

  .mobile-nav-active .navmenu>ul {
    display: block;
  }
}

/*--------------------------------------------------------------
# Global Footer
--------------------------------------------------------------*/
.footer {
  color: var(--default-color);
  background-color: var(--background-color);
  font-size: 14px;
  position: relative;
}

.footer .footer-top .container {
  max-width: 1120px;
}

.footer .footer-top {
  background: color-mix(in srgb, var(--background-color), white 4%);
  padding: 52px 0 32px;
}

.footer .footer-top .row {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  align-items: start;
}

.footer .footer-about {
  flex: 1 1 520px;
  max-width: 100%;
}

.footer .footer-about .logo {
  line-height: 1;
  margin-bottom: 18px;
}

.footer .footer-about .logo img {
  max-height: 40px;
  margin-right: 6px;
}

.footer .footer-about .logo span {
  color: var(--heading-color);
  font-family: var(--heading-font);
  font-size: 26px;
  font-weight: 700;
  letter-spacing: 1px;
}

.footer .footer-about p {
  font-size: 14px;
  font-family: var(--default-font);
  line-height: 1.6;
}

.footer h4 {
  font-size: 16px;
  font-weight: 600;
  position: relative;
  padding-bottom: 10px;
  margin-bottom: 12px;
}

.footer h4::after {
  content: "";
  position: absolute;
  display: block;
  width: 20px;
  height: 2px;
  background: var(--accent-color);
  bottom: 0;
  left: 0;
}

.footer .footer-links {
  margin-bottom: 0;
  flex: 0 1 280px;
  min-width: 0;
  max-width: 320px;
  width: 100%;
  padding: 0;
  border-radius: 0;
  border: 0;
  background: transparent;
  margin-left: auto;
}

.footer .footer-top .footer-links {
  display: block !important;
  visibility: visible !important;
  opacity: 1 !important;
}

.footer .footer-links h4,
.footer .footer-links ul a {
  color: color-mix(in srgb, var(--default-color), transparent 12%);
}

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

.footer .footer-links ul i {
  padding-right: 2px;
  font-size: 12px;
  line-height: 0;
}

.footer .footer-links ul li {
  padding: 6px 0;
  display: flex;
  align-items: flex-start;
}

.footer .footer-links ul li:first-child {
  padding-top: 0;
}

.footer .footer-links ul a {
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  display: inline-block;
  line-height: 1.35;
  font-weight: 500;
  transition: color 0.2s ease;
}

.footer .footer-links ul a:hover {
  color: var(--accent-color);
}

.footer .footer-contact p {
  margin-bottom: 6px;
}

.footer .copyright {
  border-top: 1px solid color-mix(in srgb, var(--default-color), transparent 85%);
  padding: 18px 0;
}

.footer .copyright .container {
  gap: 16px;
}

.footer .copyright p {
  margin-bottom: 0;
}

.footer .credits {
  margin-top: 5px;
  font-size: 13px;
}

.footer .social-links a {
  font-size: 17px;
  display: inline-block;
  background: color-mix(in srgb, var(--default-color), transparent 92%);
  color: var(--accent-color);
  line-height: 1;
  padding: 8px 0;
  margin-right: 5px;
  border-radius: 6px;
  text-align: center;
  width: 36px;
  height: 36px;
  transition: 0.3s;
}

@media (max-width: 991px) {
  .footer .footer-top {
    padding: 40px 0 24px;
  }

  .footer .footer-top .container {
    padding-left: 24px;
    padding-right: 24px;
  }

  .footer .footer-top .row {
    display: block;
    gap: 0;
  }

  .footer .footer-top .row>[class*="col-"] {
    width: 100% !important;
    max-width: 100% !important;
    flex: 0 0 100% !important;
    padding-left: 0;
    padding-right: 0;
  }

  .footer .footer-about {
    margin-bottom: 18px;
  }

  .footer .footer-links {
    max-width: 100%;
    width: 100%;
    margin-left: 0;
    margin-top: 10px;
    padding-top: 14px;
    border-top: 1px solid color-mix(in srgb, var(--default-color), transparent 82%);
  }

  .footer .footer-links h4 {
    margin-bottom: 10px;
  }

  .footer .copyright .container {
    flex-direction: column;
    justify-content: center !important;
    align-items: center !important;
    gap: 10px;
    text-align: center;
  }

  .footer .social-links {
    order: 0 !important;
    margin-left: 0 !important;
    margin-bottom: 6px !important;
  }
}

.footer .social-links a:hover {
  color: var(--contrast-color);
  background: var(--accent-color);
  text-decoration: none;
}

/*--------------------------------------------------------------
# Preloader
--------------------------------------------------------------*/
#preloader {
  position: fixed;
  inset: 0;
  z-index: 999999;
  overflow: hidden;
  background: var(--background-color);
  transition: all 0.6s ease-out;
}

#preloader:before {
  content: "";
  position: fixed;
  top: calc(50% - 30px);
  left: calc(50% - 30px);
  border: 6px solid #ffffff;
  border-color: var(--accent-color) transparent var(--accent-color) transparent;
  border-radius: 50%;
  width: 60px;
  height: 60px;
  animation: animate-preloader 1.5s linear infinite;
}

@keyframes animate-preloader {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

/*--------------------------------------------------------------
# Scroll Top Button
--------------------------------------------------------------*/
.scroll-top {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  right: 15px;
  bottom: 15px;
  z-index: 99999;
  background-color: var(--accent-color);
  width: 40px;
  height: 40px;
  border-radius: 4px;
  transition: all 0.4s;
}

.scroll-top i {
  font-size: 24px;
  color: var(--contrast-color);
  line-height: 0;
}

.scroll-top:hover {
  background-color: color-mix(in srgb, var(--accent-color), transparent 20%);
  color: var(--contrast-color);
}

.scroll-top.active {
  visibility: visible;
  opacity: 1;
}

/*--------------------------------------------------------------
# Disable aos animation delay on mobile devices
--------------------------------------------------------------*/
@media screen and (max-width: 768px) {
  [data-aos-delay] {
    transition-delay: 0 !important;
  }
}

/*--------------------------------------------------------------
# Global Page Titles & Breadcrumbs
--------------------------------------------------------------*/
.page-title {
  color: var(--default-color);
  background-color: var(--background-color);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  padding: 5px 0;
  text-align: center;
  position: relative;
}

.page-title:before {
  content: "";
  background-color: color-mix(in srgb, var(--background-color), transparent 50%);
  position: absolute;
  inset: 0;
}

.page-title h1 {
  font-size: 42px;
  font-weight: 700;
  margin-bottom: 10px;
}

.page-title .breadcrumbs ol {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  justify-content: center;
  padding: 0;
  margin: 0;
  font-size: 16px;
  font-weight: 400;
}

.page-title .breadcrumbs ol li+li {
  padding-left: 10px;
}

.page-title .breadcrumbs ol li+li::before {
  content: "/";
  display: inline-block;
  padding-right: 10px;
  color: color-mix(in srgb, var(--default-color), transparent 50%);
}

/*--------------------------------------------------------------
# Global Sections
--------------------------------------------------------------*/
section,
.section {
  color: var(--default-color);
  background-color: var(--background-color);
  padding: 60px 0;
  scroll-margin-top: 100px;
  overflow: clip;
}

@media (max-width: 1199px) {

  section,
  .section {
    scroll-margin-top: 66px;
  }
}

/*--------------------------------------------------------------
# Global Section Titles
--------------------------------------------------------------*/
.section-title {
  text-align: center;
  padding-bottom: 60px;
  position: relative;
}

.section-title h2 {
  font-size: 28px;
  font-weight: 500;
  margin-bottom: 15px;
}

.section-title p {
  margin-bottom: 0;
  font-family: var(--heading-font);
  font-size: 32px;
}

/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
.hero {
  padding: 0;
}

.hero .carousel {
  width: 100%;
  min-height: calc(100vh - 100px);
  padding: 0;
  margin: 0;
  background-color: var(--background-color);
  position: relative;
}

.hero img {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}

.hero .carousel-item {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  overflow: hidden;
}

.hero .carousel-item:before {
  content: "";
  background: color-mix(in srgb, var(--background-color), transparent 60%);
  position: absolute;
  inset: 0;
  z-index: 2;
}

.hero .carousel-container {
  position: absolute;
  inset: 90px 64px 64px 64px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  z-index: 3;
}

.hero h2 {
  margin-bottom: 30px;
  font-size: 48px;
  font-weight: 700;
  animation: fadeInDown 1s both;
}

@media (max-width: 768px) {
  .hero h2 {
    font-size: 30px;
  }
}

.hero p {
  animation: fadeInDown 1s both 0.2s;
}

@media (min-width: 1024px) {

  .hero h2,
  .hero p {
    max-width: 60%;
  }
}

.hero .btn-get-started {
  color: var(--contrast-color);
  background: var(--accent-color);
  font-family: var(--heading-font);
  font-weight: 500;
  font-size: 15px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 8px 32px;
  border-radius: 50px;
  transition: 0.5s;
  margin: 10px;
  animation: fadeInUp 1s both 0.4s;
}

.hero .btn-get-started:hover {
  background: color-mix(in srgb, var(--accent-color), transparent 20%);
}

.hero .btn-reserve-logo {
  position: relative;
  overflow: hidden;
  isolation: isolate;
  color: #ffffff;
  background: linear-gradient(135deg, #f0a11a 0%, #dc8f0f 35%, #1f7f3d 100%);
  font-family: var(--heading-font);
  font-weight: 400;
  font-size: 16px;
  letter-spacing: 0.35px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  text-shadow: 0 1px 1px color-mix(in srgb, #000000, transparent 82%);
  padding: 11px 24px;
  border-radius: 50px;
  border: 1px solid color-mix(in srgb, #1f7f3d, #ffffff 72%);
  box-shadow: 0 10px 22px color-mix(in srgb, #1f7f3d, transparent 72%);
  transition: transform 0.25s ease, box-shadow 0.25s ease, filter 0.25s ease, letter-spacing 0.25s ease;
  animation: fadeInUp 1s both 0.4s;
}

.hero .btn-reserve-logo::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(105deg, transparent 18%, color-mix(in srgb, #ffffff, transparent 74%) 48%, transparent 75%);
  transform: translateX(-130%);
  transition: transform 0.65s ease;
  z-index: -1;
}

.hero .btn-reserve-logo .cta-label {
  line-height: 1;
}

.hero .btn-reserve-logo:hover {
  color: #ffffff;
  transform: translateY(-2px);
  filter: brightness(1.05);
  letter-spacing: 0.5px;
  box-shadow: 0 14px 28px color-mix(in srgb, #1f7f3d, transparent 62%);
}

.hero .btn-reserve-logo:hover::before {
  transform: translateX(130%);
}

.hero .btn-reserve-logo:focus-visible {
  outline: 2px solid color-mix(in srgb, #f0a11a, #ffffff 25%);
  outline-offset: 2px;
}

.hero .carousel-control-prev,
.hero .carousel-control-next {
  width: 10%;
  transition: 0.3s;
  opacity: 0.5;
}

.hero .carousel-control-prev:focus,
.hero .carousel-control-next:focus {
  opacity: 0.5;
}

.hero .carousel-control-prev:hover,
.hero .carousel-control-next:hover {
  opacity: 0.9;
}

@media (min-width: 1024px) {

  .hero .carousel-control-prev,
  .hero .carousel-control-next {
    width: 5%;
  }
}

.hero .carousel-control-next-icon,
.hero .carousel-control-prev-icon {
  background: none;
  font-size: 32px;
  line-height: 1;
}

.hero .carousel-indicators {
  list-style: none;
}

.hero .carousel-indicators li {
  cursor: pointer;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translate3d(0, 100%, 0);
  }

  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}

@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translate3d(0, -100%, 0);
  }

  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}

/*--------------------------------------------------------------
# Services Section
--------------------------------------------------------------*/
.services .section-title h2 {
  color: var(--accent-color);
  font-size: 20px;
}

.services .content .service-item {
  background-color: var(--surface-color);
  padding: 0 0 72px;
  border-radius: 14px;
  border-top: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
  border-left: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
  position: relative;
  min-height: clamp(320px, 39vw, 450px);
  height: auto;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  transform-style: preserve-3d;
  perspective: 1200px;
  cursor: pointer;
  touch-action: manipulation;
}

.services .content .row>[class*=col-] {
  display: flex;
}

.services .content .row>[class*=col-] .service-item {
  width: 100%;
}

.services .content .service-item .service-item-icon {
  position: relative;
  margin: 0 0 8px;
  background: #f7f2e7;
  color: var(--accent-color);
  width: 100%;
  max-width: 100%;
  aspect-ratio: 16 / 11;
  border-radius: 14px 14px 0 0;
  overflow: hidden;
}

.services .content .service-item .service-item-icon img {
  width: 50px;
}

.services .content .service-item .service-item-icon .service-item-photo {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center top;
  border-radius: inherit;
  display: block;
}

@media (max-width: 576px) {
  .services .content .service-item .service-item-icon {
    margin: 0 0 12px;
    width: 100%;
    max-width: 100%;
  }
}

.services .content .service-item .service-item-icon:before {
  position: absolute;
  content: "";
  transform: rotate(45deg);
  z-index: -1;
  left: -20px;
  border-top: 40px solid transparent;
  border-bottom: 40px solid transparent;
  border-right: 40px solid var(--accent-color);
  display: none;
}

.services .content .service-item .service-item-icon>span {
  color: var(--default-color);
  font-size: 4rem;
}

.services .content .service-item .service-item-content {
  width: calc(100% - 24px);
  margin: 0 12px;
  padding-left: 5px;
  padding-right: 4px;
  flex: 1;
  min-height: 0;
  overflow: visible;
}

.services .content .service-item .service-item-content .service-heading {
  font-size: 20px;
  color: var(--default-color);
  font-weight: 400;
}

.services .content .service-item .service-item-content p {
  font-size: 15px;
  margin: 0 0 6px;
}

.services .content .service-item .service-item-content h6 {
  display: block;
  margin: 8px 0 10px;
  padding: 8px 10px;
  border-left: 4px solid #f08a24;
  border-radius: 0 8px 8px 0;
  background: linear-gradient(90deg, color-mix(in srgb, #f08a24, white 78%) 0%, color-mix(in srgb, #f08a24, white 92%) 55%, transparent 100%);
  color: color-mix(in srgb, #f08a24, black 35%);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.2px;
  line-height: 1.4;
  box-shadow: inset 0 0 0 1px color-mix(in srgb, #f08a24, white 64%);
}

.services .content .service-item .service-item-icon,
.services .content .service-item .service-item-content {
  transition: transform 0.6s cubic-bezier(0.2, 0.7, 0.2, 1), opacity 0.45s ease;
  backface-visibility: hidden;
  transform-style: preserve-3d;
}

.services .content .service-item .service-more-details {
  position: absolute;
  inset: 10px 12px 62px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  gap: 6px;
  padding: 0 0 0 5px;
  border-radius: 14px;
  border: none;
  background: var(--surface-color);
  box-shadow: none;
  color: var(--default-color);
  opacity: 0;
  transform: rotateY(-180deg) scale(0.98);
  transition: transform 0.65s cubic-bezier(0.2, 0.7, 0.2, 1), opacity 0.45s ease;
  pointer-events: none;
  z-index: 4;
  overflow-y: auto;
  scrollbar-gutter: stable;
  scrollbar-width: thin;
}

.services .content .service-item .service-more-details h4 {
  color: #14532d;
  margin: 0;
  font-size: clamp(15px, 1.35vw, 18px);
  font-weight: 700;
  letter-spacing: 0.2px;
  line-height: 1.3;
}

.services .content .service-item .service-more-details p {
  margin: 0;
  font-size: clamp(12.5px, 1.08vw, 14px);
  line-height: 1.5;
  color: #166534;
}

.services .content .service-item .service-more-details ul {
  margin: 2px 0 0;
  padding-left: 17px;
}

.services .content .service-item .service-more-details li {
  font-size: clamp(12.5px, 1.03vw, 14px);
  line-height: 1.42;
  margin-bottom: 2px;
  color: #166534;
}

.services .content .service-item.is-flipped .service-item-icon,
.services .content .service-item.is-flipped .service-item-content {
  transform: rotateY(180deg);
  opacity: 0;
}

.services .content .service-item.is-flipped .service-more-details {
  opacity: 1;
  transform: rotateY(0) scale(1);
  pointer-events: auto;
}

@media (min-width: 992px) and (hover: hover) and (pointer: fine) {
  .services .content .service-item:hover .service-item-icon,
  .services .content .service-item:hover .service-item-content {
    transform: rotateY(180deg);
    opacity: 0;
  }

  .services .content .service-item:hover .service-more-details {
    opacity: 1;
    transform: rotateY(0) scale(1);
    pointer-events: auto;
  }
}

.services .content .service-item-cta {
  display: flex;
  justify-content: center;
  position: absolute;
  left: 14px;
  right: 14px;
  bottom: 12px;
  z-index: 6;
}

@media (max-width: 991px) {
  .services .content .service-item {
    min-height: clamp(250px, 52vw, 330px);
    height: auto;
    padding: 0 0 64px;
  }

  .services .content .service-item .service-item-icon {
    margin: 0 0 8px;
    width: 100%;
    max-width: 100%;
  }

  .services .content .service-item .service-item-icon,
  .services .content .service-item .service-item-content {
    transform: none;
    opacity: 1;
    visibility: visible;
  }

  .services .content .service-item .service-item-content {
    width: calc(100% - 20px);
    margin: 0 10px;
  }

  .services .content .service-item .service-more-details {
    transform: none;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
  }

  .services .content .service-item.is-flipped .service-item-icon,
  .services .content .service-item.is-flipped .service-item-content {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
  }

  .services .content .service-item.is-flipped .service-more-details {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
  }

  .services .content .service-item-cta {
    left: 14px;
    right: 14px;
    bottom: 10px;
  }
}

@media (max-width: 576px) {
  .services .content .service-item .service-more-details {
    inset: 10px 10px 56px;
    gap: 6px;
  }

  .services .content .service-item .service-more-details h4 {
    font-size: 19px;
    color: #14532d;
    line-height: 1.3;
  }

  .services .content .service-item .service-more-details p {
    font-size: 16px;
    color: #166534;
    line-height: 1.45;
  }

  .services .content .service-item .service-more-details li {
    font-size: 15px;
    color: #166534;
    line-height: 1.38;
    margin-bottom: 2px;
  }
}

@media (min-width: 577px) and (max-width: 991px) {
  .services .content .service-item .service-more-details {
    inset: 10px 10px 58px;
  }

  .services .content .service-item .service-more-details h4 {
    font-size: 19px;
    color: #14532d;
    line-height: 1.3;
  }

  .services .content .service-item .service-more-details p,
  .services .content .service-item .service-more-details li {
    font-size: 16px;
    color: #166534;
    line-height: 1.42;
  }
}

.services .content .service-item-cta .order-now-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: 0;
  padding: 10px 18px;
  border-radius: 999px;
  background: linear-gradient(135deg, color-mix(in srgb, var(--accent-color), white 6%), color-mix(in srgb, var(--accent-color), black 12%));
  color: var(--contrast-color);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.2px;
  text-decoration: none;
  box-shadow: 0 8px 18px color-mix(in srgb, var(--accent-color), transparent 70%);
  transition: transform 0.25s ease, box-shadow 0.25s ease, filter 0.25s ease;
}

.services .content .service-item-cta .order-now-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 24px color-mix(in srgb, var(--accent-color), transparent 64%);
  filter: saturate(1.08);
}

.services .content .service-item-cta .order-now-btn:focus-visible {
  outline: 2px solid color-mix(in srgb, var(--accent-color), white 28%);
  outline-offset: 2px;
}

@media (min-width: 769px) {
  .services .content [class^=col-]:nth-child(4n+4) .service-item {
    border-right: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
  }

  .services .content [class^=col-]:nth-last-child(-n+4) .service-item {
    border-bottom: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
  }
}

@media (max-width: 768px) {
  .services .content [class^=col-]:nth-child(2n+2) .service-item {
    border-right: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
  }

  .services .content [class^=col-]:last-child .service-item,
  .services .content [class^=col-]:nth-last-child(2) .service-item {
    border-bottom: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
  }
}

@media (min-width: 700px) and (max-width: 991px) {
  .services .content .row>[class*=col-] {
    flex: 0 0 50%;
    max-width: 50%;
    display: flex;
  }

  .services .content .service-item {
    min-height: clamp(290px, 45vw, 370px);
    height: auto;
    padding: 0 0 64px;
  }

  .services .content .service-item .service-item-icon {
    margin: 0 0 8px;
    width: 100%;
    max-width: 100%;
  }

  .services .content [class^=col-]:nth-child(2n+2) .service-item {
    border-right: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
  }

  .services .content [class^=col-]:nth-last-child(-n+2) .service-item {
    border-bottom: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
  }
}

@media (min-width: 585px) and (max-width: 699px) {
  .services .content .row>[class*=col-] {
    flex: 0 0 100%;
    max-width: 100%;
    display: flex;
  }

  .services .content .service-item {
    min-height: clamp(270px, 50vw, 350px);
    height: auto;
    padding: 0 0 58px;
  }

  .services .content .service-item .service-item-icon {
    margin: 0 0 8px;
    width: 100%;
    max-width: 100%;
  }

  .services .content .service-item .service-item-content p {
    margin-bottom: 8px;
  }

  .services .content .service-item .service-item-content h6 {
    margin: 8px 0 10px;
    padding: 8px 10px;
  }

  .services .content .service-item .service-more-details {
    inset: 10px 10px 54px;
    gap: 6px;
    padding: 0 0 0 5px;
  }

  .services .content .service-item .service-more-details p,
  .services .content .service-item .service-more-details li {
    font-size: 15px;
    line-height: 1.35;
  }

  .services .content .service-item-cta {
    left: 12px;
    right: 12px;
    bottom: 10px;
  }

}

@media (max-width: 576px) {
  .services .content [class^=col-] .service-item {
    border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
    margin-bottom: 10px;
  }
}

/*--------------------------------------------------------------
# About Section
--------------------------------------------------------------*/
.about .section-title {
  margin-bottom: 60px;
}

.about .content {
  background: var(--accent-color);
  color: var(--contrast-color);
  padding: 7rem 0;
}

.about .content .img-overlap {
  margin-top: -150px;
}

.about p {
  color: var(--contrast-color);
}

.about .content-title {
  color: var(--contrast-color);
  font-weight: 300;
  text-align: left;
}

.about .content-title strong {
  font-weight: 700;
}

.about .content-subtitle {
  font-weight: 300;
  color: var(--contrast-color);
  text-transform: uppercase;
  font-size: 1.3rem;
}

/*--------------------------------------------------------------
# Services 2 Section
--------------------------------------------------------------*/
.services-2 {
  overflow: visible;
  margin-bottom: 200px;
}

.services-2 .section-title {
  text-align: left;
}

.services-2 .section-title h2 {
  color: color-mix(in srgb, var(--contrast-color), transparent 50%);
  text-transform: uppercase;
  font-size: 20px;
}

.services-2 .section-title p {
  color: var(--contrast-color);
}

.services-2 .services-carousel-wrap {
  position: relative;
  margin-bottom: -200px;
}

.services-2 .swiper-wrapper {
  height: auto;
}

.services-2 .service-item {
  position: relative;
  overflow: hidden;
  border-radius: 8px;
}

.services-2 .service-item:before {
  content: "";
  background: linear-gradient(180deg,
      color-mix(in srgb, #000000, transparent 100%) 18%,
      color-mix(in srgb, #000000, transparent 74%) 58%,
      color-mix(in srgb, #000000, transparent 42%) 100%);
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  position: absolute;
  opacity: 0.72;
  visibility: visible;
  z-index: 1;
  transition: opacity 0.35s ease;
}

.services-2 .service-item img {
  transition: transform 0.55s cubic-bezier(0.2, 0.7, 0.2, 1);
  transform: scale(1);
}

.services-2 .service-item .service-item-contents {
  z-index: 9;
  position: absolute;
  bottom: 18px;
  left: 18px;
  right: 18px;
  padding: 0;
  border-radius: 0;
  border: 0;
  background: transparent;
  box-shadow: none;
  backdrop-filter: none;
  transition: transform 0.3s ease;
  transform: translateY(0%);
  opacity: 1;
  visibility: visible;
}

.services-2 .service-item .service-item-contents a {
  color: inherit;
  display: block;
}

.services-2 .service-item .service-item-contents .service-item-category {
  display: inline-flex;
  align-items: center;
  margin-bottom: 6px;
  padding: 0;
  border-radius: 0;
  color: #b9c0bc;
  background: transparent;
  text-transform: uppercase;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.8px;
  text-shadow: none;
}

.services-2 .service-item .service-item-contents .service-item-title {
  color: #f0f2f1;
  font-size: clamp(19px, 1.9vw, 22px);
  line-height: 1.25;
  text-shadow: 0 1px 4px color-mix(in srgb, #000000, transparent 35%);
  margin-bottom: 0;
}

@media (max-width: 768px) {
  .services-2 .service-item .service-item-contents {
    left: 14px;
    right: 14px;
    bottom: 12px;
    padding: 0;
  }

  .services-2 .service-item .service-item-contents .service-item-title {
    font-size: 17px;
  }
}

.services-2 .service-item:hover:before {
  opacity: 0.78;
  visibility: visible;
}

.services-2 .service-item:hover .service-item-contents {
  transform: translateY(0%);
  opacity: 1;
  visibility: visible;
}

.services-2 .service-item:hover img {
  transform: scale(1.03);
}

.services-2 .navigation-prev,
.services-2 .navigation-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 9;
  width: 46px;
  height: 46px;
  background: var(--contrast-color);
  background-color: none;
  border: none;
  transition: 0.3s all ease;
}

.services-2 .navigation-prev i,
.services-2 .navigation-next i {
  font-size: 2rem;
}

.services-2 .navigation-prev:hover,
.services-2 .navigation-next:hover {
  background-color: var(--accent-color);
  color: var(--contrast-color);
}

.services-2 .navigation-prev {
  left: 10px;
}

.services-2 .navigation-next {
  right: 10px;
}

.services-2 .carousel-control-prev,
.services-2 .carousel-control-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 99;
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, var(--accent-color) 0%, #1f5d2f 100%);
  border: 2px solid var(--accent-color);
  border-radius: 50%;
  transition: all 0.4s ease;
  opacity: 0.9;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 4px 12px rgba(31, 93, 47, 0.2);
}

.services-2 .carousel-control-prev-icon,
.services-2 .carousel-control-next-icon {
  background: none;
  font-size: 20px;
  line-height: 1;
  color: var(--contrast-color);
  width: auto;
  height: auto;
}

.services-2 .carousel-control-prev:hover,
.services-2 .carousel-control-next:hover {
  background: linear-gradient(135deg, #2f5f36 0%, #1a3a20 100%);
  border-color: #1a3a20;
  color: var(--contrast-color);
  transform: translateY(-50%) scale(1.15);
  box-shadow: 0 8px 24px rgba(31, 93, 47, 0.4);
}

.services-2 .carousel-control-prev:hover .carousel-control-prev-icon,
.services-2 .carousel-control-next:hover .carousel-control-next-icon {
  color: var(--contrast-color);
}

.services-2 .carousel-control-prev {
  left: 20px;
}

.services-2 .carousel-control-next {
  right: 20px;
}

.services-2 .swiper {
  padding-bottom: 50px;
}

.services-2 .swiper-pagination {
  bottom: 0px;
}

.services-2 .swiper-pagination .swiper-pagination-bullet {
  border-radius: 0;
  width: 20px;
  height: 4px;
  background-color: color-mix(in srgb, var(--background-color), transparent 80%) !important;
  opacity: 1;
}

.services-2 .swiper-pagination .swiper-pagination-bullet-active {
  background-color: var(--accent-color) !important;
}

/*--------------------------------------------------------------
# Testimonials Section
--------------------------------------------------------------*/
.testimonials .row>[class*=col-] {
  display: flex;
}

.testimonials .testimonial {
  width: 100%;
  display: flex;
  flex-direction: column;
  min-height: 520px;
  padding: 20px;
  background: var(--surface-color);
  border-radius: 14px;
}

.testimonials .testimonial img {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  margin-bottom: 20px;
}

.testimonials .testimonial blockquote {
  flex: 1;
  margin: 0 0 16px;
  min-height: 280px;
  max-height: 280px;
  overflow-y: auto;
  padding-right: 6px;
}

.testimonials .testimonial blockquote p {
  font-size: clamp(16px, 1.45vw, 20px);
  line-height: 1.5;
  color: var(--default-color);
  font-weight: 500;
  margin: 0;
}

.testimonials .testimonial .client-name {
  text-transform: uppercase;
  font-size: 1.2rem;
  color: var(--accent-color);
  margin-top: auto;
}

@media (max-width: 991px) {
  .testimonials .testimonial {
    min-height: 460px;
  }

  .testimonials .testimonial blockquote {
    min-height: 230px;
    max-height: 230px;
  }
}

@media (max-width: 576px) {
  .testimonials .testimonial {
    min-height: 420px;
    padding: 16px;
  }

  .testimonials .testimonial blockquote {
    min-height: 200px;
    max-height: 200px;
  }
}

/*--------------------------------------------------------------
# Recent Posts Section
--------------------------------------------------------------*/
.recent-posts .post-item {
  background: var(--surface-color);
  box-shadow: 0px 2px 20px rgba(0, 0, 0, 0.1);
  transition: 0.3s;
}

.recent-posts .post-item .post-img img {
  transition: 0.5s;
}

.recent-posts .post-item .post-date {
  position: absolute;
  right: 0;
  bottom: 0;
  background-color: var(--accent-color);
  color: var(--contrast-color);
  text-transform: uppercase;
  font-size: 13px;
  padding: 6px 12px;
  font-weight: 500;
}

.recent-posts .post-item .post-content {
  padding: 30px;
}

.recent-posts .post-item .post-title {
  color: var(--heading-color);
  font-size: 20px;
  font-weight: 700;
  transition: 0.3s;
  margin-bottom: 15px;
}

.recent-posts .post-item .meta i {
  font-size: 16px;
  color: var(--accent-color);
}

.recent-posts .post-item .meta span {
  font-size: 15px;
  color: color-mix(in srgb, var(--default-color), transparent 50%);
}

.recent-posts .post-item hr {
  color: color-mix(in srgb, var(--default-color), transparent 80%);
  margin: 20px 0;
}

.recent-posts .post-item .readmore {
  display: flex;
  align-items: center;
  font-weight: 600;
  line-height: 1;
  transition: 0.3s;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
}

.recent-posts .post-item .readmore i {
  line-height: 0;
  margin-left: 6px;
  font-size: 16px;
}

.recent-posts .post-item:hover .post-title,
.recent-posts .post-item:hover .readmore {
  color: var(--accent-color);
}

.recent-posts .post-item:hover .post-img img {
  transform: scale(1.1);
}

/*--------------------------------------------------------------
# Call To Action Section
--------------------------------------------------------------*/
.call-to-action .content {
  padding: 20px 0;
}

.call-to-action .content h3 {
  font-weight: 300;
  text-transform: uppercase;
}

.call-to-action .content .form-subscribe .form-control {
  border: 2px solid var(--accent-color);
  background: var(--surface-color);
  border-radius: 0;
}

.call-to-action .content .form-subscribe input[type=email] {
  height: 63px !important;
  color: var(--default-color);
}

.call-to-action .content .form-subscribe input[type=email]:focus {
  box-shadow: none;
}

.call-to-action .content .form-subscribe input[type=email]::placeholder {
  color: color-mix(in srgb, var(--contrast-color), transparent 50%);
}

.call-to-action .content .loading,
.call-to-action .content .error-message,
.call-to-action .content .sent-message {
  margin-top: 15px;
}

.call-to-action .content .btn {
  color: var(--contrast-color);
  background-color: var(--accent-color);
  border: 1px solid var(--accent-color);
  border-radius: 0;
}

.call-to-action .content .btn:hover,
.call-to-action .content .btn:active,
.call-to-action .content .btn:focus {
  box-shadow: none;
  outline: none;
  background-color: var(--contrast-color);
  border: 1px solid var(--contrrast-color);
}

/*--------------------------------------------------------------
# About 3 Section
--------------------------------------------------------------*/
.about-3 .content-title {
  color: var(--accent-color);
  margin-bottom: 30px;
}

.about-3 .btn-cta {
  text-transform: uppercase;
  font-size: 14px;
  padding-top: 20px;
  padding-bottom: 20px;
  padding-left: 30px;
  padding-right: 30px;
  background-color: var(--accent-color);
  color: var(--contrast-color);
  border-radius: 6px;
}

.about-3 .list-check {
  margin-bottom: 50px;
}

.about-3 .list-check li {
  display: block;
  padding-left: 30px;
  position: relative;
}

.about-3 .list-check li:before {
  content: "\f26e";
  display: inline-block;
  font-family: "bootstrap-icons" !important;
  font-style: normal;
  font-weight: normal !important;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  vertical-align: -0.125em;
  -webkit-font-smoothing: antialiased;
  position: absolute;
  top: 0.1rem;
  font-size: 20px;
  left: 0;
  color: var(--accent-color);
}

.about-3 .pulsating-play-btn {
  position: absolute;
  left: calc(50% - 47px);
  top: calc(50% - 47px);
}

/*--------------------------------------------------------------
# Team Section
--------------------------------------------------------------*/
.team .person {
  position: relative;
}

.team .person figure {
  margin-bottom: 0;
  padding-bottom: 0;
  position: relative;
  overflow: hidden;
  margin-bottom: 30px;
}

.team .person img {
  transition: 0.3s all ease;
}

.team .person .person-contents {
  text-align: center;
}

.team .person .person-contents h3 {
  color: var(--heading-color);
  font-size: 24px;
}

.team .person .person-contents .position {
  color: var(--accent-color);
}

.team .person:hover img {
  transform: scale(1.05);
}

.team .person .social {
  position: absolute;
  bottom: 10px;
  left: 10px;
  z-index: 2;
}

.team .person .social a {
  display: block;
  margin-bottom: 10px;
  width: 40px;
  height: 40px;
  background: var(--contrast-color);
  position: relative;
}

.team .person .social a>span {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.team .person .social a:hover {
  background: var(--accent-color);
  color: var(--contrast-color);
}

/*--------------------------------------------------------------
# Comment Form Section
--------------------------------------------------------------*/
.comment-form {
  padding-top: 10px;
}

.comment-form form {
  background-color: var(--surface-color);
  margin-top: 30px;
  padding: 30px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}

.comment-form form h4 {
  font-weight: bold;
  font-size: 22px;
}

.comment-form form p {
  font-size: 14px;
}

.comment-form form input {
  background-color: var(--surface-color);
  color: var(--default-color);
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 70%);
  font-size: 14px;
  border-radius: 4px;
  padding: 10px 10px;
}

.comment-form form input:focus {
  color: var(--default-color);
  background-color: var(--surface-color);
  box-shadow: none;
  border-color: var(--accent-color);
}

.comment-form form input::placeholder {
  color: color-mix(in srgb, var(--default-color), transparent 50%);
}

.comment-form form textarea {
  background-color: var(--surface-color);
  color: var(--default-color);
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 70%);
  border-radius: 4px;
  padding: 10px 10px;
  font-size: 14px;
  height: 120px;
}

.comment-form form textarea:focus {
  color: var(--default-color);
  box-shadow: none;
  border-color: var(--accent-color);
  background-color: var(--surface-color);
}

.comment-form form textarea::placeholder {
  color: color-mix(in srgb, var(--default-color), transparent 50%);
}

.comment-form form .form-group {
  margin-bottom: 25px;
}

.comment-form form .btn-primary {
  border-radius: 4px;
  padding: 10px 20px;
  border: 0;
  background-color: var(--accent-color);
  color: var(--contrast-color);
}

.comment-form form .btn-primary:hover {
  color: var(--contrast-color);
  background-color: color-mix(in srgb, var(--accent-color), transparent 20%);
}

/*--------------------------------------------------------------
# Contact Section
--------------------------------------------------------------*/
.contact {
  padding-top: 10px;
}

.contact .info {
  background-color: var(--surface-color);
  padding: 40px;
  box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
  overflow: hidden;
}

.contact .info h3 {
  font-weight: 600;
  font-size: 24px;
}

.contact .info p {
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  margin-bottom: 30px;
  font-size: 15px;
}

.contact .info-item+.info-item {
  padding-top: 20px;
  margin-top: 20px;
  border-top: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}

.contact .info-item i {
  font-size: 24px;
  color: var(--accent-color);
  transition: all 0.3s ease-in-out;
  margin-right: 20px;
}

.contact .info-item h4 {
  padding: 0;
  font-size: 18px;
  line-height: 24px;
  font-weight: 600;
  margin-bottom: 5px;
}

.contact .info-item p {
  padding: 0;
  margin-bottom: 0;
  font-size: 14px;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
}

.contact .php-email-form {
  width: 100%;
}

.contact .php-email-form .form-group {
  padding-bottom: 8px;
}

.contact .php-email-form input[type=text],
.contact .php-email-form input[type=email],
.contact .php-email-form textarea {
  color: var(--default-color);
  background-color: var(--surface-color);
  border-radius: 0px;
  box-shadow: none;
  font-size: 14px;
  border-color: color-mix(in srgb, var(--default-color), transparent 80%);
}

.contact .php-email-form input[type=text]:focus,
.contact .php-email-form input[type=email]:focus,
.contact .php-email-form textarea:focus {
  border-color: var(--accent-color);
}

.contact .php-email-form input[type=text]::placeholder,
.contact .php-email-form input[type=email]::placeholder,
.contact .php-email-form textarea::placeholder {
  color: color-mix(in srgb, var(--default-color), transparent 70%);
}

.contact .php-email-form input[type=text],
.contact .php-email-form input[type=email] {
  height: 48px;
  padding: 10px 15px;
}

.contact .php-email-form textarea {
  padding: 10px 12px;
  height: 290px;
}

.contact .php-email-form button[type=submit] {
  background: var(--accent-color);
  color: var(--contrast-color);
  border: 0;
  padding: 13px 50px;
  transition: 0.4s;
  border-radius: 4px;
}

.contact .php-email-form button[type=submit]:hover {
  background: color-mix(in srgb, var(--accent-color) 90%, black 15%);
}

/*--------------------------------------------------------------
# Widgets
--------------------------------------------------------------*/
.widgets-container {
  margin: 60px 0 30px 0;
}

.widget-title {
  color: var(--heading-color);
  font-size: 20px;
  font-weight: 600;
  padding: 0 0 10px 0;
  margin: 0 0 20px 0;
  position: relative;
}

.widget-title:before {
  content: "";
  position: absolute;
  display: block;
  height: 2px;
  background: color-mix(in srgb, var(--default-color), transparent 90%);
  left: 0;
  right: 0;
  bottom: 1px;
}

.widget-title:after {
  content: "";
  position: absolute;
  display: block;
  width: 40px;
  height: 2px;
  background: var(--accent-color);
  left: 0;
  bottom: 1px;
}

.widget-item {
  margin-bottom: 40px;
}

.widget-item:last-child {
  margin-bottom: 0;
}

.recent-posts-widget .post-item {
  display: flex;
  margin-bottom: 15px;
}

.recent-posts-widget .post-item:last-child {
  margin-bottom: 0;
}

.recent-posts-widget .post-item img {
  width: 80px;
  margin-right: 15px;
}

.recent-posts-widget .post-item h4 {
  font-size: 15px;
  font-weight: bold;
  margin-bottom: 5px;
}

.recent-posts-widget .post-item h4 a {
  color: var(--default-color);
  transition: 0.3s;
}

.recent-posts-widget .post-item h4 a:hover {
  color: var(--accent-color);
}

.recent-posts-widget .post-item time {
  display: block;
  font-style: italic;
  font-size: 14px;
  color: color-mix(in srgb, var(--default-color), transparent 50%);
}

.categories-widget ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.categories-widget ul li {
  padding-bottom: 10px;
}

.categories-widget ul li:last-child {
  padding-bottom: 0;
}

.categories-widget ul a {
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  transition: 0.3s;
}

.categories-widget ul a:hover {
  color: var(--accent-color);
}

.categories-widget ul a span {
  padding-left: 5px;
  color: color-mix(in srgb, var(--default-color), transparent 50%);
  font-size: 14px;
}

.search-widget form {
  background: var(--background-color);
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 70%);
  padding: 3px 10px;
  position: relative;
  transition: 0.3s;
}

.search-widget form input[type=text] {
  border: 0;
  padding: 4px;
  border-radius: 4px;
  width: calc(100% - 40px);
  background-color: var(--background-color);
  color: var(--default-color);
}

.search-widget form input[type=text]:focus {
  outline: none;
}

.search-widget form button {
  background: var(--accent-color);
  color: var(--contrast-color);
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  border: 0;
  font-size: 16px;
  padding: 0 15px;
  margin: -1px;
  transition: 0.3s;
  border-radius: 0 4px 4px 0;
  line-height: 0;
}

.search-widget form button i {
  line-height: 0;
}

.search-widget form button:hover {
  background: color-mix(in srgb, var(--accent-color), transparent 20%);
}

.search-widget form:is(:focus-within) {
  border-color: var(--accent-color);
}

.recent-posts-widget-2 .post-item {
  display: flex;
  flex-direction: column;
  margin-bottom: 20px;
}

.recent-posts-widget-2 .post-item:last-child {
  margin-bottom: 0;
}

.recent-posts-widget-2 .post-item h4 {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 5px;
}

.recent-posts-widget-2 .post-item h4 a {
  color: var(--default-color);
  transition: 0.3s;
}

.recent-posts-widget-2 .post-item h4 a:hover {
  color: var(--accent-color);
}

.recent-posts-widget-2 .post-item time {
  display: block;
  font-style: italic;
  font-size: 14px;
  color: color-mix(in srgb, var(--default-color), transparent 50%);
}

.tags-widget ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.tags-widget ul li {
  display: inline-block;
}

.tags-widget ul a {
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  font-size: 14px;
  padding: 6px 14px;
  margin: 0 6px 8px 0;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 60%);
  display: inline-block;
  transition: 0.3s;
}

.tags-widget ul a:hover {
  background: var(--accent-color);
  color: var(--contrast-color);
  border: 1px solid var(--accent-color);
}

.tags-widget ul a span {
  padding-left: 5px;
  color: color-mix(in srgb, var(--default-color), transparent 60%);
  font-size: 14px;
}

/*--------------------------------------------------------------
# Nutri Guide Cards
--------------------------------------------------------------*/

.nutrition-guides {
  background: linear-gradient(180deg, #f9fbf5 0%, #ffffff 58%);
  padding-top: 42px;
  padding-bottom: 42px;
}

.nutrition-section-title {
  text-align: center;
  margin-bottom: 14px;
}

.nutrition-section-title h2 {
  font-family: "Marcellus", serif;
  font-size: clamp(22px, 2.1vw, 30px);
  margin-bottom: 4px;
  color: #1f2f1f;
}

.nutrition-section-title p {
  margin: 0;
  color: #647365;
  font-size: 12px;
}

.nutrition-tabs {
  margin: 16px 0 14px;
  gap: 8px;
}

.nutrition-tabs .nav-link {
  border: 1px solid #d7e2c9;
  background: #f5f9ef;
  color: #3d503f;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.2px;
  padding: 6px 14px;
  transition: all 0.2s ease;
}

.nutrition-tabs .nav-link:hover {
  background: #eaf3de;
  border-color: #b7ca9c;
}

.nutrition-tabs .nav-link.active {
  background: #2f5f36;
  color: #ffffff;
  border-color: #2f5f36;
  box-shadow: 0 5px 12px rgba(47, 95, 54, 0.25);
}

.nutrition-tab-content {
  margin-top: 6px;
}

.nutrition-bmi-card {
  border: 1px solid #dfe8d4;
  border-radius: 14px;
  background: linear-gradient(140deg, #f7fbf2 0%, #edf6e3 100%);
  padding: 14px;
  margin-bottom: 14px;
}

.nutrition-bmi-title-wrap h3 {
  margin: 0;
  color: #1f2f1f;
  font-size: 20px;
  font-family: "Marcellus", serif;
}

.nutrition-bmi-title-wrap p {
  margin: 4px 0 0;
  font-size: 13px;
  color: #5b6d5f;
}

.nutrition-bmi-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr)) auto;
  gap: 10px;
  align-items: end;
  margin-top: 10px;
}

.nutrition-bmi-field {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.nutrition-bmi-field label {
  font-size: 12px;
  font-weight: 700;
  color: #344a38;
}

.nutrition-bmi-field input {
  height: 38px;
  border: 1px solid #c7d6b4;
  border-radius: 8px;
  padding: 8px 10px;
  background: #fff;
  color: #1f2f1f;
  font-size: 14px;
}

.nutrition-bmi-field input:focus {
  outline: none;
  border-color: #2f5f36;
  box-shadow: 0 0 0 2px rgba(47, 95, 54, 0.15);
}

.nutrition-bmi-btn {
  border: 0;
  border-radius: 8px;
  height: 38px;
  padding: 0 14px;
  background: #2f5f36;
  color: #fff;
  font-size: 13px;
  font-weight: 700;
}

.nutrition-bmi-btn:hover {
  background: #274f2d;
}

.nutrition-bmi-result {
  margin-top: 10px;
  border: 1px dashed #c2d2af;
  border-radius: 10px;
  background: #ffffff;
  padding: 10px;
}

.nutrition-bmi-value,
.nutrition-bmi-category {
  margin: 0;
  font-size: 13px;
  color: #3a4d3d;
}

.nutrition-bmi-result.is-ready .nutrition-bmi-value strong {
  color: #1f5d2f;
}

.nutrition-bmi-category {
  margin-top: 4px;
}

.bmi-recommendation-callout {
  margin-top: 10px;
  border: 1px solid #f1d2a9;
  border-radius: 10px;
  background: #fff8ee;
  padding: 10px;
}

.bmi-recommendation-label {
  margin: 0;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.4px;
  text-transform: uppercase;
  color: #8e520e;
}

.bmi-recommendation-text {
  margin: 4px 0 0;
  font-size: 13px;
  color: #63401f;
}

.bmi-recommendation-callout.is-active {
  border-color: #e28f00;
  background: linear-gradient(135deg, #fff5e8 0%, #ffe6c7 100%);
  box-shadow: 0 8px 18px rgba(120, 76, 18, 0.15);
}

.bmi-reco-card {
  margin-top: 16px;
  border: 1px solid #dde7d2;
  border-radius: 14px;
  background: #ffffff;
  box-shadow: 0 8px 22px rgba(19, 41, 20, 0.08);
  padding: 16px;
}

.bmi-reco-header h3 {
  margin: 0;
  font-family: "Marcellus", serif;
  font-size: 24px;
  color: #1f2f1f;
}

.bmi-reco-header p {
  margin: 6px 0 0;
  color: #5f6f61;
  font-size: 13px;
}

.bmi-reco-note {
  margin: 10px 0 0;
  padding: 10px 12px;
  border-left: 4px solid #e28f00;
  border-radius: 8px;
  background: #fff6ea;
  color: #6b4620;
  font-size: 13px;
  line-height: 1.45;
}

.bmi-reco-note strong {
  color: #8a4d0f;
}

.bmi-suggestion-block {
  margin-top: 10px;
  border: 1px solid #e6ecd9;
  border-radius: 10px;
  background: #fcfdf9;
  padding: 11px 12px;
}

.bmi-suggestion-block h4 {
  margin: 0 0 6px;
  font-size: 16px;
  color: #233524;
}

.bmi-suggestion-block ul {
  margin: 0;
  padding-left: 18px;
}

.bmi-suggestion-block li {
  margin: 0 0 5px;
  font-size: 13px;
  color: #425442;
  line-height: 1.45;
}

.bmi-suggestion-block li:last-child {
  margin-bottom: 0;
}

.bmi-table-wrap {
  margin-top: 12px;
  border: 1px solid #e4ecda;
  border-radius: 12px;
  overflow: auto;
}

.bmi-reco-table {
  width: 100%;
  min-width: 880px;
  border-collapse: collapse;
}

.bmi-reco-table th,
.bmi-reco-table td {
  border-bottom: 1px solid #e7eee0;
  padding: 11px 10px;
  text-align: left;
  vertical-align: top;
  font-size: 13px;
  color: #324634;
}

.bmi-reco-table th {
  background: #eef5e5;
  color: #243526;
  font-size: 12px;
  letter-spacing: 0.2px;
  text-transform: uppercase;
}

.bmi-reco-table tbody tr:nth-child(even) {
  background: #fbfdf8;
}

.bmi-reco-table tbody tr:last-child td {
  border-bottom: 0;
}

.bmi-reco-table tbody tr.is-highlight td {
  background: #f5ede4;
  color: #9a5a1b;
  border-top: 1px solid #efc99d;
  border-bottom: 1px solid #efc99d;
  font-weight: 700;
}

.bmi-reco-table tbody tr.is-highlight {
  animation: bmi-highlight-pulse 1.35s ease-out 1;
}

.bmi-reco-table tbody tr.is-highlight .bmi-tag {
  box-shadow: 0 0 0 2px rgba(226, 143, 0, 0.25);
}

.bmi-reco-table tbody tr.is-highlight td:first-child {
  position: relative;
  border-left: 1px solid #efc99d;
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
  padding-left: 14px;
}

.bmi-reco-table tbody tr.is-highlight td:first-child::before {
  content: "";
  position: absolute;
  left: 0;
  top: -1px;
  bottom: -1px;
  width: 7px;
  background: #e28f00;
}

.bmi-reco-table tbody tr.is-highlight td:last-child {
  border-right: 1px solid #efc99d;
  border-top-right-radius: 14px;
  border-bottom-right-radius: 14px;
}

.bmi-chart-item.is-highlight {
  border-color: #e28f00;
  background: linear-gradient(180deg, #fff6eb 0%, #ffe8cf 100%);
  box-shadow: 0 0 0 3px rgba(226, 143, 0, 0.2), 0 10px 20px rgba(104, 62, 15, 0.12);
  transform: translateY(-2px);
  transition: all 0.25s ease;
}

.bmi-chart-item.is-highlight h4 {
  color: #7a4307;
}

.bmi-chart-item.is-highlight .bmi-plan-list li,
.bmi-chart-item.is-highlight .bmi-plan-list strong {
  color: #6a3b08;
}

@keyframes bmi-highlight-pulse {
  0% {
    box-shadow: inset 7px 0 0 #e28f00, 0 0 0 0 rgba(226, 143, 0, 0.35);
  }
  70% {
    box-shadow: inset 7px 0 0 #e28f00, 0 0 0 10px rgba(226, 143, 0, 0);
  }
  100% {
    box-shadow: inset 7px 0 0 #e28f00, 0 0 0 0 rgba(226, 143, 0, 0);
  }
}

.bmi-tag {
  display: inline-flex;
  align-items: center;
  padding: 4px 8px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 700;
  border: 1px solid transparent;
}

.bmi-tag--under {
  background: #fff4e8;
  color: #8a4b10;
  border-color: #f1cfad;
}

.bmi-tag--healthy {
  background: #eaf7e9;
  color: #215a28;
  border-color: #bfdabf;
}

.bmi-tag--over {
  background: #fff6df;
  color: #7d5b12;
  border-color: #efdca8;
}

.bmi-tag--obese {
  background: #ffeaea;
  color: #7a2626;
  border-color: #e9b4b4;
}

.bmi-chart-grid {
  margin-top: 14px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.bmi-chart-item {
  border: 1px solid #e5ecdc;
  border-radius: 10px;
  padding: 11px;
  background: linear-gradient(180deg, #ffffff 0%, #f8fbf3 100%);
}

.bmi-chart-item h4 {
  margin: 0;
  font-size: 15px;
  color: #223224;
}

.bmi-chart-item p {
  margin: 5px 0 8px;
  font-size: 12px;
  color: #526453;
}

.bmi-plan-list {
  margin: 8px 0 0;
  padding-left: 18px;
}

.bmi-plan-list li {
  margin: 0 0 5px;
  color: #445747;
  font-size: 13px;
  line-height: 1.4;
}

.bmi-plan-list li:last-child {
  margin-bottom: 0;
}

.bmi-plan-list strong {
  color: #2a3e2d;
}

.bmi-meter {
  height: 8px;
  border-radius: 999px;
  background: #e3ebda;
  overflow: hidden;
}

.bmi-meter-fill {
  display: block;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, #3f8e4f 0%, #7fb067 100%);
}

.bmi-meter-fill--100 {
  width: 100%;
}

.bmi-meter-fill--60 {
  width: 60%;
}

.bmi-meter-fill--40 {
  width: 40%;
}

.bmi-meter-fill--25 {
  width: 25%;
}

.nutrition-card {
  --accent: #7f9f48;
  height: 100%;
  border-radius: 12px;
  border: 1px solid #e7eddf;
  background: #ffffff;
  box-shadow: 0 6px 16px rgba(20, 35, 18, 0.07);
  overflow: hidden;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.nutrition-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 20px rgba(20, 35, 18, 0.12);
}

.nutrition-card--mango {
  --accent: #7f9f48;
}

.nutrition-card--banana {
  --accent: #87a83a;
}

.nutrition-card--millet {
  --accent: #8c6a2f;
}

.nutrition-card--dryfruit {
  --accent: #9b6a3a;
}

.nutrition-card-media {
  position: relative;
  padding: 8px;
  background: radial-gradient(circle at 20% 20%, #fff8e7 0%, #f4f7ed 100%);
  border-bottom: 1px solid #edf1e6;
}

.nutrition-card-media img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: 9px;
  display: block;
  filter: brightness(0.78) saturate(0.86) contrast(0.93);
  transition: filter 0.2s ease, transform 0.2s ease;
}

.nutrition-card:hover .nutrition-card-media img {
  filter: brightness(0.86) saturate(0.92) contrast(0.96);
  transform: scale(1.01);
}

.nutrition-chip {
  position: absolute;
  top: 14px;
  left: 14px;
  padding: 3px 8px;
  border-radius: 999px;
  background: #f0f6e7;
  color: #223024;
  border: 1px solid #cfe0b8;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.2px;
  text-transform: uppercase;
}

.nutrition-card-body {
  padding: 10px 11px 11px;
}

.nutrition-card-body h3 {
  font-family: "Marcellus", serif;
  font-size: 20px;
  margin: 0 0 4px;
  color: #1f2f1f;
}

.nutrition-subtitle {
  margin: 0 0 8px;
  color: #6d7a6e;
  font-size: 12px;
  line-height: 1.3;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.nutrition-benefits {
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.25px;
  color: #4c5b4d;
  margin-bottom: 6px;
}

.nutrition-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 4px;
}

.nutrition-list li {
  display: flex;
  align-items: flex-start;
  gap: 5px;
  font-size: 12px;
  line-height: 1.25;
  color: #445346;
}

.nutrition-list i {
  color: var(--accent);
  font-size: 12px;
  margin-top: 0;

/*--------------------------------------------------------------
# Real Device Mobile Refinements (iPhone-focused)
--------------------------------------------------------------*/
@media (max-width: 1199px) {
  .navmenu a,
  .navmenu a:focus {
    font-size: 18px;
    line-height: 1.35;
    padding: 12px 20px;
  }
}

@media (max-width: 576px) {
  body {
    font-size: 16px;
    line-height: 1.55;
  }

  section,
  .section {
    padding: 52px 0;
  }

  .section-title {
    padding-bottom: 34px;
  }

  .section-title h2 {
    font-size: 22px;
    margin-bottom: 8px;
  }

  .section-title p {
    font-size: 22px;
    line-height: 1.28;
  }

  .hero .carousel {
    min-height: calc(100dvh - 84px);
  }

  .hero .carousel-container {
    inset: 78px 18px 28px;
  }

  .hero h2 {
    font-size: 31px;
    line-height: 1.2;
    margin-bottom: 14px;
  }

  .hero p {
    font-size: 16px;
    line-height: 1.55;
  }

  .services .content .service-item {
    min-height: auto;
    padding: 16px 14px 70px;
  }

  .services .content .service-item .service-item-icon {
    max-width: 100%;
    aspect-ratio: 16 / 11;
    margin-bottom: 14px;
  }

  .services .content .service-item .service-item-content .service-heading {
    font-size: 28px;
    line-height: 1.24;
  }

  .services .content .service-item .service-item-content p {
    font-size: 17px;
    line-height: 1.5;
  }

  .services .content .service-item .service-item-content h6 {
    font-size: 14px;
    line-height: 1.45;
  }

  .services .content .service-item .service-item-content li {
    font-size: 17px;
    line-height: 1.45;
  }

  .services .content .service-item-cta .order-now-btn {
    min-height: 44px;
    padding: 10px 20px;
    font-size: 16px;
  }

  .about p,
  .about-3 p,
  .about-3 .list-check li,
  .testimonials .testimonial blockquote p,
  .footer,
  .footer .footer-about p,
  .footer .footer-links ul a {
    font-size: 16px;
    line-height: 1.55;
  }

  .about .content-title,
  .about-3 .content-title,
  .services-2 .section-title p {
    font-size: 30px;
    line-height: 1.2;
  }

  .services-2 .service-item .service-item-contents .service-item-title {
    font-size: 22px;
    line-height: 1.3;
  }

  .navmenu ul {
    inset: 72px 12px 12px;
    border-radius: 10px;
    padding: 12px 0;
  }

  .navmenu a,
  .navmenu a:focus {
    font-size: 20px;
    padding: 12px 18px;
  }
}
  flex-shrink: 0;
}

@media (max-width: 992px) {
  .nutrition-card-body h3 {
    font-size: 18px;
  }

  .nutrition-list li {
    font-size: 12px;
  }
}

@media (max-width: 576px) {
  .nutrition-guides {
    padding-top: 32px;
    padding-bottom: 32px;
  }

  .nutrition-bmi-form {
    grid-template-columns: 1fr;
  }

  .nutrition-bmi-btn {
    width: 100%;
  }

  .nutrition-card-body {
    padding: 10px;
  }

  .nutrition-subtitle {
    font-size: 11px;
  }

  .nutrition-list li {
    font-size: 11px;
  }

  .bmi-reco-card {
    padding: 12px;
  }

  .bmi-reco-header h3 {
    font-size: 21px;
  }

  .bmi-chart-grid {
    grid-template-columns: 1fr;
  }
}