/*--------------------------------------------------------------
# Font & Color Variables
# Help: https://bootstrapmade.com/color-system/
--------------------------------------------------------------*/
/* Fonts */
:root {
  --default-font: "Roboto",  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: "Raleway",  sans-serif;
  --nav-font: "Poppins",  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: #f8f5f0; /* Background color for the entire website, including individual sections */
  --default-color: #444444; /* Default color used for the majority of the text content across the entire website */
  --heading-color: #222222; /* Color for headings, subheadings and title throughout the website */
  --accent-color: #d5a6bd; /* 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: #ffffff; /* 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: #444444;  /* The default color of the main navmenu links */
  --nav-hover-color: #d5a6bd; /* Applied to main navmenu links when they are hovered over or active */
  --nav-mobile-background-color: #ffffff; /* Used as the background color for mobile navigation menu */
  --nav-dropdown-background-color: #ffffff; /* Used as the background color for dropdown items that appear when hovering over primary navigation items */
  --nav-dropdown-color: #444444; /* Used for navigation links of the dropdown items in the navigation menu. */
  --nav-dropdown-hover-color: #d5a6bd; /* 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: #f8f5f0;
  --surface-color: #ffffff;
}

.dark-background {
  --background-color: #060606;
  --default-color: #ffffff;
  --heading-color: #ffffff;
  --surface-color: #252525;
  --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);
}

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);
}

/* 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;
}


.imgformaturl {
    width: 120px;
    height: 160px;
    object-fit: cover;
    border-radius: 8px;
}

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

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

/*--------------------------------------------------------------
# Global Header
--------------------------------------------------------------*/
.header {
  color: var(--default-color);
  background-color: var(--background-color);
  padding: 15px 0;
  transition: all 0.5s;
  z-index: 997;
  box-shadow: 0px 0 18px rgba(0, 0, 0, 0.1);
}

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

.header .logo img {
  max-height: 36px;
  margin-right: 8px;
}

.header .logo h1 {
  font-size: 32px;
  margin: 0;
  font-weight: 300;
  text-transform: uppercase;
  color: var(--heading-color);
}

.header .header-social-links {
  padding-right: 15px;
}

.header .header-social-links a {
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  padding-left: 6px;
  display: inline-block;
  transition: 0.3s;
  font-size: 16px;
}

.header .header-social-links a:hover {
  color: var(--accent-color);
}

.header .header-social-links a i {
  line-height: 0px;
}

@media (max-width: 1200px) {
  .header .logo {
    order: 1;
  }

  .header .header-social-links {
    order: 2;
  }

  .header .navmenu {
    order: 3;
  }
}

/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/
/* Desktop Navigation */
@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>ul>li {
    white-space: nowrap;
    padding: 15px 14px;
  }

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

  .navmenu a,
  .navmenu a:focus {
    color: var(--nav-color);
    font-size: 15px;
    padding: 0 2px;
    font-family: var(--nav-font);
    font-weight: 400;
    display: flex;
    align-items: center;
    justify-content: space-between;
    white-space: nowrap;
    transition: 0.3s;
    position: relative;
  }

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

  .navmenu>ul>li>a:before {
    content: "";
    position: absolute;
    height: 2px;
    bottom: -6px;
    left: 0;
    background-color: var(--nav-hover-color);
    visibility: hidden;
    width: 0px;
    transition: all 0.3s ease-in-out 0s;
  }

  .navmenu a:hover:before,
  .navmenu li:hover>a:before,
  .navmenu .active:before {
    visibility: visible;
    width: 25px;
  }

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

  .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 rgba(0, 0, 0, 0.1);
  }

  .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;
  }
}

/* Mobile Navigation */
@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 20px 20px;
    padding: 10px 0;
    margin: 0;
    border-radius: 6px;
    background-color: var(--nav-mobile-background-color);
    border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
    box-shadow: none;
    overflow-y: auto;
    transition: 0.3s;
    z-index: 9998;
  }

  .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;
    transition: 0.3s;
  }

  .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);
  }

  .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);
    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);
  }

  .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;
  padding: 40px 0;
  position: relative;
}

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

.footer .social-links {
  margin-top: 20px;
}

.footer .social-links a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 50%);
  font-size: 16px;
  color: color-mix(in srgb, var(--default-color), transparent 50%);
  margin: 0 5px;
  transition: 0.3s;
}

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

.footer .credits {
  margin-top: 10px;
  font-size: 13px;
  text-align: center;
}

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

#preloader:before,
#preloader:after {
  content: "";
  position: absolute;
  border: 4px solid var(--accent-color);
  border-radius: 50%;
  animation: animate-preloader 2s cubic-bezier(0, 0.2, 0.8, 1) infinite;
}

#preloader:after {
  animation-delay: -0.5s;
}

@keyframes animate-preloader {
  0% {
    width: 10px;
    height: 10px;
    top: calc(50% - 5px);
    left: calc(50% - 5px);
    opacity: 1;
  }

  100% {
    width: 72px;
    height: 72px;
    top: calc(50% - 36px);
    left: calc(50% - 36px);
    opacity: 0;
  }
}

/*--------------------------------------------------------------
# Scroll Top Button
--------------------------------------------------------------*/
.scroll-top {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  right: 15px;
  bottom: -15px;
  z-index: 99999;
  background-color: var(--accent-color);
  width: 44px;
  height: 44px;
  border-radius: 50px;
  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;
  bottom: 15px;
}

/*--------------------------------------------------------------
# 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);
  padding: 25px 0;
  position: relative;
  border-bottom: 1px solid color-mix(in srgb, var(--default-color), transparent 85%);
}

.page-title h1 {
  font-size: 24px;
  font-weight: 400;
}

.page-title .breadcrumbs ol {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  padding: 0;
  margin: 0;
  font-size: 14px;
  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 70%);
}

/*--------------------------------------------------------------
# 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: 32px;
  font-weight: 700;
  margin-bottom: 20px;
  padding-bottom: 20px;
  position: relative;
}

.section-title h2:after {
  content: "";
  position: absolute;
  display: block;
  width: 50px;
  height: 3px;
  background: var(--accent-color);
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
}

.section-title p {
  margin-bottom: 0;
}

/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
.hero {
  width: 100%;
  min-height: calc(100vh - 82px);
  position: relative;
  padding: 80px 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

@media (max-width: 1200px) {
  .hero {
    min-height: calc(100vh - 68px);
  }
}

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

.hero .container {
  position: relative;
  z-index: 3;
}

.hero h2 {
  margin: 0;
  font-size: 48px;
  font-weight: 700;
}

.hero p {
  margin: 10px 0 0 0;
  font-size: 24px;
  color: var(--heading-color);
}

.hero .btn-get-started {
  color: var(--contrast-color);
  background: var(--accent-color);
  font-family: var(--heading-font);
  text-transform: uppercase;
  font-weight: 600;
  font-size: 12px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 12px 40px;
  border-radius: 50px;
  transition: 0.5s;
  margin-top: 30px;
}

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

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

  .hero p {
    font-size: 18px;
  }
}

/*--------------------------------------------------------------
# Hero 5 Section
--------------------------------------------------------------*/
.hero-5 {
  min-height: 85vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.hero-5::before {
  content: "";
  position: absolute;
  top: -50%;
  right: -10%;
  width: 70%;
  height: 140%;
  background: color-mix(in srgb, var(--accent-color), transparent 92%);
  border-radius: 30% 70% 70% 30%/30% 30% 70% 70%;
  z-index: 0;
  transform: rotate(-5deg);
}

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

.hero-5 .hero-content {
  padding-right: 2rem;
}

.hero-5 .hero-content .season-tag {
  display: inline-block;
  background: color-mix(in srgb, var(--accent-color), transparent 90%);
  color: var(--accent-color);
  padding: 0.5rem 1.25rem;
  border-radius: 2rem;
  font-size: 0.9rem;
  font-weight: 500;
  margin-bottom: 1.5rem;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.hero-5 .hero-content h1 {
  font-size: 3.5rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  line-height: 1.2;
}

.hero-5 .hero-content p {
  font-size: 1.15rem;
  margin-bottom: 2.5rem;
  max-width: 90%;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
}

.hero-5 .hero-content .hero-cta {
  display: flex;
  align-items: center;
  margin-bottom: 2.5rem;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.hero-5 .hero-content .hero-cta .btn-primary {
  background-color: var(--accent-color);
  border: none;
  color: var(--contrast-color);
  padding: 0.8rem 2rem;
  font-size: 1rem;
  font-weight: 600;
  border-radius: 0.25rem;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  z-index: 1;
  box-shadow: 0 6px 15px color-mix(in srgb, var(--accent-color), transparent 80%);
}

.hero-5 .hero-content .hero-cta .btn-primary::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 0;
  height: 100%;
  background: color-mix(in srgb, var(--accent-color), transparent 25%);
  z-index: -1;
  transition: all 0.4s cubic-bezier(0.65, 0, 0.35, 1);
}

.hero-5 .hero-content .hero-cta .btn-primary:hover::before {
  width: 100%;
}

.hero-5 .hero-content .hero-cta .link-with-arrow {
  color: var(--accent-color);
  font-weight: 500;
  font-size: 1rem;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  position: relative;
  transition: all 0.3s ease;
}

.hero-5 .hero-content .hero-cta .link-with-arrow i {
  transition: transform 0.3s ease;
}

.hero-5 .hero-content .hero-cta .link-with-arrow:hover {
  color: color-mix(in srgb, var(--accent-color), transparent 20%);
}

.hero-5 .hero-content .hero-cta .link-with-arrow:hover i {
  transform: translateX(5px);
}

.hero-5 .hero-content .hero-features {
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.hero-5 .hero-content .hero-features .feature-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.hero-5 .hero-content .hero-features .feature-item i {
  font-size: 1.25rem;
  color: var(--accent-color);
}

.hero-5 .hero-content .hero-features .feature-item span {
  font-size: 0.95rem;
  font-weight: 500;
  color: color-mix(in srgb, var(--default-color), transparent 25%);
}

.hero-5 .hero-image-wrapper {
  position: relative;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-5 .hero-image-wrapper .hero-image {
  position: relative;
  z-index: 2;
  width: 90%;
  max-width: 500px;
  filter: drop-shadow(0 15px 40px rgba(0, 0, 0, 0.1));
  animation: float 6s ease-in-out infinite;
}

.hero-5 .hero-image-wrapper .hero-image .main-product {
  border-radius: 10px;
  transform: scale(1);
  transition: transform 0.5s ease;
}

.hero-5 .hero-image-wrapper .hero-image .main-product:hover {
  transform: scale(1.02);
}

.hero-5 .hero-image-wrapper .hero-image .floating-badge {
  position: absolute;
  top: 30px;
  right: -30px;
  background: var(--accent-color);
  color: var(--contrast-color);
  border-radius: 50%;
  height: 100px;
  width: 100px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  animation: pulse 2s infinite ease-in-out;
}

.hero-5 .hero-image-wrapper .hero-image .floating-badge .discount {
  font-size: 1.2rem;
  font-weight: 700;
  line-height: 1;
}

.hero-5 .hero-image-wrapper .hero-image .floating-badge .discount-text {
  font-size: 0.8rem;
  font-weight: 500;
}

.hero-5 .hero-image-wrapper .decorative-element {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 190px;
  height: 190px;
  border-radius: 50%;
  background: color-mix(in srgb, var(--heading-color), transparent 90%);
  z-index: 1;
}

@keyframes float {

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

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

@keyframes pulse {
  0% {
    transform: scale(1);
  }

  50% {
    transform: scale(1.05);
  }

  100% {
    transform: scale(1);
  }
}

@media (max-width: 1199.98px) {
  .hero-5 .hero-content h1 {
    font-size: 3rem;
  }
}

@media (max-width: 991.98px) {
  .hero-5 {
    min-height: auto;
    padding: 5rem 0;
  }

  .hero-5::before {
    width: 100%;
    height: 50%;
    top: 0;
    right: -20%;
  }

  .hero-5 .hero-content {
    padding-right: 0;
    margin-bottom: 3rem;
    text-align: center;
  }

  .hero-5 .hero-content h1 {
    font-size: 2.5rem;
  }

  .hero-5 .hero-content h1 br {
    display: none;
  }

  .hero-5 .hero-content p {
    max-width: 100%;
  }

  .hero-5 .hero-content .hero-cta {
    justify-content: center;
  }

  .hero-5 .hero-content .hero-features {
    justify-content: center;
  }

  .hero-5 .hero-image-wrapper .hero-image {
    margin: 0 auto;
  }

  .hero-5 .hero-image-wrapper .decorative-element {
    right: 50%;
    transform: translateX(140px);
    width: 150px;
    height: 150px;
  }
}

@media (max-width: 767.98px) {
  .hero-5 .hero-content h1 {
    font-size: 2.2rem;
    margin-bottom: 1rem;
  }

  .hero-5 .hero-content p {
    font-size: 1rem;
    margin-bottom: 2rem;
  }

  .hero-5 .hero-image-wrapper .floating-badge {
    top: 10px;
    right: -20px;
    height: 80px;
    width: 80px;
    padding: 0.5rem;
  }

  .hero-5 .hero-image-wrapper .floating-badge .discount {
    font-size: 1.2rem;
  }

  .hero-5 .hero-image-wrapper .floating-badge .discount-text {
    font-size: 0.7rem;
  }
}

@media (max-width: 575.98px) {
  .hero-5 {
    padding: 4rem 0;
  }

  .hero-5 .hero-content .season-tag {
    font-size: 0.8rem;
  }

  .hero-5 .hero-content .hero-features {
    flex-direction: column;
    align-items: center;
    gap: 1rem;
  }
}

/*--------------------------------------------------------------
# Hero 6 Section
--------------------------------------------------------------*/
.hero-6 {
  padding: 100px 0 80px;
  position: relative;
  background: var(--surface-color);
  overflow: hidden;
}

.hero-6::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 60%;
  background: linear-gradient(180deg, color-mix(in srgb, var(--accent-color), transparent 94%) 0%, transparent 100%);
  pointer-events: none;
}

.hero-6::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 800px;
  height: 800px;
  background: radial-gradient(circle, color-mix(in srgb, var(--accent-color), transparent 96%) 0%, transparent 50%);
  pointer-events: none;
}

.hero-6 .hero-wrapper {
  position: relative;
  z-index: 2;
}

.hero-6 .hero-header {
  max-width: 800px;
  margin: 0 auto 60px;
}

.hero-6 .hero-header .badge-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: color-mix(in srgb, var(--accent-color), transparent 88%);
  padding: 10px 20px;
  border-radius: 30px;
  margin-bottom: 28px;
}

.hero-6 .hero-header .badge-label i {
  color: var(--accent-color);
  font-size: 1rem;
}

.hero-6 .hero-header .badge-label span {
  font-size: 0.8125rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--accent-color);
}

.hero-6 .hero-header .main-title {
  font-size: 3.75rem;
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 24px;
  color: var(--heading-color);
  letter-spacing: -1px;
}

@media (max-width: 1200px) {
  .hero-6 .hero-header .main-title {
    font-size: 3.25rem;
  }
}

@media (max-width: 992px) {
  .hero-6 .hero-header .main-title {
    font-size: 2.75rem;
  }
}

@media (max-width: 576px) {
  .hero-6 .hero-header .main-title {
    font-size: 2rem;
    letter-spacing: -0.5px;
  }
}

.hero-6 .hero-header .subtitle {
  font-size: 1.125rem;
  line-height: 1.75;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  max-width: 600px;
  margin: 0 auto 36px;
}

@media (max-width: 768px) {
  .hero-6 .hero-header .subtitle {
    font-size: 1rem;
  }
}

.hero-6 .hero-header .action-buttons {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  flex-wrap: wrap;
}

@media (max-width: 576px) {
  .hero-6 .hero-header .action-buttons {
    flex-direction: column;
    gap: 16px;
  }
}

.hero-6 .hero-header .action-buttons .btn-primary-action {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: linear-gradient(135deg, var(--accent-color) 0%, color-mix(in srgb, var(--accent-color), black 15%) 100%);
  color: var(--contrast-color);
  padding: 14px 28px;
  border-radius: 8px;
  font-weight: 600;
  font-size: 0.9375rem;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 4px 20px color-mix(in srgb, var(--accent-color), transparent 60%);
}

.hero-6 .hero-header .action-buttons .btn-primary-action i {
  font-size: 1.25rem;
  transition: transform 0.3s ease;
}

.hero-6 .hero-header .action-buttons .btn-primary-action:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 30px color-mix(in srgb, var(--accent-color), transparent 45%);
}

.hero-6 .hero-header .action-buttons .btn-primary-action:hover i {
  transform: translateY(3px);
}

.hero-6 .hero-header .action-buttons .btn-video-action {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--heading-color);
  font-weight: 500;
  text-decoration: none;
  transition: all 0.3s ease;
  padding: 8px 16px;
}

.hero-6 .hero-header .action-buttons .btn-video-action .play-icon {
  width: 44px;
  height: 44px;
  background: var(--surface-color);
  border: 2px solid color-mix(in srgb, var(--accent-color), transparent 50%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.hero-6 .hero-header .action-buttons .btn-video-action .play-icon i {
  font-size: 1.125rem;
  color: var(--accent-color);
  margin-left: 2px;
}

.hero-6 .hero-header .action-buttons .btn-video-action:hover {
  color: var(--accent-color);
}

.hero-6 .hero-header .action-buttons .btn-video-action:hover .play-icon {
  background: var(--accent-color);
  border-color: var(--accent-color);
}

.hero-6 .hero-header .action-buttons .btn-video-action:hover .play-icon i {
  color: var(--contrast-color);
}

.hero-6 .metrics-strip {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 40px;
  background: var(--surface-color);
  padding: 40px 50px;
  border-radius: 20px;
  box-shadow: 0 10px 60px color-mix(in srgb, var(--default-color), transparent 92%);
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 94%);
}

@media (max-width: 992px) {
  .hero-6 .metrics-strip {
    flex-wrap: wrap;
    gap: 30px;
    padding: 30px;
  }
}

@media (max-width: 576px) {
  .hero-6 .metrics-strip {
    flex-direction: column;
    gap: 24px;
    padding: 24px;
  }
}

.hero-6 .metrics-strip .metric-divider {
  width: 1px;
  height: 60px;
  background: color-mix(in srgb, var(--default-color), transparent 88%);
}

@media (max-width: 992px) {
  .hero-6 .metrics-strip .metric-divider {
    display: none;
  }
}

.hero-6 .metrics-strip .metric-item {
  display: flex;
  align-items: center;
  gap: 16px;
  flex: 1;
  justify-content: center;
}

@media (max-width: 992px) {
  .hero-6 .metrics-strip .metric-item {
    flex: 0 0 calc(50% - 15px);
    justify-content: flex-start;
  }
}

@media (max-width: 576px) {
  .hero-6 .metrics-strip .metric-item {
    flex: 1 1 100%;
    justify-content: flex-start;
    width: 220px;
    max-width: 100%;
    margin: 0 auto;
  }
}

.hero-6 .metrics-strip .metric-item .metric-circle {
  width: 60px;
  height: 60px;
  min-width: 60px;
  border: 2px solid color-mix(in srgb, var(--accent-color), transparent 70%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.hero-6 .metrics-strip .metric-item .metric-circle i {
  font-size: 1.375rem;
  color: var(--accent-color);
}

.hero-6 .metrics-strip .metric-item .metric-circle.metric-circle-filled {
  background: var(--accent-color);
  border-color: var(--accent-color);
}

.hero-6 .metrics-strip .metric-item .metric-circle.metric-circle-filled i {
  color: var(--contrast-color);
}

.hero-6 .metrics-strip .metric-item .metric-circle.metric-circle-outlined {
  background: color-mix(in srgb, var(--accent-color), transparent 92%);
  border-color: color-mix(in srgb, var(--accent-color), transparent 60%);
}

.hero-6 .metrics-strip .metric-item .metric-content .metric-number {
  font-size: 1.875rem;
  font-weight: 700;
  color: var(--heading-color);
  line-height: 1.1;
  margin-bottom: 4px;
}

.hero-6 .metrics-strip .metric-item .metric-content .metric-label {
  font-size: 0.875rem;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  margin: 0;
  white-space: nowrap;
}

.hero-6 .metrics-strip .metric-item:hover .metric-circle {
  transform: scale(1.05);
  border-color: var(--accent-color);
}

@media (max-width: 768px) {
  .hero-6 {
    padding: 80px 0 60px;
  }

  .hero-6 .hero-header {
    margin-bottom: 40px;
  }
}

/*--------------------------------------------------------------
# Testimonials 4 Section
--------------------------------------------------------------*/
.testimonials-4 {
  /* Swiper Pagination */
  /* Responsive Styles */
}

.testimonials-4 .review-carousel {
  position: relative;
  padding-bottom: 60px;
}

.testimonials-4 .review-carousel .swiper-wrapper {
  height: auto !important;
}

.testimonials-4 .review-card {
  position: relative;
  background-color: var(--surface-color);
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
  transition: all 0.3s ease;
  height: 100%;
}

.testimonials-4 .review-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px color-mix(in srgb, var(--default-color), transparent 88%);
}

.testimonials-4 .review-card:hover .accent-bar {
  height: 100%;
}

.testimonials-4 .review-card:hover .reviewer-photo img {
  transform: scale(1.05);
}

.testimonials-4 .review-card:hover .watermark-quote i {
  color: color-mix(in srgb, var(--accent-color), transparent 75%);
}

.testimonials-4 .accent-bar {
  position: absolute;
  top: 0;
  left: 0;
  width: 5px;
  height: 40%;
  background: linear-gradient(180deg, var(--accent-color), color-mix(in srgb, var(--accent-color), transparent 40%));
  border-radius: 0 4px 4px 0;
  transition: height 0.4s ease;
  z-index: 2;
}

.testimonials-4 .watermark-quote {
  position: absolute;
  top: 10px;
  right: 16px;
  z-index: 1;
  pointer-events: none;
}

.testimonials-4 .watermark-quote i {
  font-size: 4rem;
  color: color-mix(in srgb, var(--accent-color), transparent 88%);
  line-height: 1;
  transition: color 0.3s ease;
}

.testimonials-4 .reviewer-photo {
  padding: 25px;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
}

.testimonials-4 .reviewer-photo img {
  width: 100%;
  max-width: 120px;
  aspect-ratio: 1;
  object-fit: cover;
  border-radius: 14px;
  box-shadow: 0 6px 20px color-mix(in srgb, var(--default-color), transparent 85%);
  transition: transform 0.3s ease;
}

.testimonials-4 .review-body {
  position: relative;
  z-index: 2;
  padding: 28px 28px 28px 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 100%;
}

.testimonials-4 .review-body p {
  font-size: 0.95rem;
  line-height: 1.75;
  color: color-mix(in srgb, var(--default-color), transparent 15%);
  margin-bottom: 18px;
}

.testimonials-4 .reviewer-details {
  margin-bottom: 8px;
}

.testimonials-4 .reviewer-details h5 {
  font-size: 1.05rem;
  font-weight: 700;
  margin: 0 0 3px;
}

.testimonials-4 .reviewer-details span {
  font-size: 0.82rem;
  color: var(--accent-color);
  font-weight: 500;
}

.testimonials-4 .stars i {
  color: #f5b041;
  font-size: 0.82rem;
  margin-right: 2px;
}

.testimonials-4 .swiper-pagination {
  position: absolute;
  bottom: 0;
  text-align: center;
}

.testimonials-4 .swiper-pagination .swiper-pagination-bullet {
  width: 10px;
  height: 10px;
  background: color-mix(in srgb, var(--default-color), transparent 75%);
  opacity: 1;
  border-radius: 10px;
  margin: 0 5px;
  transition: all 0.3s ease;
}

.testimonials-4 .swiper-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
  background: var(--accent-color);
  width: 28px;
}

@media (max-width: 768px) {
  .testimonials-4 .reviewer-photo img {
    max-width: 100px;
  }

  .testimonials-4 .review-body {
    padding: 24px 24px 24px 0;
  }

  .testimonials-4 .review-body p {
    font-size: 0.92rem;
  }

  .testimonials-4 .reviewer-details h5 {
    font-size: 1rem;
  }

  .testimonials-4 .watermark-quote i {
    font-size: 3.5rem;
  }
}

@media (max-width: 575px) {
  .testimonials-4 .review-carousel {
    padding-bottom: 45px;
  }

  .testimonials-4 .review-card {
    text-align: center;
  }

  .testimonials-4 .reviewer-photo {
    padding: 24px 20px 10px;
    height: auto;
  }

  .testimonials-4 .reviewer-photo img {
    max-width: 85px;
  }

  .testimonials-4 .review-body {
    padding: 12px 20px 24px;
    height: auto;
    align-items: center;
  }

  .testimonials-4 .review-body p {
    font-size: 0.9rem;
    text-align: center;
  }

  .testimonials-4 .reviewer-details h5 {
    font-size: 0.95rem;
  }

  .testimonials-4 .reviewer-details span {
    font-size: 0.8rem;
  }

  .testimonials-4 .watermark-quote {
    top: 8px;
    right: 12px;
  }

  .testimonials-4 .watermark-quote i {
    font-size: 3rem;
  }

  .testimonials-4 .accent-bar {
    width: 100%;
    height: 4px;
    border-radius: 0 0 4px 4px;
    transition: width 0.4s ease;
  }

  .testimonials-4 .review-card:hover .accent-bar {
    width: 100%;
    height: 4px;
  }
}

/*--------------------------------------------------------------
# Slider 3 Section
--------------------------------------------------------------*/
.slider-3 {
  padding-top: 0px;
  background-color: transparent;
  padding-bottom: 0px;
}

.slider-3 .swiper-wrapper {
  height: auto !important;
}

.slider-3 .swiper-pagination .swiper-pagination-bullet {
  background-color: color-mix(in srgb, var(--default-color) 100%, white 15%);
}

.slider-3 .swiper-pagination .swiper-pagination-bullet-active {
  background-color: var(--accent-color);
}

.slider-3 .swiper-slide {
  min-height: 500px;
  position: relative;
  display: flex;
  align-items: flex-end;
  background-repeat: no-repeat;
  background-size: cover;
}

.slider-3 .swiper-slide::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: color-mix(in srgb, var(--background-color), transparent 50%);
}

@media (max-width: 575px) {
  .slider-3 .swiper-slide {
    min-height: 300px;
  }
}

.slider-3 .swiper-button-prev:after,
.slider-3 .swiper-button-next:after {
  font-size: 24px;
  color: color-mix(in srgb, var(--default-color), transparent 50%);
}

.slider-3 .content {
  padding: 60px 80px;
  max-width: 700px;
  position: relative;
}

.slider-3 .content a,
.slider-3 .content h2,
.slider-3 .content p {
  color: var(--default-color);
}

/*--------------------------------------------------------------
# About 2 Section
--------------------------------------------------------------*/
.about-2 {
  background-color: var(--background-color);
  overflow: hidden;
}

.about-2 .about-images-wrapper {
  position: relative;
  padding-bottom: 60px;
  padding-right: 60px;
  z-index: 1;
}

@media (max-width: 992px) {
  .about-2 .about-images-wrapper {
    padding-right: 0;
    padding-bottom: 0;
    margin-bottom: 40px;
  }
}

.about-2 .image-main {
  border-radius: 20px;
  overflow: hidden;
  position: relative;
  z-index: 2;
  box-shadow: 0 15px 40px -10px color-mix(in srgb, var(--default-color), transparent 90%);
}

.about-2 .image-main img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.5s ease;
}

.about-2 .image-main:hover img {
  transform: scale(1.03);
}

.about-2 .image-offset {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 55%;
  border-radius: 16px;
  overflow: hidden;
  border: 8px solid var(--background-color);
  z-index: 3;
  box-shadow: 0 15px 30px -5px color-mix(in srgb, var(--default-color), transparent 85%);
}

@media (max-width: 992px) {
  .about-2 .image-offset {
    display: none;
  }
}

.about-2 .image-offset img {
  width: 100%;
  height: auto;
  display: block;
}

.about-2 .experience-badge {
  position: absolute;
  top: 40px;
  left: -30px;
  background: var(--accent-color);
  color: var(--contrast-color);
  padding: 24px 30px;
  border-radius: 16px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  z-index: 4;
  box-shadow: 0 10px 30px color-mix(in srgb, var(--accent-color), transparent 60%);
  animation: float-badge 3s ease-in-out infinite;
}

@media (max-width: 768px) {
  .about-2 .experience-badge {
    left: 20px;
    top: 20px;
    padding: 16px 20px;
  }
}

.about-2 .experience-badge .years {
  font-size: 3rem;
  font-weight: 800;
  line-height: 1;
  display: block;
  margin-bottom: 4px;
}

.about-2 .experience-badge .text {
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  line-height: 1.2;
  color: color-mix(in srgb, var(--contrast-color), transparent 10%);
}

.about-2 .shape-pattern {
  position: absolute;
  top: -20px;
  right: 20px;
  width: 200px;
  height: 200px;
  z-index: 1;
  background-image: radial-gradient(color-mix(in srgb, var(--accent-color), transparent 85%) 2px, transparent 2px);
  background-size: 20px 20px;
  opacity: 0.7;
}

@media (min-width: 1200px) {
  .about-2 .about-content {
    padding-left: 40px;
  }
}

.about-2 .section-subtitle {
  display: inline-block;
  font-size: 0.875rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--accent-color);
  margin-bottom: 12px;
  position: relative;
  padding-left: 45px;
}

.about-2 .section-subtitle::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  width: 35px;
  height: 2px;
  background: var(--accent-color);
  transform: translateY(-50%);
}

.about-2 h2 {
  font-size: 2.25rem;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 20px;
}

@media (max-width: 768px) {
  .about-2 h2 {
    font-size: 1.75rem;
  }
}

.about-2 .lead-text {
  font-size: 1.1rem;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  margin-bottom: 16px;
  font-weight: 500;
}

.about-2 .description {
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  line-height: 1.7;
}

.about-2 .features-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  margin-bottom: 30px;
}

@media (max-width: 576px) {
  .about-2 .features-grid {
    grid-template-columns: 1fr;
  }
}

.about-2 .feature-card {
  display: flex;
  align-items: center;
  gap: 12px;
  background: var(--surface-color);
  padding: 12px 16px;
  border-radius: 8px;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
  transition: all 0.3s ease;
}

.about-2 .feature-card i {
  color: var(--accent-color);
  font-size: 1.2rem;
}

.about-2 .feature-card span {
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--heading-color);
}

.about-2 .feature-card:hover {
  border-color: var(--accent-color);
  transform: translateX(5px);
}

.about-2 .stats-row {
  display: flex;
  gap: 30px;
  margin-bottom: 35px;
  padding: 25px 0;
  border-top: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
  border-bottom: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}

@media (max-width: 576px) {
  .about-2 .stats-row {
    flex-direction: column;
    gap: 20px;
    padding: 20px 0;
  }
}

.about-2 .stat-box {
  display: flex;
  flex-direction: column;
}

.about-2 .stat-box .number {
  font-size: 1.75rem;
  font-weight: 800;
  color: var(--accent-color);
  line-height: 1.2;
}

.about-2 .stat-box .label {
  font-size: 0.875rem;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  font-weight: 500;
}

.about-2 .action-buttons {
  display: flex;
  align-items: center;
  gap: 30px;
  flex-wrap: wrap;
}

.about-2 .btn-primary-custom {
  background: var(--accent-color);
  color: var(--contrast-color);
  padding: 12px 30px;
  border-radius: 50px;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: 0.3s;
}

.about-2 .btn-primary-custom:hover {
  background: var(--accent-color);
  transform: translateY(-2px);
}

.about-2 .btn-primary-custom:hover i {
  transition: 0.3s;
  transform: translateX(4px);
}

.about-2 .contact-info {
  display: flex;
  align-items: center;
  gap: 12px;
}

.about-2 .contact-info .icon-box {
  width: 45px;
  height: 45px;
  border-radius: 50%;
  background: color-mix(in srgb, var(--accent-color), transparent 90%);
  color: var(--accent-color);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  transition: 0.3s;
}

.about-2 .contact-info .text {
  display: flex;
  flex-direction: column;
  font-size: 0.875rem;
}

.about-2 .contact-info .text span {
  color: color-mix(in srgb, var(--default-color), transparent 50%);
  font-size: 0.8rem;
}

.about-2 .contact-info .text a {
  font-weight: 700;
  color: var(--heading-color);
  font-size: 1rem;
}

.about-2 .contact-info .text a:hover {
  color: var(--accent-color);
}

.about-2 .contact-info:hover .icon-box {
  background: var(--accent-color);
  color: var(--contrast-color);
}

@keyframes float-badge {

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

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

/*--------------------------------------------------------------
# About 3 Section
--------------------------------------------------------------*/
.about-3 .about-subtitle {
  font-family: var(--heading-font);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 1px;
  color: var(--heading-color);
  margin-bottom: 16px;
  display: block;
}

.about-3 .about-title {
  font-family: var(--heading-font);
  font-size: 48px;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 32px;
  color: var(--heading-color);
}

.about-3 .about-title span {
  font-size: 32px;
  display: inline-block;
  margin: 8px 0;
  color: color-mix(in srgb, var(--heading-color), transparent 30%);
}

@media (max-width: 991px) {
  .about-3 .about-title {
    font-size: 36px;
  }

  .about-3 .about-title span {
    font-size: 24px;
  }
}

.about-3 .about-content h3 {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 16px;
  color: var(--heading-color);
}

.about-3 .about-content p {
  font-size: 16px;
  line-height: 1.6;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  margin-bottom: 24px;
}

.about-3 .about-content .btn-learn-more {
  display: inline-flex;
  align-items: center;
  padding: 12px 32px;
  background-color: var(--accent-color);
  color: var(--contrast-color);
  border-radius: 50px;
  font-weight: 500;
  transition: all 0.3s ease;
}

.about-3 .about-content .btn-learn-more i {
  margin-left: 8px;
  font-size: 18px;
  transition: transform 0.3s ease;
}

.about-3 .about-content .btn-learn-more:hover {
  background-color: color-mix(in srgb, var(--accent-color), transparent 20%);
}

.about-3 .about-content .btn-learn-more:hover i {
  transform: translateX(5px);
}

.about-3 .about-img {
  text-align: center;
}

.about-3 .about-img img {
  position: relative;
  z-index: 2;
  border-radius: 20px;
  max-width: 100%;
  height: auto;
}

.about-3 .about-img .shape-1 {
  position: absolute;
  width: 220px;
  height: 220px;
  background-color: color-mix(in srgb, var(--accent-color), transparent 15%);
  border-radius: 63% 37% 54% 46%/55% 48% 52% 45%;
  bottom: -30px;
  right: -30px;
  z-index: 1;
  animation: blobAnimation1 8s ease-in-out infinite;
  transition: all 0.3s ease;
}

.about-3 .about-img .shape-2 {
  position: absolute;
  width: 180px;
  height: 180px;
  background-color: color-mix(in srgb, var(--accent-color), transparent 85%);
  border-radius: 42% 58% 37% 63%/51% 44% 56% 49%;
  top: -30px;
  left: -30px;
  z-index: 1;
  animation: blobAnimation2 8s ease-in-out infinite;
  transition: all 0.3s ease;
}

@keyframes blobAnimation1 {
  0% {
    border-radius: 63% 37% 54% 46%/55% 48% 52% 45%;
  }

  25% {
    border-radius: 46% 54% 42% 58%/47% 55% 45% 53%;
  }

  50% {
    border-radius: 54% 46% 52% 48%/45% 54% 46% 55%;
  }

  75% {
    border-radius: 42% 58% 37% 63%/51% 44% 56% 49%;
  }

  100% {
    border-radius: 63% 37% 54% 46%/55% 48% 52% 45%;
  }
}

@keyframes blobAnimation2 {
  0% {
    border-radius: 42% 58% 37% 63%/51% 44% 56% 49%;
  }

  25% {
    border-radius: 54% 46% 52% 48%/45% 54% 46% 55%;
  }

  50% {
    border-radius: 46% 54% 42% 58%/47% 55% 45% 53%;
  }

  75% {
    border-radius: 63% 37% 54% 46%/55% 48% 52% 45%;
  }

  100% {
    border-radius: 42% 58% 37% 63%/51% 44% 56% 49%;
  }
}

@media (max-width: 991px) {
  .about-3 .about-img {
    margin-top: 40px;
  }

  .about-3 .about-img .shape-1 {
    width: 160px;
    height: 160px;
  }

  .about-3 .about-img .shape-2 {
    width: 140px;
    height: 140px;
  }
}

/*--------------------------------------------------------------
# About 4 Section
--------------------------------------------------------------*/
.about-4 .section-intro {
  max-width: 700px;
  margin: 0 auto 4rem;
}

.about-4 .section-intro .subtitle {
  color: color-mix(in srgb, var(--accent-color), transparent 20%);
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.about-4 .section-intro .title {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
}

@media (min-width: 768px) {
  .about-4 .section-intro .title {
    font-size: 3rem;
  }
}

.about-4 .section-intro .desc {
  font-size: 1.125rem;
  line-height: 1.7;
}

.about-4 .highlight-cards {
  margin-top: 5rem;
}

.about-4 .highlight-cards .highlight-card {
  position: relative;
  overflow: hidden;
  border-radius: 1.5rem;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
  margin-bottom: 1.5rem;
  height: 350px;
}

.about-4 .highlight-cards .highlight-card.elevated {
  transform: translateY(2rem);
}

@media (max-width: 768px) {
  .about-4 .highlight-cards .highlight-card.elevated {
    transform: translateY(0);
  }
}

.about-4 .highlight-cards .highlight-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s ease;
}

.about-4 .highlight-cards .highlight-card .card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0.1) 40%, transparent 100%);
  opacity: 1;
  transition: opacity 0.5s ease;
}

.about-4 .highlight-cards .highlight-card .card-content {
  position: absolute;
  bottom: 1rem;
  left: 1.5rem;
  transition: transform 0.3s ease;
}

.about-4 .highlight-cards .highlight-card .card-content .card-title {
  color: var(--contrast-color);
  font-size: 1.25rem;
  font-weight: 600;
}

.about-4 .highlight-cards .highlight-card:hover img {
  transform: scale(1.1);
}

.about-4 .highlight-cards .highlight-card:hover .card-content {
  transform: translateY(-5px);
}

.about-4 .values-section {
  margin-top: 6rem;
}

.about-4 .values-section .values-image {
  position: relative;
  border-radius: 1.5rem;
  overflow: hidden;
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
}

.about-4 .values-section .values-image img {
  width: 100%;
  transition: transform 0.7s ease;
}

.about-4 .values-section .values-image:hover img {
  transform: scale(1.05);
}

.about-4 .values-section .values-content {
  padding: 0 1rem;
}

@media (min-width: 992px) {
  .about-4 .values-section .values-content {
    padding: 0 0 0 2rem;
  }
}

.about-4 .values-section .values-content .values-title {
  font-size: 2rem;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 1.5rem;
}

@media (min-width: 768px) {
  .about-4 .values-section .values-content .values-title {
    font-size: 2.25rem;
  }
}

.about-4 .values-section .values-content .values-desc {
  font-size: 1.125rem;
  line-height: 1.7;
  margin-bottom: 2rem;
}

.about-4 .values-section .values-content .values-list .value-item {
  display: flex;
  margin-bottom: 1.5rem;
}

.about-4 .values-section .values-content .values-list .value-item .value-icon {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2rem;
  height: 2rem;
  margin-right: 1rem;
}

.about-4 .values-section .values-content .values-list .value-item .value-icon i {
  color: var(--accent-color);
  font-size: 1.5rem;
}

.about-4 .values-section .values-content .values-list .value-item .value-text h4 {
  font-size: 1.125rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
  display: inline;
}

.about-4 .values-section .values-content .values-list .value-item .value-text p {
  display: inline;
  margin-left: 0.5rem;
}

/*--------------------------------------------------------------
# Resume Section
--------------------------------------------------------------*/
.resume .resume-title {
  color: var(--heading-color);
  font-size: 26px;
  font-weight: 700;
  margin-top: 20px;
  margin-bottom: 20px;
}

.resume .resume-item {
  padding: 0 0 20px 20px;
  margin-top: -2px;
  border-left: 2px solid var(--accent-color);
  position: relative;
}

.resume .resume-item h4 {
  line-height: 18px;
  font-size: 18px;
  font-weight: 600;
  text-transform: uppercase;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  margin-bottom: 10px;
}

.resume .resume-item h5 {
  font-size: 16px;
  padding: 5px 15px;
  display: inline-block;
  font-weight: 600;
  margin-bottom: 10px;
}

.resume .resume-item ul {
  padding-left: 20px;
}

.resume .resume-item ul li {
  padding-bottom: 10px;
}

.resume .resume-item:last-child {
  padding-bottom: 0;
}

.resume .resume-item::before {
  content: "";
  position: absolute;
  width: 16px;
  height: 16px;
  border-radius: 50px;
  left: -9px;
  top: 0;
  background: var(--background-color);
  border: 2px solid var(--accent-color);
}

/*--------------------------------------------------------------
# Services Section
--------------------------------------------------------------*/
.services {
  --card-radius: 14px;
  --card-border: 1px solid color-mix(in srgb, var(--default-color), transparent 88%);
  --card-shadow: 0 8px 24px color-mix(in srgb, var(--default-color), transparent 92%);
  --hover-shadow: 0 16px 36px color-mix(in srgb, var(--default-color), transparent 88%);
  --featured-bg: color-mix(in srgb, var(--accent-color), var(--surface-color) 90%);
  --icon-bg: color-mix(in srgb, var(--accent-color), transparent 88%);
}

.services .service-grid .featured-card,
.services .service-grid .service-card {
  background: var(--surface-color);
  border: var(--card-border);
  border-radius: var(--card-radius);
  box-shadow: var(--card-shadow);
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
  overflow: hidden;
}

.services .service-grid .featured-card .icon-wrap,
.services .service-grid .service-card .icon-wrap {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--icon-bg);
  color: var(--accent-color);
  font-size: 22px;
  flex: 0 0 auto;
}

.services .service-grid .featured-card .content .card-title,
.services .service-grid .service-card .content .card-title {
  font-size: 1.125rem;
  margin: 14px 0 8px;
}

.services .service-grid .featured-card .content .card-desc,
.services .service-grid .service-card .content .card-desc {
  margin-bottom: 12px;
  color: color-mix(in srgb, var(--default-color), transparent 15%);
}

.services .service-grid .featured-card:hover,
.services .service-grid .service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--hover-shadow);
  border-color: color-mix(in srgb, var(--accent-color), transparent 60%);
}

.services .service-grid .featured-card {
  display: grid;
  grid-template-columns: 64px 1fr;
  gap: 16px;
  padding: 28px;
  position: relative;
  background: linear-gradient(0deg, var(--featured-bg), var(--featured-bg));
}

.services .service-grid .featured-card .badge-tag {
  position: absolute;
  top: 14px;
  right: 14px;
  background: var(--accent-color);
  color: var(--contrast-color);
  font-size: 12px;
  padding: 6px 10px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  gap: 4px;
}

.services .service-grid .featured-card .content .card-title {
  font-size: 1.25rem;
  margin-top: 0;
}

.services .service-grid .featured-card .content .checks {
  list-style: none;
  padding: 0;
  margin: 14px 0 20px;
}

.services .service-grid .featured-card .content .checks li {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  line-height: 1.5;
  margin-bottom: 8px;
  color: color-mix(in srgb, var(--default-color), transparent 10%);
}

.services .service-grid .featured-card .content .checks li i {
  color: var(--accent-color);
  margin-top: 2px;
}

.services .service-grid .featured-card .content .cta-wrap .btn-cta {
  background: var(--accent-color);
  color: var(--contrast-color);
  border: 1px solid color-mix(in srgb, var(--accent-color), transparent 30%);
  padding: 10px 16px;
  border-radius: 10px;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: transform 0.3s ease, background-color 0.3s ease, border-color 0.3s ease;
}

.services .service-grid .featured-card .content .cta-wrap .btn-cta:hover {
  background: color-mix(in srgb, var(--accent-color), white 12%);
  border-color: color-mix(in srgb, var(--accent-color), transparent 10%);
  transform: translateY(-2px);
  color: var(--contrast-color);
}

.services .service-grid .featured-card .content .cta-wrap .link-plain {
  color: var(--heading-color);
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 4px;
}

.services .service-grid .featured-card .content .cta-wrap .link-plain i {
  transition: transform 0.3s ease;
}

.services .service-grid .featured-card .content .cta-wrap .link-plain:hover i {
  transform: translateX(2px);
}

@media (max-width: 576px) {
  .services .service-grid .featured-card {
    grid-template-columns: 1fr;
  }

  .services .service-grid .featured-card .icon-wrap {
    margin-bottom: 6px;
  }
}

.services .service-grid .service-card {
  padding: 22px;
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: 14px;
}

.services .service-grid .service-card .link-plain {
  color: var(--accent-color);
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 4px;
}

.services .service-grid .service-card .link-plain i {
  transition: transform 0.3s ease;
}

.services .service-grid .service-card .link-plain:hover i {
  transform: translateX(2px);
}

/*--------------------------------------------------------------
# About Me Section
--------------------------------------------------------------*/
.about-me .profile-image-wrapper {
  position: relative;
}

.about-me .profile-image-wrapper .profile-image {
  position: relative;
  width: 350px;
  height: 350px;
  margin: 0 auto 40px;
  border-radius: 15%;
  overflow: hidden;
  border: 5px solid var(--accent-color);
  box-shadow: 0 10px 30px color-mix(in srgb, var(--accent-color), transparent 80%);
}

.about-me .profile-image-wrapper .profile-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

@media (max-width: 768px) {
  .about-me .profile-image-wrapper .profile-image {
    width: 400px;
    height: 400px;
  }
}

.about-me .profile-image-wrapper .signature-section {
  text-align: center;
}

.about-me .profile-image-wrapper .signature-section .signature {
  max-width: 200px;
  height: auto;
  margin-bottom: 15px;
  opacity: 0.8;
}

.about-me .profile-image-wrapper .signature-section .quote {
  font-style: italic;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  font-size: 14px;
  margin: 0;
  max-width: 250px;
  margin: 0 auto;
}

.about-me .about-content .intro {
  margin-bottom: 40px;
}

.about-me .about-content .intro h2 {
  font-size: 2.5rem;
  margin-bottom: 20px;
  font-weight: 700;
}

@media (max-width: 768px) {
  .about-me .about-content .intro h2 {
    font-size: 2rem;
    text-align: center;
  }
}

.about-me .about-content .intro p {
  font-size: 16px;
  line-height: 1.7;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
}

@media (max-width: 768px) {
  .about-me .about-content .intro p {
    text-align: center;
  }
}

.about-me .about-content .skills-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;
  margin-bottom: 40px;
}

.about-me .about-content .skills-grid .skill-item {
  text-align: center;
  padding: 20px;
  border-radius: 10px;
  background: color-mix(in srgb, var(--accent-color), transparent 94%);
  border: 1px solid color-mix(in srgb, var(--accent-color), transparent 85%);
  transition: all 0.3s ease;
}

.about-me .about-content .skills-grid .skill-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px color-mix(in srgb, var(--accent-color), transparent 85%);
}

.about-me .about-content .skills-grid .skill-item .skill-icon {
  width: 60px;
  height: 60px;
  margin: 0 auto 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--accent-color);
  border-radius: 50%;
  color: var(--contrast-color);
  font-size: 24px;
}

.about-me .about-content .skills-grid .skill-item h4 {
  font-size: 18px;
  margin-bottom: 10px;
  color: var(--heading-color);
}

.about-me .about-content .skills-grid .skill-item p {
  font-size: 14px;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  margin: 0;
}

.about-me .about-content .journey-timeline {
  margin-bottom: 40px;
}

.about-me .about-content .journey-timeline .timeline-item {
  display: flex;
  align-items: center;
  margin-bottom: 20px;
  padding: 15px;
  border-left: 3px solid var(--accent-color);
  background: color-mix(in srgb, var(--surface-color), transparent 30%);
  border-radius: 0 8px 8px 0;
  transition: all 0.3s ease;
}

.about-me .about-content .journey-timeline .timeline-item:hover {
  background: color-mix(in srgb, var(--accent-color), transparent 95%);
  border-left-color: color-mix(in srgb, var(--accent-color), transparent 10%);
}

.about-me .about-content .journey-timeline .timeline-item:last-child {
  margin-bottom: 0;
}

.about-me .about-content .journey-timeline .timeline-item .year {
  font-weight: 700;
  color: var(--accent-color);
  font-size: 18px;
  min-width: 80px;
  margin-right: 20px;
}

.about-me .about-content .journey-timeline .timeline-item .description {
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  font-size: 15px;
  line-height: 1.5;
}

@media (max-width: 576px) {
  .about-me .about-content .journey-timeline .timeline-item {
    flex-direction: column;
    align-items: flex-start;
  }

  .about-me .about-content .journey-timeline .timeline-item .year {
    margin-right: 0;
    margin-bottom: 8px;
  }
}

.about-me .about-content .cta-section .fun-fact {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 30px;
  padding: 15px 25px;
  background: color-mix(in srgb, var(--accent-color), transparent 94%);
  border-radius: 50px;
  border: 1px solid color-mix(in srgb, var(--accent-color), transparent 85%);
}

.about-me .about-content .cta-section .fun-fact .emoji {
  font-size: 20px;
  margin-right: 10px;
}

.about-me .about-content .cta-section .fun-fact .text {
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  font-size: 14px;
  font-weight: 500;
}

@media (max-width: 768px) {
  .about-me .about-content .cta-section .fun-fact {
    justify-content: center;
    text-align: center;
  }
}

.about-me .about-content .cta-section .action-buttons {
  display: flex;
  gap: 15px;
  justify-content: center;
}

@media (max-width: 576px) {
  .about-me .about-content .cta-section .action-buttons {
    flex-direction: column;
    align-items: center;
  }
}

.about-me .about-content .cta-section .action-buttons .btn {
  padding: 12px 30px;
  font-weight: 600;
  border-radius: 50px;
  text-decoration: none;
  transition: all 0.3s ease;
  font-size: 15px;
}

.about-me .about-content .cta-section .action-buttons .btn.btn-primary {
  background: var(--accent-color);
  color: var(--contrast-color);
  border: 2px solid var(--accent-color);
}

.about-me .about-content .cta-section .action-buttons .btn.btn-primary:hover {
  background: color-mix(in srgb, var(--accent-color), black 10%);
  border-color: color-mix(in srgb, var(--accent-color), black 10%);
  transform: translateY(-2px);
}

.about-me .about-content .cta-section .action-buttons .btn.btn-outline {
  background: transparent;
  color: var(--accent-color);
  border: 2px solid var(--accent-color);
}

.about-me .about-content .cta-section .action-buttons .btn.btn-outline:hover {
  background: var(--accent-color);
  color: var(--contrast-color);
  transform: translateY(-2px);
}

@media (max-width: 992px) {
  .about-me .profile-image-wrapper {
    margin-bottom: 40px;
  }
}

/*--------------------------------------------------------------
# Portfolio Section
--------------------------------------------------------------*/
.portfolio .portfolio-filters {
  padding: 0;
  margin: 0 auto 20px auto;
  list-style: none;
  text-align: center;
}

.portfolio .portfolio-filters li {
  cursor: pointer;
  display: inline-block;
  padding: 8px 20px 10px 20px;
  margin: 0;
  font-size: 15px;
  font-weight: 500;
  line-height: 1;
  margin-bottom: 5px;
  border-radius: 50px;
  transition: all 0.3s ease-in-out;
  font-family: var(--heading-font);
}

.portfolio .portfolio-filters li:hover,
.portfolio .portfolio-filters li.filter-active {
  color: var(--contrast-color);
  background-color: var(--accent-color);
}

.portfolio .portfolio-filters li:first-child {
  margin-left: 0;
}

.portfolio .portfolio-filters li:last-child {
  margin-right: 0;
}

@media (max-width: 575px) {
  .portfolio .portfolio-filters li {
    font-size: 14px;
    margin: 0 0 10px 0;
  }
}

.portfolio .portfolio-item {
  position: relative;
  overflow: hidden;
}

.portfolio .portfolio-item .portfolio-info {
  opacity: 0;
  position: absolute;
  left: 12px;
  right: 12px;
  bottom: -100%;
  z-index: 3;
  transition: all ease-in-out 0.5s;
  background: color-mix(in srgb, var(--surface-color), transparent 10%);
  padding: 15px;
}

.portfolio .portfolio-item .portfolio-info h4 {
  font-size: 18px;
  font-weight: 600;
  padding-right: 50px;
}

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

.portfolio .portfolio-item .portfolio-info .preview-link,
.portfolio .portfolio-item .portfolio-info .details-link {
  position: absolute;
  right: 50px;
  font-size: 24px;
  top: calc(50% - 14px);
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  transition: 0.3s;
  line-height: 0;
}

.portfolio .portfolio-item .portfolio-info .preview-link:hover,
.portfolio .portfolio-item .portfolio-info .details-link:hover {
  color: var(--accent-color);
}

.portfolio .portfolio-item .portfolio-info .details-link {
  right: 14px;
  font-size: 28px;
}

.portfolio .portfolio-item:hover .portfolio-info {
  opacity: 1;
  bottom: 0;
}

/*--------------------------------------------------------------
# Portfolio Details Section
--------------------------------------------------------------*/
.portfolio-details .portfolio-details-slider img {
  width: 100%;
}

.portfolio-details .portfolio-details-slider .swiper-pagination {
  margin-top: 20px;
  position: relative;
}

.portfolio-details .portfolio-details-slider .swiper-pagination .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  background-color: color-mix(in srgb, var(--default-color), transparent 85%);
  opacity: 1;
}

.portfolio-details .portfolio-details-slider .swiper-pagination .swiper-pagination-bullet-active {
  background-color: var(--accent-color);
}

.portfolio-details .portfolio-info {
  background-color: var(--surface-color);
  padding: 30px;
  box-shadow: 0px 0 30px rgba(0, 0, 0, 0.1);
}

.portfolio-details .portfolio-info h3 {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 20px;
  padding-bottom: 20px;
  border-bottom: 1px solid color-mix(in srgb, var(--default-color), transparent 85%);
}

.portfolio-details .portfolio-info ul {
  list-style: none;
  padding: 0;
  font-size: 15px;
}

.portfolio-details .portfolio-info ul li+li {
  margin-top: 10px;
}

.portfolio-details .portfolio-description {
  padding-top: 30px;
}

.portfolio-details .portfolio-description h2 {
  font-size: 26px;
  font-weight: 700;
  margin-bottom: 20px;
}

.portfolio-details .portfolio-description p {
  padding: 0;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
}

/*--------------------------------------------------------------
# Contact Section
--------------------------------------------------------------*/
.contact .info-wrap {
  background-color: var(--surface-color);
  box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.1);
  padding: 30px;
}

@media (max-width: 575px) {
  .contact .info-wrap {
    padding: 20px;
  }
}

.contact .info-item {
  margin-bottom: 40px;
}

.contact .info-item i {
  font-size: 20px;
  color: var(--accent-color);
  background: color-mix(in srgb, var(--accent-color), transparent 92%);
  width: 44px;
  height: 44px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50px;
  transition: all 0.3s ease-in-out;
  margin-right: 15px;
}

.contact .info-item h3 {
  padding: 0;
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 5px;
}

.contact .info-item p {
  padding: 0;
  margin-bottom: 0;
  font-size: 14px;
}

.contact .info-item:hover i {
  background: var(--accent-color);
  color: var(--contrast-color);
}

.contact .php-email-form {
  background-color: var(--surface-color);
  height: 100%;
  padding: 30px;
  box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.1);
}

@media (max-width: 575px) {
  .contact .php-email-form {
    padding: 20px;
  }
}

.contact .php-email-form input[type=text],
.contact .php-email-form input[type=email],
.contact .php-email-form textarea {
  font-size: 14px;
  padding: 10px 15px;
  box-shadow: none;
  border-radius: 0;
  color: var(--default-color);
  background-color: var(--surface-color);
  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 button[type=submit] {
  color: var(--contrast-color);
  background: var(--accent-color);
  border: 0;
  padding: 10px 30px;
  transition: 0.4s;
  border-radius: 50px;
}

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

/*--------------------------------------------------------------
# Starter Section Section
--------------------------------------------------------------*/
.starter-section {
  /* Add your styles here */
}

/*--------------------------------------------------------------
# Hero 2 Section
--------------------------------------------------------------*/
.hero-2 {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 80px;
  overflow: hidden;
}

.hero-2 .hero-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, color-mix(in srgb, var(--accent-color), transparent 95%) 0%, color-mix(in srgb, var(--heading-color), transparent 97%) 100%);
  z-index: -2;
}

.hero-2 .hero-background::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url("../img/bg/abstract-bg-3.webp");
  background-size: cover;
  background-position: center;
  opacity: 0.1;
  z-index: -1;
}

.hero-2 .hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at 30% 20%, color-mix(in srgb, var(--accent-color), transparent 90%) 0%, transparent 50%);
  z-index: -1;
}

.hero-2 .hero-content {
  margin-bottom: 4rem;
}

.hero-2 .hero-content h1 {
  font-size: 4rem;
  font-weight: 800;
  margin-bottom: 2rem;
  line-height: 1.1;
  color: var(--heading-color);
  letter-spacing: -0.02em;
}

@media (max-width: 992px) {
  .hero-2 .hero-content h1 {
    font-size: 3rem;
  }
}

@media (max-width: 768px) {
  .hero-2 .hero-content h1 {
    font-size: 2.5rem;
  }
}

@media (max-width: 576px) {
  .hero-2 .hero-content h1 {
    font-size: 2rem;
  }
}

.hero-2 .hero-content p {
  font-size: 1.25rem;
  margin-bottom: 2.5rem;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  line-height: 1.6;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

@media (max-width: 768px) {
  .hero-2 .hero-content p {
    font-size: 1.1rem;
  }
}

.hero-2 .hero-content .hero-btns {
  display: flex;
  gap: 1.5rem;
  justify-content: center;
  align-items: center;
}

@media (max-width: 576px) {
  .hero-2 .hero-content .hero-btns {
    flex-direction: column;
    gap: 1rem;
  }
}

.hero-2 .hero-content .hero-btns .btn {
  padding: 15px 35px;
  font-weight: 600;
  border-radius: 50px;
  transition: all 0.3s ease;
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

@media (max-width: 576px) {
  .hero-2 .hero-content .hero-btns .btn {
    width: 100%;
    max-width: 280px;
  }
}

.hero-2 .hero-content .hero-btns .btn-primary {
  background-color: var(--accent-color);
  border-color: var(--accent-color);
  color: var(--contrast-color);
  box-shadow: 0 8px 25px color-mix(in srgb, var(--accent-color), transparent 70%);
}

.hero-2 .hero-content .hero-btns .btn-primary:hover {
  background-color: color-mix(in srgb, var(--accent-color), #000 15%);
  border-color: color-mix(in srgb, var(--accent-color), #000 15%);
  transform: translateY(-2px);
  box-shadow: 0 12px 35px color-mix(in srgb, var(--accent-color), transparent 60%);
}

.hero-2 .hero-content .hero-btns .btn-outline {
  background-color: transparent;
  border: 2px solid var(--default-color);
  color: var(--default-color);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.hero-2 .hero-content .hero-btns .btn-outline i {
  font-size: 1.2rem;
}

.hero-2 .hero-content .hero-btns .btn-outline:hover {
  transform: translateY(-2px);
}

.hero-2 .hero-image-container {
  margin-bottom: 4rem;
  position: relative;
}

.hero-2 .hero-image-container .hero-image {
  position: relative;
  border-radius: 25px;
  overflow: hidden;
  box-shadow: 0 25px 60px color-mix(in srgb, var(--default-color), transparent 85%);
}

.hero-2 .hero-image-container .hero-image img {
  width: 100%;
  height: auto;
  border-radius: 25px;
  transition: transform 0.6s ease;
}

.hero-2 .hero-image-container .hero-image img:hover {
  transform: scale(1.05);
}

.hero-2 .hero-image-container .hero-image .image-decoration {
  position: absolute;
  top: -20px;
  right: -20px;
  width: 80px;
  height: 80px;
  background: linear-gradient(45deg, var(--accent-color), color-mix(in srgb, var(--accent-color), #fff 30%));
  border-radius: 50%;
  opacity: 0.8;
  z-index: 1;
}

.hero-2 .hero-image-container .hero-image .image-decoration::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 40px;
  height: 40px;
  border: 3px solid var(--contrast-color);
  border-radius: 50%;
}

@media (max-width: 768px) {
  .hero-2 .hero-image-container .hero-image .image-decoration {
    width: 60px;
    height: 60px;
    top: -15px;
    right: -15px;
  }

  .hero-2 .hero-image-container .hero-image .image-decoration::before {
    width: 30px;
    height: 30px;
  }
}

.hero-2 .hero-stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
  text-align: center;
}

@media (max-width: 768px) {
  .hero-2 .hero-stats {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }
}

@media (max-width: 576px) {
  .hero-2 .hero-stats {
    grid-template-columns: 1fr;
  }
}

.hero-2 .hero-stats .stat-item {
  padding: 2rem 1rem;
  background-color: var(--surface-color);
  border-radius: 15px;
  box-shadow: 0 10px 30px color-mix(in srgb, var(--default-color), transparent 90%);
  transition: all 0.3s ease;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}

.hero-2 .hero-stats .stat-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 45px color-mix(in srgb, var(--default-color), transparent 85%);
}

.hero-2 .hero-stats .stat-item .stat-icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, var(--accent-color), color-mix(in srgb, var(--accent-color), #fff 20%));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
}

.hero-2 .hero-stats .stat-item .stat-icon i {
  font-size: 1.5rem;
  color: var(--contrast-color);
}

.hero-2 .hero-stats .stat-item h3 {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--heading-color);
  margin-bottom: 0.5rem;
  line-height: 1;
}

@media (max-width: 768px) {
  .hero-2 .hero-stats .stat-item h3 {
    font-size: 2rem;
  }
}

.hero-2 .hero-stats .stat-item p {
  font-size: 0.95rem;
  margin-bottom: 0;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  font-weight: 500;
}

@media (max-width: 992px) {
  .hero-2 {
    padding: 100px 0 60px;
    min-height: auto;
  }

  .hero-2 .hero-content {
    margin-bottom: 3rem;
  }

  .hero-2 .hero-content h1 {
    margin-bottom: 1.5rem;
  }

  .hero-2 .hero-content p {
    margin-bottom: 2rem;
  }

  .hero-2 .hero-image-container {
    margin-bottom: 3rem;
  }
}

/*--------------------------------------------------------------
# Hero 3 Section
--------------------------------------------------------------*/
.hero-3 {
  min-height: 85vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.hero-3::before {
  content: "";
  position: absolute;
  top: -50%;
  right: -10%;
  width: 70%;
  height: 140%;
  background: color-mix(in srgb, var(--accent-color), transparent 92%);
  border-radius: 30% 70% 70% 30%/30% 30% 70% 70%;
  z-index: 0;
  transform: rotate(-5deg);
}

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

.hero-3 .hero-content {
  padding-right: 2rem;
}

.hero-3 .hero-content .season-tag {
  display: inline-block;
  background: color-mix(in srgb, var(--accent-color), transparent 90%);
  color: var(--accent-color);
  padding: 0.5rem 1.25rem;
  border-radius: 2rem;
  font-size: 0.9rem;
  font-weight: 500;
  margin-bottom: 1.5rem;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.hero-3 .hero-content h1 {
  font-size: 3.5rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  line-height: 1.2;
}

.hero-3 .hero-content p {
  font-size: 1.15rem;
  margin-bottom: 2.5rem;
  max-width: 90%;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
}

.hero-3 .hero-content .hero-cta {
  display: flex;
  align-items: center;
  margin-bottom: 2.5rem;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.hero-3 .hero-content .hero-cta .btn-primary {
  background-color: var(--accent-color);
  border: none;
  color: var(--contrast-color);
  padding: 0.8rem 2rem;
  font-size: 1rem;
  font-weight: 600;
  border-radius: 0.25rem;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  z-index: 1;
  box-shadow: 0 6px 15px color-mix(in srgb, var(--accent-color), transparent 80%);
}

.hero-3 .hero-content .hero-cta .btn-primary::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 0;
  height: 100%;
  background: color-mix(in srgb, var(--accent-color), transparent 25%);
  z-index: -1;
  transition: all 0.4s cubic-bezier(0.65, 0, 0.35, 1);
}

.hero-3 .hero-content .hero-cta .btn-primary:hover::before {
  width: 100%;
}

.hero-3 .hero-content .hero-cta .link-with-arrow {
  color: var(--accent-color);
  font-weight: 500;
  font-size: 1rem;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  position: relative;
  transition: all 0.3s ease;
}

.hero-3 .hero-content .hero-cta .link-with-arrow i {
  transition: transform 0.3s ease;
}

.hero-3 .hero-content .hero-cta .link-with-arrow:hover {
  color: color-mix(in srgb, var(--accent-color), transparent 20%);
}

.hero-3 .hero-content .hero-cta .link-with-arrow:hover i {
  transform: translateX(5px);
}

.hero-3 .hero-content .hero-features {
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.hero-3 .hero-content .hero-features .feature-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.hero-3 .hero-content .hero-features .feature-item i {
  font-size: 1.25rem;
  color: var(--accent-color);
}

.hero-3 .hero-content .hero-features .feature-item span {
  font-size: 0.95rem;
  font-weight: 500;
  color: color-mix(in srgb, var(--default-color), transparent 25%);
}

.hero-3 .hero-image-wrapper {
  position: relative;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-3 .hero-image-wrapper .hero-image {
  position: relative;
  z-index: 2;
  width: 90%;
  max-width: 500px;
  filter: drop-shadow(0 15px 40px rgba(0, 0, 0, 0.1));
  animation: float 6s ease-in-out infinite;
}

.hero-3 .hero-image-wrapper .hero-image .main-product {
  border-radius: 10px;
  transform: scale(1);
  transition: transform 0.5s ease;
}

.hero-3 .hero-image-wrapper .hero-image .main-product:hover {
  transform: scale(1.02);
}

.hero-3 .hero-image-wrapper .hero-image .floating-badge {
  position: absolute;
  top: 30px;
  right: -30px;
  background: var(--accent-color);
  color: var(--contrast-color);
  border-radius: 50%;
  height: 100px;
  width: 100px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  animation: pulse 2s infinite ease-in-out;
}

.hero-3 .hero-image-wrapper .hero-image .floating-badge .discount {
  font-size: 1.2rem;
  font-weight: 700;
  line-height: 1;
}

.hero-3 .hero-image-wrapper .hero-image .floating-badge .discount-text {
  font-size: 0.8rem;
  font-weight: 500;
}

.hero-3 .hero-image-wrapper .decorative-element {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 190px;
  height: 190px;
  border-radius: 50%;
  background: color-mix(in srgb, var(--heading-color), transparent 90%);
  z-index: 1;
}

@keyframes float {

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

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

@keyframes pulse {
  0% {
    transform: scale(1);
  }

  50% {
    transform: scale(1.05);
  }

  100% {
    transform: scale(1);
  }
}

@media (max-width: 1199.98px) {
  .hero-3 .hero-content h1 {
    font-size: 3rem;
  }
}

@media (max-width: 991.98px) {
  .hero-3 {
    min-height: auto;
    padding: 5rem 0;
  }

  .hero-3::before {
    width: 100%;
    height: 50%;
    top: 0;
    right: -20%;
  }

  .hero-3 .hero-content {
    padding-right: 0;
    margin-bottom: 3rem;
    text-align: center;
  }

  .hero-3 .hero-content h1 {
    font-size: 2.5rem;
  }

  .hero-3 .hero-content h1 br {
    display: none;
  }

  .hero-3 .hero-content p {
    max-width: 100%;
  }

  .hero-3 .hero-content .hero-cta {
    justify-content: center;
  }

  .hero-3 .hero-content .hero-features {
    justify-content: center;
  }

  .hero-3 .hero-image-wrapper .hero-image {
    margin: 0 auto;
  }

  .hero-3 .hero-image-wrapper .decorative-element {
    right: 50%;
    transform: translateX(140px);
    width: 150px;
    height: 150px;
  }
}

@media (max-width: 767.98px) {
  .hero-3 .hero-content h1 {
    font-size: 2.2rem;
    margin-bottom: 1rem;
  }

  .hero-3 .hero-content p {
    font-size: 1rem;
    margin-bottom: 2rem;
  }

  .hero-3 .hero-image-wrapper .floating-badge {
    top: 10px;
    right: -20px;
    height: 80px;
    width: 80px;
    padding: 0.5rem;
  }

  .hero-3 .hero-image-wrapper .floating-badge .discount {
    font-size: 1.2rem;
  }

  .hero-3 .hero-image-wrapper .floating-badge .discount-text {
    font-size: 0.7rem;
  }
}

@media (max-width: 575.98px) {
  .hero-3 {
    padding: 4rem 0;
  }

  .hero-3 .hero-content .season-tag {
    font-size: 0.8rem;
  }

  .hero-3 .hero-content .hero-features {
    flex-direction: column;
    align-items: center;
    gap: 1rem;
  }
}

/*--------------------------------------------------------------
# Hero 4 Section
--------------------------------------------------------------*/
.hero-4 {
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}

.hero-4 .hero-content {
  position: relative;
  z-index: 2;
}

.hero-4 .hero-content .hero-text {
  padding-right: 20px;
}

.hero-4 .hero-content .hero-text .season-tag {
  display: inline-block;
  background-color: color-mix(in srgb, var(--accent-color), transparent 85%);
  color: var(--accent-color);
  font-size: 0.875rem;
  font-weight: 500;
  padding: 6px 12px;
  border-radius: 4px;
  margin-bottom: 1.5rem;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.hero-4 .hero-content .hero-text h1 {
  font-size: 3.5rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  line-height: 1.1;
}

.hero-4 .hero-content .hero-text p {
  font-size: 1.125rem;
  line-height: 1.6;
  margin-bottom: 2rem;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
}

.hero-4 .hero-content .hero-text .hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 2rem;
}

.hero-4 .hero-content .hero-text .hero-badges .discount-badge,
.hero-4 .hero-content .hero-text .hero-badges .shipping-badge {
  display: inline-flex;
  align-items: center;
  padding: 8px 16px;
  border-radius: 4px;
  font-size: 0.875rem;
  font-weight: 600;
}

.hero-4 .hero-content .hero-text .hero-badges .discount-badge {
  background-color: color-mix(in srgb, var(--heading-color), transparent 80%);
  color: var(--heading-color);
}

.hero-4 .hero-content .hero-text .hero-badges .discount-badge:before {
  content: "\f242";
  font-family: "bootstrap-icons";
  margin-right: 6px;
}

.hero-4 .hero-content .hero-text .hero-badges .shipping-badge {
  background-color: color-mix(in srgb, var(--accent-color), transparent 85%);
  color: var(--accent-color);
}

.hero-4 .hero-content .hero-text .hero-badges .shipping-badge:before {
  content: "\f416";
  font-family: "bootstrap-icons";
  margin-right: 6px;
}

.hero-4 .hero-content .hero-text .hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
}

.hero-4 .hero-content .hero-text .hero-actions .btn {
  padding: 12px 28px;
  font-weight: 600;
  border-radius: 6px;
  font-size: 1rem;
  transition: all 0.3s ease;
}

.hero-4 .hero-content .hero-text .hero-actions .btn-primary {
  background-color: var(--accent-color);
  border-color: var(--accent-color);
  color: var(--contrast-color);
}

.hero-4 .hero-content .hero-text .hero-actions .btn-primary:hover {
  background-color: color-mix(in srgb, var(--accent-color), #000 15%);
  border-color: color-mix(in srgb, var(--accent-color), #000 15%);
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.hero-4 .hero-content .hero-text .hero-actions .btn-outline {
  background-color: transparent;
  border: 2px solid var(--heading-color);
  color: var(--default-color);
}

.hero-4 .hero-content .hero-text .hero-actions .btn-outline:hover {
  background-color: transparent;
  color: var(--accent-color);
  border-color: var(--accent-color);
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.hero-4 .hero-content .hero-image {
  position: relative;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-4 .hero-content .hero-image img {
  position: relative;
  z-index: 2;
  max-height: 600px;
  object-fit: contain;
  border-radius: 8px;
}

.hero-4 .hero-content .hero-image .image-accent {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 80%;
  height: 80%;
  background-color: color-mix(in srgb, var(--accent-color), transparent 85%);
  border-radius: 100%;
  z-index: 1;
}

@media (max-width: 992px) {
  .hero-4 {
    padding: 60px 0;
  }

  .hero-4 .hero-text {
    padding-right: 0;
    text-align: center;
    margin-top: 40px;
  }

  .hero-4 .hero-text h1 {
    font-size: 2.5rem;
  }

  .hero-4 .hero-text .hero-badges {
    justify-content: center;
  }

  .hero-4 .hero-text .hero-actions {
    justify-content: center;
  }

  .hero-4 .hero-image {
    margin-bottom: 40px;
  }

  .hero-4 .hero-image img {
    max-height: 450px;
  }
}

@media (max-width: 768px) {
  .hero-4 {
    padding: 50px 0;
  }

  .hero-4 .hero-text h1 {
    font-size: 2rem;
  }

  .hero-4 .hero-text p {
    font-size: 1rem;
  }

  .hero-4 .hero-text .hero-actions {
    flex-direction: column;
  }

  .hero-4 .hero-text .hero-actions .btn {
    width: 100%;
  }

  .hero-4 .hero-image img {
    max-height: 350px;
  }
}