/**
* Template Name: Arsha
* Template URL: https://bootstrapmade.com/arsha-free-bootstrap-html-template-corporate/
* Updated: Feb 22 2025 with Bootstrap v5.3.3
* Author: BootstrapMade.com
* License: https://bootstrapmade.com/license/
*/

/*--------------------------------------------------------------
# Font & Color Variables
# Help: https://bootstrapmade.com/color-system/
--------------------------------------------------------------*/
/* Fonts */
:root {
  --default-font: "Open Sans", system-ui, sans-serif;
  --heading-font: "Jost", sans-serif;
  --nav-font: "Poppins", sans-serif;

  /* Global Colors */
  --background-color: #f4ecd8;          
  --surface-color: #ffffff;                
  --default-color: #2c2c2c;              
  --heading-color: #3e6d34;               
  --accent-color: #a34522;                 
  --contrast-color: #ffffff;              

  /* Nav Colors */
  --nav-color: #2c2c2c;                  
  --nav-hover-color: #a34522;              
  --nav-mobile-background-color: #f4ecd8;  
  --nav-dropdown-background-color: #ffffff;
  --nav-dropdown-color: #2c2c2c;
  --nav-dropdown-hover-color: #a34522;

  /* Optional secondary */
  --sunset-yellow: #e4b53d;               
  --sky-blue: #7db4cf;                     
}


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

.logo .sitename {
font-family: 'Montserrat', sans-serif;
  font-size: 1rem;             
  font-weight: 500;            
  color: #1c1c1c;
  margin: 0;
  white-space: nowrap;        
  letter-spacing: 0.3px;
}

.light-background {
  --background-color: #f5f6f8;
  --surface-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;
}

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

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

/*--------------------------------------------------------------
# Global Header
--------------------------------------------------------------*/
.header {
 background-color: #d6ba88;
 color: #2e2e2e;
  transition: background-color 0.3s ease;
} 

header.scrolled {
  background-color: #f4ecd8; 
  box-shadow: 0 2px 4px 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: 30px;
  margin: 0;
  font-weight: 500;
  color: var(--heading-color);
  letter-spacing: 2px;
  text-transform: uppercase;
}

.header .btn-getstarted,
.header .btn-getstarted:focus {
  color: var(--contrast-color);
  background: var(--accent-color);
  font-size: 14px;
  padding: 8px 25px;
  margin: 0 0 0 30px;
  border-radius: 50px;
  transition: 0.3s;
}

.header .btn-getstarted:hover,
.header .btn-getstarted:focus:hover {
  color: var(--contrast-color);
  background: color-mix(in srgb, var(--accent-color), transparent 15%);
}

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

  .header .btn-getstarted {
    order: 2;
    margin: 0 15px 0 0;
    padding: 6px 15px;
  }

  .header .navmenu {
    order: 3;
  }
}

/* Index Page Header
------------------------------*/
.index-page .header {
  --background-color: rgba(255, 255, 255, 0);
  --heading-color: #ffffff;
  --nav-color: #ffffff;
}

/* Index Page Header on Scroll
------------------------------*/
.index-page.scrolled .header {
  --background-color: rgba(40, 58, 90, 0.9);
}

/*--------------------------------------------------------------
# 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 a,
  .navmenu a:focus {
    color: var(--nav-color);
    padding: 18px 15px;
    font-size: 15px;
    font-family: var(--nav-font);
    font-weight: 400;
    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;
    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);
  }

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

  .navmenu .megamenu {
    position: static;
  }

  .navmenu .megamenu ul {
    margin: 0;
    padding: 10px;
    background: var(--nav-dropdown-background-color);
    box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.1);
    position: absolute;
    top: 130%;
    left: 0;
    right: 0;
    visibility: hidden;
    opacity: 0;
    display: flex;
    transition: 0.3s;
    border-radius: 4px;
    z-index: 99;
  }

  .navmenu .megamenu ul li {
    flex: 1;
  }

  .navmenu .megamenu ul li a,
  .navmenu .megamenu ul li:hover>a {
    padding: 10px 20px;
    font-size: 15px;
    color: var(--nav-dropdown-color);
  }

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

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

  .navmenu .dd-box-shadow {
    box-shadow: 0px 0px 30px rgba(0, 0, 0, 0.1);
  }
}

/* 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);
    overflow-y: auto;
    transition: 0.3s;
    z-index: 9998;
    box-shadow: 0px 0px 30px rgba(0, 0, 0, 0.1);
  }

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

  .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 {
  background-color: linear-gradient(to top, #3e3425, #50402e);
  color: #393737;
  font-size: 14px;
  padding-top: 50px;
  padding-bottom: 50px;
  position: relative;
}

/* Newsletter Section */
.footer .footer-newsletter {
  background-color: color-mix(in srgb, var(--heading-color), transparent 95%);
  padding: 50px 20px;
  text-align: center;
  border-radius: 10px;
}

.footer .footer-newsletter h4 {
  font-size: 24px;
  font-weight: 600;
  color: var(--heading-color);
}

.footer .footer-newsletter .newsletter-form {
  margin: 30px auto 15px;
  padding: 6px 8px;
  max-width: 500px;
  display: flex;
  background-color: color-mix(in srgb, var(--surface-color), transparent 10%);
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 85%);
  border-radius: 50px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.05);
  transition: border-color 0.3s ease;
}

.footer .newsletter-form:focus-within {
  border-color: var(--accent-color);
}

.footer .newsletter-form input[type="email"] {
  flex: 1;
  padding: 10px;
  border: none;
  background: transparent;
  color: var(--default-color);
  font-size: 14px;
}

.footer .newsletter-form input[type="email"]:focus-visible {
  outline: none;
}

.footer .newsletter-form input[type="submit"] {
  background: var(--accent-color);
  color: var(--contrast-color);
  border: none;
  padding: 0 20px;
  font-size: 16px;
  font-weight: 500;
  border-radius: 50px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.footer .newsletter-form input[type="submit"]:hover {
  background-color: color-mix(in srgb, var(--accent-color), transparent 20%);
}

/* Footer Top Section */
.footer .footer-top {
  padding-top: 50px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 40px;
}

/* Footer About */
.footer .footer-about a {
  font-family: var(--heading-font);
  font-size: 28px;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--heading-color);
  text-decoration: none;
}

/* Footer Contact Info */
.footer .footer-contact p {
  margin-bottom: 8px;
  font-size: 14px;
  color: var(--default-color);
}

/* Footer Links */
.footer .footer-links ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer .footer-links h4 {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 15px;
  color: var(--heading-color);
}

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

.footer .footer-links ul i {
  font-size: 12px;
  color: var(--accent-color);
  margin-right: 8px;
}

.footer .footer-links ul a {
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  text-decoration: none;
  transition: color 0.3s ease;
}

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

/* Social Icons */
.footer .social-links {
  display: flex;
  margin-top: 15px;
}

.footer .social-links a {
  display: flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  width: 40px;
  height: 40px;
  margin-right: 10px;
  border-radius: 50%;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 60%);
  transition: all 0.3s ease;
}

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

/* Copyright & Credits */
.footer .copyright {
  text-align: center;
  padding-top: 30px;
  padding-bottom: 10px;
  border-top: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}

.footer .copyright p {
  margin: 0;
  font-size: 13px;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
}

.footer .credits {
  margin-top: 6px;
  font-size: 12px;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
}
/*--------------------------------------------------------------
# Preloader
--------------------------------------------------------------*/
#preloader {
  position: fixed;
  inset: 0;
  z-index: 999999;
  display: flex;
  justify-content: center;
  align-items: center;
  background: var(--background-color);
}

/* Loader container */
.loader {
  display: flex;
  gap: 10px;
}

.loader span {
  width: 15px;
  height: 15px;
  background-color: var(--accent-color); /* Theme accent color */
  border-radius: 50%;
  animation: bounce 0.6s infinite alternate;
}

/* Bounce effect with stagger */
.loader span:nth-child(1) { animation-delay: 0s; }
.loader span:nth-child(2) { animation-delay: 0.2s; }
.loader span:nth-child(3) { animation-delay: 0.4s; }

/* Keyframes for bouncing dots */
@keyframes bounce {
  0% { transform: translateY(0); opacity: 0.3; }
  50% { transform: translateY(-15px); opacity: 1; }
  100% { transform: translateY(0); opacity: 0.3; }
}

/* Smooth hide transition */
#preloader.hide {
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

/*--------------------------------------------------------------
# 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 {
  --background-color: color-mix(in srgb, var(--default-color), transparent 96%);
  color: var(--default-color);
  background-color: var(--background-color);
  padding: 20px 0;
  position: relative;
}

.page-title h1 {
  font-size: 28px;
  font-weight: 700;
  margin: 0;
}

.page-title .breadcrumbs ol {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  padding: 0 0 10px 0;
  margin: 0;
  font-size: 14px;
}

.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: 88px;
  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;
  text-transform: uppercase;
  position: relative;
}

.section-title h2:before {
  content: "";
  position: absolute;
  display: block;
  width: 160px;
  height: 1px;
  background: color-mix(in srgb, var(--default-color), transparent 60%);
  left: 0;
  right: 0;
  bottom: 1px;
  margin: auto;
}

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

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

/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
.hero {
  margin-top: 2% !important;
  padding-top: 20px !important;
  width: 100%;
  min-height: 80vh;
  position: relative;
  padding: 120px 0 60px 0;
  display: flex;
  align-items: center;
}

.hero h1 {
  margin: 0;
  font-size: 48px;
  font-weight: 700;
  line-height: 56px;
}

.hero p {
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  margin: 5px 0 30px 0;
  font-size: 22px;
  line-height: 1.3;
  font-weight: 600;
}

.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: 10px 28px 12px 28px;
  border-radius: 50px;
  transition: 0.5s;
}

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

.hero .btn-watch-video {
  font-size: 16px;
  transition: 0.5s;
  margin-left: 25px;
  color: var(--default-color);
  font-weight: 600;
}

.hero .btn-watch-video i {
  color: var(--contrast-color);
  font-size: 32px;
  transition: 0.3s;
  line-height: 0;
  margin-right: 8px;
}

.hero .btn-watch-video:hover {
  color: var(--accent-color);
}

.hero .btn-watch-video:hover i {
  color: color-mix(in srgb, var(--accent-color), transparent 15%);
}

.hero .animated {
  animation: up-down 2s ease-in-out infinite alternate-reverse both;
}

.hero .hero-img {
  margin-left: 100px;
}


@media (max-width: 640px) {
  .hero h1 {
    font-size: 28px;
    line-height: 36px;
  }

  .hero p {
    font-size: 18px;
    line-height: 24px;
    margin-bottom: 30px;
  }

  .hero .btn-get-started,
  .hero .btn-watch-video {
    font-size: 13px;
  }
}

  .hero .hero-img {
    margin-left: 0; 
    margin-top: 30px; 
  }


@keyframes up-down {
  0% {
    transform: translateY(10px);
  }

  100% {
    transform: translateY(-10px);
  }
}


@media (max-width: 640px) {
  .hero h1 {
    font-size: 28px;
    line-height: 36px;
  }

  .hero p {
    font-size: 18px;
    line-height: 24px;
    margin-bottom: 30px;
  }

  .hero .btn-get-started,
  .hero .btn-watch-video {
    font-size: 13px;
  }
}

@keyframes up-down {
  0% {
    transform: translateY(10px);
  }

  100% {
    transform: translateY(-10px);
  }
}

/*--------------------------------------------------------------
# Clients Section
--------------------------------------------------------------*/
.clients {
  padding: 12px 0;
}

.clients .swiper {
  padding: 10px 0;
}

.clients .swiper-wrapper {
  height: auto;
}

.clients .swiper-slide img {
  transition: 0.3s;
  padding: 0 10px;
}

.clients .swiper-slide img:hover {
  transform: scale(1.1);
}

/*--------------------------------------------------------------
# About Section
--------------------------------------------------------------*/
.about.section {
  background-color: #fffaf3;
  color: #2a2320;
  padding: 80px 0;
}

.about .section-title h2 {
  font-family: 'Montserrat', sans-serif;
  font-size: 2rem;
  font-weight: 700;
  color: #2a2320;
  text-align: center;
  margin-bottom: 40px;
}

.about .content p {
  font-family: 'Montserrat', sans-serif;
  font-size: 1rem;
  color: #3b312c;
  margin-bottom: 20px;
}

.about .content ul {
  padding-left: 0;
  list-style: none;
}

.about .content ul li {
  display: flex;
  align-items: center;
  margin-bottom: 12px;
  font-family: 'Montserrat', sans-serif;
  color: #3b312c;
}

.about .content ul li i {
  color: #a76d41;
  font-size: 1.2rem;
  margin-right: 10px;
}

.about .col-lg-6:last-child p {
  font-family: 'Montserrat', sans-serif;
  font-size: 1rem;
  color: #3b312c;
  margin-bottom: 20px;
}

.read-more {
  display: inline-flex;
  align-items: center;
  font-weight: 600;
  color: #a76d41;
  text-decoration: none;
  font-family: 'Montserrat', sans-serif;
  transition: color 0.3s ease;
}

.read-more i {
  margin-left: 8px;
  font-size: 1.1rem;
  transition: transform 0.3s ease;
}

.read-more:hover {
  color: #2a2320;
}

.read-more:hover i {
  transform: translateX(4px);
}

/*--------------------------------------------------------------
# Why Us Section 
--------------------------------------------------------------*/
.why-us {
  background-color: #f7f1e4;
  color: #2a2320;
  padding: 80px 0;
  font-family: 'Montserrat', sans-serif;
}

.why-us .section-title h2 {
  font-size: 2rem;
  font-weight: 700;
  color: #2a2320;
  margin-bottom: 40px;
  text-align: center;
}

.why-us .content h3 {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.8rem;
  font-weight: 700;
  margin-bottom: 20px;
  color: #2a2320;
}

.why-us .content h3 span {
  color: #a76d41;
  font-weight: 600;
}

.why-us .content p {
  font-family: 'Montserrat', sans-serif;
  font-size: 1rem;
  color: #3b312c;
  margin-bottom: 30px;
}


.faq-container {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.faq-item {
  background-color: #f4f1ed;
  border-left: 4px solid #a76d41;
  padding: 20px;
  border-radius: 8px;
  position: relative;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.faq-item h3 {
  font-family: 'Montserrat', sans-serif;
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 10px;
  color: #2a2320;
}

.faq-item span {
  font-weight: 700;
  margin-right: 10px;
  color: #a76d41;
}

.faq-content {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.95rem;
  color: #3b312c;
  display: none;
  padding-top: 5px;
}

.faq-item.faq-active .faq-content {
  display: block;
}

.faq-toggle {
  position: absolute;
  right: 20px;
  top: 24px;
  font-size: 1.2rem;
  color: #a76d41;
  transition: transform 0.3s ease;
}

.faq-item.faq-active .faq-toggle {
  transform: rotate(90deg);
}



/*--------------------------------------------------------------
# Skills Section
--------------------------------------------------------------*/
.skills {
  background-color: #2a2320;
  color: #e8e3db;
  padding: 80px 0;
}

.skills .content h3 {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.8rem;
  font-weight: 700;
  margin-bottom: 20px;
  color: #f4f1ed;
}

.skills .content p {
  font-family: 'Montserrat', sans-serif;
  font-size: 1rem;
  color: #d6d0c8;
  margin-bottom: 30px;
  font-style: italic;
}

.skills .skill {
  display: flex;
  justify-content: space-between;
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  margin-bottom: 10px;
  color: #e8e3db;
}

.skills .progress {
  height: 20px;
  background: #3b312c;
  border-radius: 10px;
  overflow: hidden;
  margin-bottom: 25px;
}

.skills .progress-bar-wrap {
  background: transparent;
  height: 100%;
  width: 100%;
}

.skills .progress-bar {
  height: 100%;
  background-color: #d6b08c;
  transition: width 1s ease-in-out;
  border-radius: 10px;
}

.skills img {
  border-radius: 10px;
  max-width: 100%;
  height: auto;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
}


#services {
  background-color: #faf3ef;
  color: #2a2320;
  padding: 80px 0;
}

#services .section-title h2 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 2rem;
  color: #2a2320;
  margin-bottom: 10px;
}

#services .section-title p {
  font-family: 'Montserrat', sans-serif;
  font-size: 1rem;
  color: #5a504a;
  max-width: 700px;
  margin: 0 auto;
}

#services .service-item {
  background-color: #ffffff;
  padding: 35px 30px;
  border-radius: 15px;
  text-align: left;
  box-shadow: 0 8px 30px rgba(42, 35, 32, 0.08);
  transition: all 0.3s ease-in-out;
  height: 100%;
}

#services .service-item:hover {
  transform: translateY(-6px);
  box-shadow: 0 10px 35px rgba(42, 35, 32, 0.15);
}

#services .service-item h4 {
  font-size: 1.2rem;
  font-weight: 600;
  color: #2a2320;
  margin-bottom: 15px;
}

#services .service-item p {
  font-size: 0.95rem;
  color: #5a504a;
  margin-bottom: 15px;
}

#services .service-item ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

#services .service-item ul li {
  position: relative;
  padding-left: 28px;
  margin-bottom: 12px;
  color: #5a504a;
  font-size: 0.95rem;
  line-height: 1.5;
}

#services .service-item ul li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 10px;
  width: 8px;
  height: 8px;
  background: #a9794c;
  border-radius: 50%;
}


/*--------------------------------------------------------------
# Work Process Section (Updated for color flow with Services)
--------------------------------------------------------------*/
.work-process {
  background-color: #f9f6f1; /* lighter than Services */
  padding: 80px 0;
  font-family: 'Montserrat', sans-serif;
  color: #2a2320;
}

/* Section Title */
.work-process .section-title h2 {
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 10px;
}

.work-process .section-title p {
  font-size: 15px;
  color: #5a504a;
  max-width: 600px;
  margin: 0 auto 30px;
  line-height: 1.6;
}

/* Step Card */
.work-process .steps-item {
  background-color: #ffffff;
  border-radius: 16px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
  overflow: hidden;
}

.work-process .steps-item:hover {
  transform: translateY(-6px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
}

/* Step Image */
.work-process .steps-image {
  height: 260px;
  overflow: hidden;
}

.work-process .steps-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
  border-radius: 16px 16px 0 0;
}

.work-process .steps-item:hover .steps-image img {
  transform: scale(1.05);
}

/* Step Content */
.work-process .steps-content {
  padding: 30px 24px 24px;
  position: relative;
}

.work-process .steps-number {
  position: absolute;
  top: -25px;
  left: 24px;
  width: 48px;
  height: 48px;
  background-color: #a76d41;
  color: #ffffff;
  font-weight: 600;
  font-size: 18px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  transition: background 0.3s;
}

.work-process .steps-item:hover .steps-number {
  background-color: #946036;
}

/* Title & Description */
.work-process .steps-content h3 {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 10px;
  color: #2a2320;
}

.work-process .steps-content p {
  font-size: 14px;
  line-height: 1.6;
  color: #5a504a;
  margin-bottom: 20px;
}

/* Features */
.work-process .steps-features .feature-item {
  display: flex;
  align-items: center;
  font-size: 13px;
  margin-bottom: 10px;
  color: #2a2320;
}

.work-process .steps-features .feature-item i {
  font-size: 16px;
  color: #a76d41;
  margin-right: 8px;
}

/* Responsive Tweaks */
@media (max-width: 991px) {
  .work-process .steps-item {
    margin-bottom: 30px;
  }

  .work-process .steps-image {
    height: 220px;
  }

  .work-process .steps-content {
    padding: 25px 20px 20px;
  }

  .work-process .steps-number {
    width: 42px;
    height: 42px;
    font-size: 16px;
    top: -20px;
    left: 20px;
  }

  .work-process .steps-content h3 {
    font-size: 18px;
  }

  .work-process .steps-content p {
    font-size: 13px;
  }
}



/*--------------------------------------------------------------
# Call To Action Section
--------------------------------------------------------------*/
/* Work Process Section */
/* Work Process Section Styling */
.work-process {
  background-color: #fff9f5;
  padding: 80px 0;
  color: #2a2320;
  font-family: 'Montserrat', sans-serif;
}

/* Section Title */
.work-process .section-title h2 {
  font-weight: 700;
  font-size: 2rem;
  color: #2a2320;
  margin-bottom: 10px;
}

.work-process .section-title p {
  font-size: 1rem;
  color: #5a504a;
  max-width: 600px;
  margin: 0 auto;
}

/* Card Container */
.steps-item {
  background-color: #ffffff;
  border-radius: 15px;
  padding: 25px 20px;
  box-shadow: 0 4px 18px rgba(42, 35, 32, 0.08);
  transition: all 0.3s ease-in-out;
  height: 100%;
  font-family: 'Montserrat', sans-serif;
}

/* Hover Effect */
.steps-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 25px rgba(42, 35, 32, 0.15);
}

/* Image Styling */
.steps-image {
  border-radius: 10px;
  overflow: hidden;
  margin-bottom: 20px;
}

/* Step Number */
.steps-number {
  font-size: 2rem;
  font-weight: 700;
  color: #a9794c;
  margin-bottom: 10px;
}

/* Step Title */
.steps-content h3 {
  font-size: 1.25rem;
  font-weight: 600;
  color: #2a2320;
  margin-bottom: 10px;
}

/* Step Description */
.steps-content p {
  font-size: 0.95rem;
  color: #5a504a;
  margin-bottom: 15px;
  line-height: 1.6;
}

/* Feature List */
.steps-features {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

/* Feature Item */
.feature-item {
  display: flex;
  align-items: center;
  font-size: 0.9rem;
  color: #4e453e;
}

.feature-item i {
  color: #a9794c;
  margin-right: 8px;
  font-size: 1rem;
}

/*--------------------------------------------------------------
# Portfolio Section
--------------------------------------------------------------*/
.portfolio {
  background-color: #f7f1e4;
  color: #2a2320;
  padding: 80px 0;
  font-family: 'Montserrat', sans-serif;
}

.portfolio .section-title h2 {
  font-size: 2rem;
  font-weight: 700;
  color: #2a2320;
  margin-bottom: 40px;
  text-align: center;
}

.portfolio .portfolio-filters {
  padding: 0;
  margin: 0 auto 30px auto;
  list-style: none;
  text-align: center;
}

.portfolio .portfolio-filters li {
  cursor: pointer;
  display: inline-block;
  padding: 10px 20px;
  font-size: 15px;
  font-weight: 500;
  border-radius: 30px;
  background-color: #f4f1ed;
  color: #3b312c;
  border: 1px solid #a76d41;
  margin: 0 6px 12px;
  transition: all 0.3s ease;
}

.portfolio .portfolio-filters li:hover,
.portfolio .portfolio-filters li.filter-active {
  background-color: #a76d41;
  color: #fff;
  border-color: #a76d41;
}

/* Portfolio Items */
.portfolio .portfolio-item {
  background-color: #f4f1ed;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease;
}

.portfolio .portfolio-item:hover {
  transform: translateY(-5px);
}

.portfolio .portfolio-item img {
  width: 100%;
  display: block;
  transition: transform 0.4s ease;
}

.portfolio .portfolio-item:hover img {
  transform: scale(1.05);
}

/* Portfolio Info */
.portfolio .portfolio-item .portfolio-info {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 20px;
  background-color: rgba(0, 0, 0, 0.6);
  color: #fff;
  opacity: 0;
  transition: opacity 0.4s ease;
}

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

.portfolio .portfolio-info h4 {
  font-size: 17px;
  font-weight: 600;
  margin-bottom: 5px;
}

.portfolio .portfolio-info p {
  font-size: 14px;
  margin-bottom: 10px;
}

.portfolio .preview-link,
.portfolio .details-link {
  font-size: 20px;
  margin-right: 10px;
  color: #fff;
  transition: color 0.3s ease;
}

.portfolio .preview-link:hover,
.portfolio .details-link:hover {
  color: #a76d41;
}

@media (max-width: 575px) {
  .portfolio .portfolio-filters li {
    font-size: 14px;
    padding: 6px 16px;
  }
}

/*--------------------------------------------------------------
# Contact Section
--------------------------------------------------------------*/
/* Contact Section */
.contact {
  background-color: #fffaf3;
  padding: 60px 0;
}

.contact .section-title h2 {
  font-family: var(--heading-font);
  font-size: 32px;
  color: var(--default-color);
  text-align: center;
  margin-bottom: 10px;
}

.contact .section-title p {
  color: var(--text-muted);
  font-size: 15px;
  text-align: center;
  max-width: 600px;
  margin: 0 auto 30px;
}

/* Info Items */
.contact .info-wrap {
  background-color: var(--container-color);
  padding: 30px;
  border-radius: 10px;
  box-shadow: var(--shadow);
}

.contact .info-item {
  margin-bottom: 20px;
  color: var(--default-color);
}

.contact .info-item i {
  font-size: 24px;
  color: var(--accent-color);
  margin-right: 15px;
}

.contact .info-item h3 {
  font-size: 16px;
  margin-bottom: 5px;
  font-weight: 600;
  color: var(--heading-color);
}

.contact .info-item p {
  font-size: 14px;
  margin: 0;
  color: var(--text-muted);
}

/* Map */
.contact iframe {
  width: 100%;
  height: 270px;
  border: none;
  border-radius: 8px;
  margin-top: 20px;
}

/* Form Styling */
.contact .php-email-form {
  background-color: var(--container-color);
  padding: 30px;
  border-radius: 10px;
  box-shadow: var(--shadow);
}

.contact .php-email-form label {
  font-size: 14px;
  color: var(--default-color);
  font-weight: 500;
}

.contact .php-email-form input,
.contact .php-email-form textarea {
  border-radius: 5px;
  border: 1px solid var(--border-color, #ccc);
  padding: 10px;
  font-size: 14px;
  background: #fff;
  color: #333;
}

.contact .php-email-form input:focus,
.contact .php-email-form textarea:focus {
  border-color: var(--accent-color);
  outline: none;
  box-shadow: 0 0 0 2px rgba(0, 123, 255, 0.2);
}

.contact .php-email-form button {
  background-color: var(--accent-color);
  color: #fff;
  border: none;
  padding: 12px 25px;
  border-radius: 30px;
  transition: background-color 0.3s ease;
  font-family: var(--heading-font);
  font-weight: 600;
  margin-top: 15px;
}

.contact .php-email-form button:hover {
  background-color: var(--accent-color-dark, #0056b3);
}

.contact .loading,
.contact .error-message,
.contact .sent-message {
  display: none;
  font-size: 14px;
  margin-top: 10px;
}

.contact .sent-message {
  color: green;
}

.contact .error-message {
  color: red;
}

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

/*--------------------------------------------------------------
# Services Section (Lightened for better mid-page flow)
--------------------------------------------------------------*/
.services {
  background-color: #f8f3ea; /* lighter than before */
  color: #2a2320;
  padding: 80px 0;
}

.services .section-title h2 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 2rem;
  color: #2a2320;
  margin-bottom: 10px;
}

.services .section-title p {
  font-family: 'Montserrat', sans-serif;
  font-size: 1rem;
  color: #5a504a;
  max-width: 600px;
  margin: 0 auto;
}

.services .service-item {
  background-color: #ffffff;
  padding: 30px 20px;
  border-radius: 15px;
  text-align: center;
  box-shadow: 0 4px 20px rgba(42, 35, 32, 0.1);
  transition: all 0.3s ease-in-out;
  height: 100%;
}

.services .service-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 25px rgba(42, 35, 32, 0.15);
}

.services .service-item .icon {
  font-size: 2.5rem;
  color: #a9794c;
  margin-bottom: 15px;
  display: inline-block;
}

.services .service-item h4 {
  font-size: 1.2rem;
  font-weight: 600;
  color: #2a2320;
  margin-bottom: 10px;
}

.services .service-item h4 a {
  color: inherit;
  text-decoration: none;
}

.services .service-item p {
  font-size: 0.95rem;
  color: #5a504a;
}


/*--------------------------------------------------------------
# Pagination 2 Section
--------------------------------------------------------------*/
.pagination-2 {
  padding-top: 0;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
}

.pagination-2 ul {
  display: flex;
  padding: 0;
  margin: 0;
  list-style: none;
}

.pagination-2 li {
  margin: 0 5px;
  transition: 0.3s;
}

.pagination-2 li a {
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  padding: 7px 16px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.pagination-2 li a.active,
.pagination-2 li a:hover {
  background: var(--accent-color);
  color: var(--contrast-color);
}

.pagination-2 li a.active a,
.pagination-2 li a:hover a {
  color: var(--contrast-color);
}



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

/*--------------------------------------------------------------
# Error 404 Section
--------------------------------------------------------------*/
.error-404 {
  padding: 80px 0;
  margin: 0 auto;
}

.error-404 .error-icon {
  font-size: 5rem;
  color: color-mix(in srgb, var(--accent-color), transparent 15%);
}

.error-404 .error-code {
  font-size: clamp(6rem, 15vw, 12rem);
  font-weight: 800;
  color: color-mix(in srgb, var(--heading-color), transparent 10%);
  font-family: var(--heading-font);
  line-height: 1;
}

.error-404 .error-title {
  font-size: 2rem;
  color: var(--heading-color);
  font-weight: 600;
}

.error-404 .error-text {
  font-size: 1.1rem;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  max-width: 600px;
  margin: 0 auto;
}

.error-404 .search-box {
  max-width: 500px;
  margin: 0 auto;
}

.error-404 .search-box .input-group {
  border-radius: 50px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.error-404 .search-box .form-control {
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
  padding: 0.75rem 1.5rem;
  font-size: 1rem;
  color: var(--default-color);
  background-color: var(--surface-color);
  border-radius: 50px;
}

.error-404 .search-box .form-control:focus {
  box-shadow: none;
  border-color: var(--accent-color);
}

.error-404 .search-box .form-control::placeholder {
  color: color-mix(in srgb, var(--default-color), transparent 60%);
}

.error-404 .search-box .search-btn {
  background-color: var(--accent-color);
  color: var(--contrast-color);
  border: none;
  padding: 0.75rem 1.5rem;
  transition: all 0.3s ease;
}

.error-404 .search-box .search-btn:hover {
  background-color: color-mix(in srgb, var(--accent-color), transparent 15%);
}

.error-404 .error-action .btn-primary {
  padding: 0.75rem 2rem;
  font-size: 1.1rem;
  background-color: var(--accent-color);
  border: none;
  color: var(--contrast-color);
  border-radius: 50px;
  transition: all 0.3s ease;
}

.error-404 .error-action .btn-primary:hover {
  background-color: color-mix(in srgb, var(--accent-color), transparent 15%);
  transform: translateY(-2px);
}

@media (max-width: 768px) {
  .error-404 {
    padding: 60px 0;
  }

  .error-404 .error-code {
    font-size: clamp(4rem, 12vw, 8rem);
  }

  .error-404 .error-title {
    font-size: 1.5rem;
  }

  .error-404 .error-text {
    font-size: 1rem;
    padding: 0 20px;
  }

  .error-404 .search-box {
    margin: 0 20px;
  }
}

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

.widget-title {
  color: var(--heading-color);
  font-size: 20px;
  font-weight: 600;
  padding: 0 0 0 10px;
  margin: 0 0 20px 0;
  border-left: 4px solid var(--accent-color);
}

.widget-item {
  margin-bottom: 30px;
  background-color: color-mix(in srgb, var(--default-color), transparent 98%);
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
  padding: 30px;
  border-radius: 5px;
}

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

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

.search-widget form input[type=text] {
  border: 0;
  padding: 4px 10px;
  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: none;
  color: var(--default-color);
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  border: 0;
  font-size: 16px;
  padding: 0 16px;
  transition: 0.3s;
  line-height: 0;
}

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

.search-widget form button:hover {
  color: var(--accent-color);
}

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

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

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

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

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

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

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

section#portfolio {
  background-color: #f3ede3 !important;
}

/*--------------------------------------------------------------
# Unified Background Flow Helpers (Simple, Consistent)
--------------------------------------------------------------*/
.bg-lightest { background-color: #f4ecd8 !important; }
.bg-light { background-color: #fffaf3 !important; }
.bg-warm { background-color: #f7f1e4 !important; }
.bg-mid { background-color: #f3ede1 !important; }
.bg-dark { background-color: #2a2320 !important; color: #e8e3db !important; }
