@font-face {
  font-family: 'Viaoda Libre';
  src: url('/assets/vendor/font/ViaodaLibre-Regular.woff2') format('woff2'),
    url('/assets/vendor/font/ViaodaLibre-Regular.woff') format('woff');
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

: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: "Viaoda Libre", serif;
  --nav-font: "Viaoda Libre", sans-serif;
}

:root {
  --background-color: #F5F2ED;
  /* 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: #121212;
  /* Color for headings, subheadings and title throughout the website */
  --accent-color: #362114DE;
  /* 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: #222222;
  /* The default color of the main navmenu links */
  --nav-hover-color: #504943;
  /* Applied to main navmenu links when they are hovered over or active */
  --nav-mobile-background-color: #E1DED9;
  /* 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: #222222;
  /* Used for navigation links of the dropdown items in the navigation menu. */
  --nav-dropdown-hover-color: #504943;
  /* 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: #F5F2ED;
  --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;
}

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

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

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

.header .branding {
  background-color: var(--background-color);
  min-height: 60px;
  padding: 10px 0;
}

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

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

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

.scrolled .header {
  box-shadow: 0px 0 18px rgba(0, 0, 0, 0.1);
}

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

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

  .navmenu li {
    position: relative;
  }

  .navmenu a,
  .navmenu a:focus {
    color: var(--nav-color);
    padding: 18px 15px;
    font-size: 15px;
    font-family: var(--nav-font);
    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;
    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 - Mobile */
@media (max-width: 1199px) {
  .mobile-nav-toggle {
    color: var(--nav-color);
    font-size: 28px;
    line-height: 0;
    margin-right: 10px;
    cursor: pointer;
    transition: color 0.3s;
  }

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

  .navmenu ul {
    display: none;
    list-style: none;
    position: absolute;
    inset: 60px 20px 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 {
  color: var(--default-color);
  background-color: var(--background-color);
  font-size: 14px;
  position: relative;
}

.footer .footer-newsletter {
  background-color: #504943;
  padding: 50px 0;
}

.footer .footer-newsletter h4 {
  color: #FFF;
  text-align: center;
  font-family: "Viaoda Libre";
  font-size: 100px;
  font-style: normal;
  font-weight: 400;
}

.footer .footer-newsletter p {
  text-align: center;
  color: #FFF;
  text-align: center;
  font-family: Roboto;
  font-size: 20px;
  font-style: normal;
  font-weight: 400;
  letter-spacing: 0.3px;
}

.footer .footer-newsletter .newsletter-form {
  margin-top: 30px;
  margin-bottom: 15px;
  padding: 6px 8px;
  position: relative;
  background-color: var(--surface-color);
  border: 1px solid color-mix(in srgb, var(--accent-color), transparent 80%);
  box-shadow: 0px 2px 25px rgba(0, 0, 0, 0.1);
  display: flex;
  transition: 0.3s;
  border-radius: 4px;
}

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

.footer .footer-newsletter .newsletter-form input[type=email] {
  border: 0;
  padding: 4px;
  width: 100%;
  background-color: var(--surface-color);
  color: var(--default-color);
}

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

.footer .footer-newsletter .newsletter-form input[type=submit] {
  border: 0;
  font-size: 16px;
  padding: 0 20px;
  margin: -7px -8px -7px 0;
  background: var(--accent-color);
  color: var(--contrast-color);
  transition: 0.3s;
  border-radius: 0 4px 4px 0;
}

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

.footer .footer-top {
  padding-top: 50px;
}

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

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

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

.footer .footer-links {
  margin-bottom: 30px;
}

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

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

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

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

.footer .footer-links ul a {
  display: inline-block;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  line-height: 1;
}

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

.footer .footer-about a {
  color: var(--heading-color);
  font-size: 24px;
  font-weight: 600;
  font-family: var(--heading-font);
}

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

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

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

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

/*--------------------------------------------------------------
# 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;
  display: flex;
  align-items: center;
  justify-content: center;
}

.preloader-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2rem;
}

.preloader-logo {
  width: 100px;
  height: auto;
  animation: pulse 2s infinite;
}

.loading-bar {
  width: 200px;
  height: 4px;
  background-color: rgba(54, 33, 20, 0.2);
  border-radius: 2px;
  overflow: hidden;
}

.loading-progress {
  width: 40%;
  height: 100%;
  background-color: var(--accent-color);
  border-radius: 2px;
  animation: loading 1.5s infinite ease-in-out;
}

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

@keyframes loading {
  0% {
    transform: translateX(-100%);
  }
  50% {
    transform: translateX(150%);
  }
  100% {
    transform: translateX(-100%);
  }
}

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

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

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

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

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

/*--------------------------------------------------------------
# Global Page Titles & Breadcrumbs
--------------------------------------------------------------*/
.page-title {
  --background-color: color-mix(in srgb, var(--default-color), transparent 96%);
  color: var(--default-color);
  background-color: var(--background-color);
  padding: 25px 0;
  position: relative;
}

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

.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: 78px;
  overflow: clip;
}

@media (max-width: 1199px) {

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

@media (max-width: 640px) {

  section,
  .section {
    padding-left: 20px;
    padding-right: 20px;
  }
}

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

.section-title h2 {
  font-size: 13px;
  letter-spacing: 1px;
  font-weight: 700;
  padding: 8px 20px;
  margin: 0;
  background: color-mix(in srgb, var(--accent-color), transparent 90%);
  color: var(--accent-color);
  display: inline-block;
  text-transform: uppercase;
  border-radius: 50px;
  font-family: var(--default-font);
}

.section-title p {
  color: var(--heading-color);
  margin: 0 0 0 0;
  font-size: 48px;
  font-weight: 400;
  /* line-height: 25px; */
  text-align: center;
  font-family: var(--heading-font);
  text-transform: uppercase;
}

.section-title span {
  font-family: Roboto;
  font-size: 18px;
  font-weight: 300;
  line-height: 28px;
  letter-spacing: 0.30000001192092896px;
  text-align: center;
}

.section-title p .description-title {
  color: var(--accent-color);
}

/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
.hero {
  width: 100%;
  min-height: 100vh;
  position: relative;
  padding: 60px 0;
  display: flex;
  align-items: center;
  background: url("../img/hero-bg.png");
  background-size: cover;
  background-position: bottom right;
}

.hero:before {
  content: "";
  background: linear-gradient(90.43deg, rgba(0, 0, 0, 0.24) 0.34%, rgba(153, 138, 106, 0.2) 123.53%);
  position: absolute;
  bottom: 0;
  top: 0;
  left: 0;
  right: 0;
}

.hero .container {
  position: relative;
}

.hero h1 {
  margin: 0;
  font-family: "Viaoda Libre", serif;
  font-size: 80px;
  font-weight: 400;
  font-style: normal;
  line-height: 120px;
}

.hero h1 span {
  color: var(--accent-color);
}

.hero p {
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  margin: 5px 0 30px 0;
  font-size: 40px;
  line-height: 60px;
  font-weight: 400;
  letter-spacing: 1.5px;
}

.hero .btn-get-started {
  min-width: 157px;
  text-align: center;
  color: var(--contrast-color);
  background: var(--accent-color);
  display: inline-block;
  padding: 16px;
  border-radius: 4px;
  transition: 0.5s;
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.1);
  font-family: Roboto;
  font-size: 20px;
  font-style: normal;
  font-weight: 400;
  line-height: 100%;
  letter-spacing: 0.5px;
}

.hero .btn-get-started.secondary {
  color: black;
  border: 1px solid rgba(0, 0, 0, 0.50);
  background: rgba(197, 191, 175, 0.55);
  color: #000;


}

.hero .btn-get-started:hover {
  color: var(--contrast-color);
  background: color-mix(in srgb, var(--accent-color), transparent 15%);
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.1);
}

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

@media (max-width: 640px) {
  .hero {
    background-position: bottom right;
    min-height: 70vh;
  }

  .hero h1 {
    font-size: 36px;
    line-height: 46px;
  }

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

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

  .section-title p {
    font-size: 32px;
    line-height: 32px;
    text-align: center !important;
    padding-bottom: 10px;
  }

  .section-title span {
    font-size: 14px;
    line-height: 20px;
    width: 100% !important;
    text-align: center !important;

  }
}

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

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

}

/*--------------------------------------------------------------
# Featured Services Section
--------------------------------------------------------------*/
.featured-services .service-item {
  background-color: var(--surface-color);
  box-shadow: 0px 0 25px 0 rgba(0, 0, 0, 0.1);
  padding: 50px 30px;
  transition: all 0.3s ease-in-out;
  height: 100%;
  position: relative;
  z-index: 1;
}

.featured-services .service-item:before {
  content: "";
  position: absolute;
  background: var(--accent-color);
  inset: 100% 0 0 0;
  transition: all 0.3s;
  z-index: -1;
}

.featured-services .service-item .icon {
  margin-bottom: 10px;
}

.featured-services .service-item .icon i {
  color: var(--accent-color);
  font-size: 36px;
  transition: ease-in-out 0.3s;
}

.featured-services .service-item h4 {
  font-weight: 700;
  margin-bottom: 15px;
  font-size: 20px;
}

.featured-services .service-item h4 a {
  color: var(--heading-color);
  transition: ease-in-out 0.3s;
}

.featured-services .service-item p {
  line-height: 24px;
  font-size: 14px;
  margin-bottom: 0;
  transition: ease-in-out 0.3s;
}

.featured-services .service-item:hover h4 a,
.featured-services .service-item:hover .icon i,
.featured-services .service-item:hover p {
  color: var(--contrast-color);
}

.featured-services .service-item:hover:before {
  background: var(--accent-color);
  inset: 0;
  border-radius: 0px;
}

.ourwork .swiper-slide img {
  /* border-radius: 8px; */
}

.ourwork {
  padding-bottom: 0px;
}

.about {
  background: #D4CCC5;
}

.clients-before,
.clients-after {
  position: relative;
}

.clients-before div,
.clients-after div {
  width: 98px;
  height: 42px;
  padding: 16px;
  border-radius: 4px;
  border-top: 0.8px solid #BBBFAB;
  border-right: 0.8px solid #BBBFAB;
  border-bottom: 0.5px solid #BBBFAB;
  border-left: 0.8px solid #BBBFAB;
  background: rgba(255, 255, 255, 0.35);
  line-height: 10px;
  text-align: center;
  position: absolute;
  bottom: 0;
  right: 0;
}

/*--------------------------------------------------------------
# Services Section
--------------------------------------------------------------*/
.services .service-item {
  background-color: var(--surface-color);
  text-align: center;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 85%);
  padding: 80px 20px;
  transition: border ease-in-out 0.3s;
  height: 100%;
}

.services .service-item .icon {
  margin: 0 auto;
  width: 64px;
  height: 64px;
  background: var(--accent-color);
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  transition: 0.3s;
}

.services .service-item .icon i {
  color: var(--contrast-color);
  font-size: 28px;
  transition: ease-in-out 0.3s;
}

.services .service-item h3 {
  font-weight: 700;
  margin: 10px 0 15px 0;
  font-size: 22px;
  transition: 0.3s;
}

.services .service-item p {
  line-height: 24px;
  font-size: 14px;
  margin-bottom: 0;
}

.services .service-item:hover {
  border-color: var(--accent-color);
}

.services .service-item:hover h3 {
  color: var(--accent-color);
}

/*--------------------------------------------------------------
# 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: 16px;
  margin: 0;
  line-height: 1;
  margin-bottom: 5px;
  border-radius: 4px;
  transition: all 0.3s ease-in-out;
  background: #E3DED5;
  color: #000;
  font-family: Roboto;
  font-size: 20px;
  font-style: normal;
  font-weight: 400;
  letter-spacing: 0.5px;

}

.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 2px;
    min-width: 114px;
  }
}

.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(--background-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-top: 5; */
}

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

/* Make portfolio info always visible on mobile */
@media (max-width: 768px) {
  .portfolio .portfolio-item .portfolio-info {
    top: auto;
    opacity: 1;
    position: absolute;
    left: 12px;
    right: 12px;
    bottom: 0px;
    background: rgba(0, 0, 0, 0.4);
    padding: 15px;
    display: flex;
    flex-direction: column; 
    justify-content: center;
    height: auto;
    text-align: center;
  }

  .portfolio .portfolio-item .portfolio-info h4 {
    font-size: 16px;
    font-weight: 600;
    color: #fff;
    margin-bottom: 10px;
  }

  .portfolio .portfolio-item .portfolio-info p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 13px;
    line-height: 135%;
  }
}

.room-selector {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 2rem;
}

.room-btn {
  padding: 14px 35px;
  background-color: #E3DED5;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  transition: all 0.3s ease;
  font-size: 18px;
  color: #000;
}

.room-btn.active {
  background-color: var(--accent-color);
  color: #fff;
}

.hp-portfolio-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 15px;
}

.hp-slide-content {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  padding: 1rem;
}

.hp-image-comparison {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.hp-image-before,
.hp-image-after {
  position: relative;
  width: 100%;
}

.hp-image-before img,
.hp-image-after img {
  width: 100%;
  height: auto;
  border-radius: 8px;
}

.hp-label {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background-color: rgba(0, 0, 0, 0.7);
  color: white;
  padding: 4px 12px;
  border-radius: 4px;
  font-size: 12px;
}

.hp-slide-info {
  text-align: center;
  padding: 1rem;
}

.hp-slide-title {
  font-size: 24px;
  margin-bottom: 1rem;
  color: #333;
}

.hp-slide-description {
  font-size: 16px;
  color: #666;
  line-height: 1.6;
}

.swiper-button-next,
.swiper-button-prev {
  color: #000;
}

@media (min-width: 768px) {
  .hp-image-comparison {
    flex-direction: row;
  }

  .hp-image-before,
  .hp-image-after {
    width: 50%;
  }
}

@media (max-width: 767px) {
  .room-selector {
    gap: 0.5rem;
  }

  .room-btn {
    padding: 6px 12px;
    font-size: 12px;
  }

  .hp-slide-title {
    font-size: 20px;
  }

  .hp-slide-description {
    font-size: 14px;
  }

  .ourwork{
    padding-bottom: 60px;
  }
}

/*--------------------------------------------------------------
# Contact Section
--------------------------------------------------------------*/
.contact .info-wrap {
  background-color: var(--surface-color);
  box-shadow: 0px 0 25px 0 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: #E1DED9;
  border-radius: 8px;
  height: 100%;
  padding: 48px;
}

@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 input[type=number],
.contact .php-email-form input[type=tel],
.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 input[type=number]:focus,
.contact .php-email-form input[type=tel]: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 input[type=number]::placeholder,
.contact .php-email-form input[type=tel]::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%);
}

/*--------------------------------------------------------------
# Service Details Section
--------------------------------------------------------------*/
.service-details .services-list {
  background-color: var(--surface-color);
  padding: 10px 30px;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
  margin-bottom: 20px;
}

.service-details .services-list a {
  display: block;
  line-height: 1;
  padding: 8px 0 8px 15px;
  border-left: 3px solid color-mix(in srgb, var(--default-color), transparent 70%);
  margin: 20px 0;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  transition: 0.3s;
}

.service-details .services-list a.active {
  color: var(--heading-color);
  font-weight: 700;
  border-color: var(--accent-color);
}

.service-details .services-list a:hover {
  border-color: var(--accent-color);
}

.service-details .services-img {
  margin-bottom: 20px;
}

.service-details h3 {
  font-size: 26px;
  font-weight: 700;
}

.service-details h4 {
  font-size: 20px;
  font-weight: 700;
}

.service-details p {
  font-size: 15px;
}

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

.service-details ul li {
  padding: 5px 0;
  display: flex;
  align-items: center;
}

.service-details ul i {
  font-size: 20px;
  margin-right: 8px;
  color: var(--accent-color);
}

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

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

.bg-brown {
  background: #362114DE;
  border: 1px solid #362114DE;
}

.bg-brown:hover,
.bg-brown:active {
  background: #362114DE !important;
  border: 1px solid #362114DE !important;
}

.fs-64 {
  font-size: 64px;
}

.fs-40 {
  font-size: 40px;
  line-height: 60px;
}

.fm-v {
  font-family: var(--heading-font);
}

.fm-roboto {
  font-family: var(--default-font);
}

.fs-18 {
  font-size: 18px;

}

.about-bg {
  width: 100%;
  min-height: 100vh;
  position: relative;
  padding: 60px 0;
  display: flex;
  align-items: center;
  background: url("../img/Mett\ the\ team\ video.png");
  background-size: cover;
  background-position: bottom right;
}

.fs-32 {
  font-size: 32px !important;
}

.fs-14 {
  font-size: 14px !important;
}

.hero-top {
  top: 20px;
  left: 30px;
}

.hero-top p {
  color: white;
  font-family: Roboto;
  font-size: 20px;
  font-weight: 300;
  line-height: 135%;
  text-align: left;
  margin-top: 0.5rem;
  margin-left: 1.5rem;
}

.hero-top p:first-child {
  font-family: Viaoda Libre;
  font-size: 56px;
  line-height: 120%;
  letter-spacing: -0.02em;
  margin-top: 3rem;
  margin-left: 1.5rem;
}

.fs-28 {
  font-family: Viaoda Libre;
  font-size: 28px;
  font-weight: 400;
  line-height: 42px;
  text-align: left;
}

.cust-icons-next .swiper-button-next::after,
.cust-icons-next .swiper-button-prev::after {
  font-size: 16px;
  color: #5F5852B2;

}

.cust-icons-next .swiper-button-prev {
  right: 40px;
  left: auto;
  border: 1px solid #5F5852B2;
  border-radius: 50%;
  height: 33px;
  width: 36px;
  top: 26px;
}

.cust-icons-next .swiper-button-next {
  border: 1px solid #5F5852B2;
  border-radius: 50%;
  height: 33px;
  width: 36px;
  top: 26px;
}

.isotope-item .swiper-button-next {
  width: 35px;
  background: #f5f2ed;
  height: calc(100% + 22px);
  top: 0;
  right: -3px;
}

.isotope-item .swiper-button-next::after,
.isotope-item .swiper-button-prev::after {
  font-size: 24px;
  color: #5F5852B2;

}

.isotope-item .swiper-button-prev {
  width: 35px;
  background: #f5f2ed;
  height: calc(100% + 22px);
  top: 0;
  left: -3px;
}

.init-swiper {
  padding: 0 1rem;
}

.swiper-slide {
  height: auto;
  display: flex;
  align-items: center;
  justify-content: center;
}

.swiper-slide img {
  width: 100%;
  height: auto;
  object-fit: cover;
}

.explore-btn {
  border-radius: 3.19px;
  border: 0.798px solid rgba(0, 0, 0, 0.50);
  opacity: 0.8;
  background: rgba(197, 191, 175, 0.55);
  color: black;
  align-self: start; /* Ensures button stays aligned to the left */
}

.our-projects-container {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
}

.project-header {
  min-height: 400px; 
  padding-bottom: 10px;
  flex-direction: column;
}

.project-header h2 {
  margin: 0;
  font-size: 32px;
  line-height: 1.2;
}

.explore-btn {
  width: fit-content;
  border: 1px solid #000;
  background: rgba(197, 191, 175, 0.55);
  transition: all 0.3s ease;
}

.explore-btn:hover {
  background-color: var(--accent-color);
  color: #fff;
}

.explore-btn:hover {
  background-color: var(--accent-color);
  color: #fff;
}

/* Swiper container */
.init-swiper {
  height: 100%;
}

.swiper-wrapper {
  height: 100%;
}

.swiper-slide {
  height: 100%;
}

/* Project card adjustments */
.project-card {
  height: 100%;
  display: flex;
  flex-direction: column;
}

.project-card img {
  width: 100%;
  height: 350px;
  object-fit: cover;
}

.project-info {
  margin-top: 1rem;
}

.project-info h3 {
  font-size: 1.25rem;
  margin-bottom: 0.25rem;
}

.project-info p {
  text-transform: capitalize;
  color: #666;
  margin: 0;
}

/* Make sure parent elements have full height */
.row {
  min-height: 300px; /* Should match container-fluid min-height */
}

.col-md-9 {
  height: 100%;
}

/* Optional: Add some responsive adjustments */
@media (max-width: 768px) {

  .hero-top {
    top: 20px;
    left: 20px;
  }

  .project-card img {
      height: 350px;
  }

  .explore-btn {
    margin-top: 1.1rem;
  }

  .project-header {
    min-height: 0;
    flex-direction: row;
  }

  .hero-top p:first-child {
    font-size: 30px;
    line-height: 120%;
    font-weight: 400;
    margin-top: 0;
    margin-left: 0;
  }

  .hero-top p {
    font-size: 15px;
    line-height: 135%;
    padding-right: 40px;
    font-weight: 300;
    margin-top: 0;
    margin-left: 0;
  }
}




/* Header Specific Styles */
#header {
  background: #E1DED9;
  padding: 1rem 0;
  width: 100%;
  z-index: 1000;
  position: fixed;
  top: 0;
  height: 65px; /* Set a fixed height for the header */
}

#header .header-wrapper {
  padding: 0 2rem;
}

/* Logo Styles */
#header .logo-wrapper {
  padding-left: 3rem;
}

#header .logo img {
  max-height: 40px;
  width: auto;
}

/* Desktop Navigation */
#navmenu ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  gap: 2.5rem;
}

#navmenu a {
  color: #000;
  text-decoration: none;
  font-size: 1.2rem;
  font-weight: 400;
  transition: color 0.3s ease;
  font-family: "Viaoda Libre";
  font-style: normal;
  line-height: 150%;
}

#navmenu a:hover {
  color: #666;
}

/* Mobile Toggle Button */
#mobile-toggle {
  background: none;
  border: none;
  padding: 0;
  width: 30px;
  height: 25px;
  position: relative;
  display: none;
}

#mobile-toggle span {
  display: block;
  width: 100%;
  height: 2px;
  background: #000;
  position: absolute;
  transition: all 0.3s ease;
}

#mobile-toggle span:nth-child(1) { top: 0; }
#mobile-toggle span:nth-child(2) { top: 50%; transform: translateY(-50%); }
#mobile-toggle span:nth-child(3) { bottom: 0; }

/* Mobile Navigation */
#mobile-nav {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background: #F5F5F5;
  padding: 5rem 2rem;
  transform: translateX(100%);
  transition: transform 0.3s ease;
  z-index: 999;
}

#mobile-nav.active {
  padding-top: 40px;
  transform: translateX(0);
}

#mobile-nav ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

#mobile-nav li {
  margin-bottom: 1.5rem;
}

#mobile-nav a {
  font-family: "Viaoda Libre";
  color: #000;
  text-decoration: none;
  font-size: 1.5rem;
  font-weight: 400;
}

/* Responsive Styles */
@media (max-width: 991px) {
  #mobile-toggle {
      display: block;
  }

  #header .logo-wrapper {
      padding-left: 0;
  }

  #header .header-wrapper {
      padding: 0 1rem;
  }

  #navmenu {
      display: none;
  }
}

/* Active Mobile Toggle State */
#mobile-toggle.active span:nth-child(1) {
  transform: rotate(45deg);
  top: 50%;
}

#mobile-toggle.active span:nth-child(2) {
  opacity: 0;
}

#mobile-toggle.active span:nth-child(3) {
  transform: rotate(-45deg);
  bottom: 50%;
}


/* Fixed Header Styles */


/* Add this to your CSS */
.main-content-wrapper {
  padding-top: 80px; /* Should match header height */
}

/* Rest of your header styles remain the same */
#header .header-wrapper {
  padding: 0 2rem;
  height: 100%;
}

/* Ensure proper z-index stacking */
#mobile-nav {
  position: fixed;
  top: 80px; /* Should match header height */
  height: calc(100vh - 80px); /* Subtract header height from viewport height */
  z-index: 999;
}

@media (max-width: 991px) {
  #header {
      height: 70px; /* Slightly smaller height for mobile */
  }

  .main-content-wrapper {
      padding-top: 80px; /* Match mobile header height */
  }

  #mobile-nav {
      top: 70px; /* Match mobile header height */
      height: calc(100vh - 70px);
  }
}




#custom-footer {
  background-color: #E1DED9;
  color: #FFF;
}

.footer-container {
  margin: 0 auto;
}

/* Header Section */
.footer-header {
  text-align: center;
  padding-bottom: 80px;
  padding-top: 80px;
  background: #504943;
  text-align: center;
}

.footer-header h1 {
  font-family: 'Viaoda Libre', serif;
  font-size: 100px;
  font-weight: 400;
  line-height: 100%;
  margin-bottom: 40px;
  color: #FFF;
}

.footer-description {
  max-width: 800px;
  margin: 0 auto;
  font-size: 20px;
  font-family: Roboto;
  font-weight: 400;
  line-height: 140%;
  letter-spacing: 0.3px;
}

/* Main Footer Content */
.footer-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  /* gap: 40px; */
  /* margin-bottom: 60px; */
  color: black;
  background-color: #E1DED9;
  align-items: center;
  justify-items: center;
}

/* Left Section */
.footer-left {
  max-width: 350px;
}

.footer-logo {
  height: 100px;
  margin-bottom: 24px;
}

.footer-email {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 20px;
}

/* Center Section */
.footer-center {
  display: flex;
  padding: 1.5rem;
  flex-direction: column;
}

.schedule-call-btn {
  display: flex;
  width: 156px;
  height: 52px;
  padding: 16px;
  justify-content: center;
  align-items: center;
  background: rgba(80, 73, 67, 0.90);; /* Solid background color */
  border-radius: 4px;
  color: #FFF;
  text-decoration: none;
  transition: background 0.3s ease-in-out;
}

.schedule-call-btn:hover {
  color: white;
  background: rgba(80, 73, 67, 0.70);; /* Slightly lighter shade */
}



.footer-nav {
  /* color: black; */
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-bottom: 2rem;
  margin-top: 2rem;
}

.footer-nav a {
  color: rgba(80, 73, 67, 0.95);
  text-decoration: none;
  transition: opacity 0.3s;
}

.footer-nav a:hover {
  opacity: 0.8;
}

/* Right Section */
.footer-right h3 {
  margin-bottom: 20px;
  font-size: 18px;
}

.social-links {
  display: flex;
  gap: 20px;
}

.social-links img {
  /* width: 24px;
  height: 24px; */
  transition: opacity 0.3s;
}

.social-links a:hover img {
  opacity: 0.8;
}

/* Copyright Section */
.footer-copyright {
  text-align: center;
}

.copyright-line {
  height: 1px;
  background-color: rgb(85 78 78 / 10%);
  margin-bottom: 1rem;
}

.footer-copyright p {
  color: rgba(0, 0, 0, 0.63);
  padding-bottom: 18px;
  margin-bottom: 0;
  font-size: 14px;
}

/* Mobile Responsive */
@media (max-width: 768px) {
  .footer-header {
    margin-bottom: 60px;
  }

  .footer-header h1 {
    font-size: 48px;
    line-height: 150%;
    margin-bottom: 24px;
  }

  .footer-description {
    padding: 0 30px;
    font-size: 14px;
    line-height: 140%;
    letter-spacing: 0.3px;
  }

  .footer-content {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .footer-left {
    margin: 0 auto;
  }

  .footer-center {
    align-items: center;
  }

  .schedule-call-btn {
    width: 307px;
  }

  .footer-right {
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .social-links {
    justify-content: center;
  }

  .footer-email {
    justify-content: center;
  }
}



.explorework {
  --default-color: #ffffff;
  --background-color: #000000;
  --heading-color: #ffffff;
  padding: 80px 0;
  position: relative;
}

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

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

.explorework .section-title h2 {
  color: #ffffff;
}

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

.explorework .event-item h3 {
  font-weight: 700;
  font-size: 30px;
}

.explorework .event-item p:last-child {
  margin-bottom: 0;
}

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

.explorework .swiper-pagination {
  margin-top: 30px;
  position: relative;
}

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

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


.dots-container {
  /* max-width: 1440px;
  margin: 0 auto;
  padding: 0 120px; */
}

.dots-hero-title {
  /* font-family: 'Vioda Libre', serif; */
  font-size: 64px;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: -1.28px;
  text-align: center;
  color: #000;
  line-height: 90px;
  margin: 20px auto 35px;
  max-width: 1090px;
}

.dots-hero-image {
  width: 100%;
  height: auto;
  margin-bottom: 80px;
}

.dots-story-section {
  display: flex;
  justify-content: center;
  /* margin-bottom: 120px; */
}

.dots-story-content {
  gap: 80px;
  display: flex;
  max-width: 1200px;
}

.dots-story-title {
  /* font-family: 'Vioda Libre', serif; */
  font-size: 40px;
  font-weight: 400;
  text-transform: uppercase;
  color: #504943;
  margin-bottom: 40px;
  min-width: 250px;
}

.dots-story-text {
  font-family: 'Roboto', sans-serif;
  font-size: 22px;
  line-height: 150%;
  color: rgba(80, 73, 67, 0.88);
  margin-bottom: 24px;
}

.dots-founder-section {
  display: flex;
  gap: 120px;
  max-width: 1200px;
  margin: 0 auto;
  align-items: flex-start;
  padding-top: 0;
}

.dots-founder-content {
  flex: 1;
  max-width: 600px;
}

.dots-founder-name {
  /* font-family: 'Vioda Libre', serif; */
  font-size: 40px;
  font-weight: 400;
  text-transform: uppercase;
  color: #504943;
  margin-bottom: 12px;
}

.dots-founder-title {
  font-family: 'Roboto', sans-serif;
  font-size: 18px;
  font-weight: 400;
  text-transform: uppercase;
  color: #504943;
  margin-bottom: 24px;
  letter-spacing: 0.05em;
}

.dots-founder-bio {
  font-family: 'Roboto', sans-serif;
  font-size: 22px;
  line-height: 150%;
  color: rgba(80, 73, 67, 0.88);
}

.dots-founder-image {
  flex: 1;
  max-width: 480px;
}

.dots-founder-image img {
  width: 100%;
  height: auto;
  object-fit: cover;
}

@media (max-width: 1200px) {
  .dots-container {
      padding: 0 60px;
  }
  
  .dots-founder-section {
      gap: 60px;
  }
}

@media (max-width: 768px) {
  .dots-container {
      padding: 0 20px;
  }

  .dots-hero-title {
      font-size: 32px;
      line-height: 1.5;
      margin: 20px auto 25px;
  }

  .dots-hero-image {
      margin-bottom: 60px;
  }

  .dots-story-section {
      /* margin-bottom: 60px; */
  }

  .dots-story-title {
      font-size: 32px;
      margin-bottom: 16px;
      text-align: center;
  }

  .dots-story-content {
    flex-direction: column;
    gap: 0px;
  }

  .dots-story-text {
      font-size: 16px;
      text-align: center;
  }

  .dots-founder-section {
      flex-direction: column;
      gap: 12px;
  }

  .dots-founder-content {
      order: 2;
      text-align: center;
  }

  .dots-founder-name {
      font-size: 32px;
  }

  .dots-founder-title {
      font-size: 16px;
  }

  .dots-founder-bio {
      font-size: 16px;
  }

  .dots-founder-image {
      order: 1;
      max-width: 100%;
  }
}


.dots-contact {
  padding: 80px 120px;
  background-color: #F5F2ED;
}

.dots-contact-title {
  color: #171A1F;
  font-family: "Viaoda Libre";
  font-size: 64px;
  font-style: normal;
  font-weight: 400;
  line-height: 68px; /* 106.25% */
  text-transform: uppercase;
  text-align: left;
  padding-bottom: 60px;
}

.dots-contact-container {
  display: flex;
  gap: 120px;
  max-width: 1200px;
}

.dots-contact-section {
  flex: 1;
}

.dots-section-title {
  font-family: "Viaoda Libre";
  font-size: 32px;
  font-weight: 400;
  font-style: normal;
  line-height: 28px;
  text-transform: uppercase;
  color: #171A1F;
  margin-bottom: 20px;
  padding-top: 20px;
}

.dots-contact-title-hidden {
  padding-bottom: 128px;
}

.dots-section-text {
  font-family: "Roboto";
  font-size: 16px;
  line-height: 140%;
  font-weight: 400;
  font-style: normal;
  color: rgba(80, 73, 67, 0.97);
  margin-bottom: 32px;
}

.dots-contact-info {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.dots-contact-item {
  display: flex;
  flex-direction: column;
}

.dots-contact-label {
  color: #000;
  font-family: "Lao Sans Pro";
  font-style: normal;
  font-weight: 400;
  line-height: 150%;
  font-size: 18px;
  margin-bottom: 0;
}

.dots-contact-value {
  color: #504943;
  font-family: "Lao Sans Pro";
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 150%;
  text-decoration-line: underline;
  text-decoration-style: solid;
  text-decoration-skip-ink: none;
  text-decoration-thickness: auto;
  text-underline-offset: auto;
  text-underline-position: from-font;
}

.dots-contact-address {
  color: #504943;
  font-family: "Lao Sans Pro";
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 150%; /* 24px */
}

.dots-contact-value:hover {
  color: #504943;
}

@media (max-width: 1024px) {
  .dots-contact {
      padding: 60px 60px;
  }

  .dots-contact-container {
      gap: 60px;
  }
}

@media (max-width: 768px) {
  .dots-contact {
      padding: 40px 20px;
  }

  .dots-contact-container {
      flex-direction: column;
      gap: 15px;
  }

  .dots-contact-title {
      font-size: 32px;
      text-align: center;
      padding-bottom: 20px;
  }

  .dots-contact-title-hidden {
    padding-bottom: 20px;
  }

  .dots-section-title {
      font-size: 24px;
      text-align: center;
  }

  .dots-section-text {
      font-size: 16px;
      text-align: center;
  }

  .dots-contact-label {
      font-size: 16px;
      text-align: center;
  }

  .dots-contact-value {
      font-size: 16px;
      text-align: center;
  }

  .dots-contact-address {
    font-size: 16px;
    text-align: center;
  }

  .dots-contact-item {
      align-items: center;
  }
}






.dots-services {
  padding: 80px 120px;
  background-color: #F5F2ED;
}

.dots-services-container {
  display: flex;
  gap: 120px;
  max-width: 1440px;
  margin: 0 auto;
}

.dots-services-content {
  flex: 1;
  max-width: 537px;
}

.dots-services-title {
  font-size: 64px;
  font-weight: 400;
  text-transform: uppercase;
  color: #000;
  margin-bottom: 24px;
  line-height: 68px;
}

.dots-services-intro {
  font-family: "Roboto";
  font-size: 18px;
  font-weight: 300;
  line-height: 28px;
  letter-spacing: 0.3px;
  color: #000;
  margin-bottom: 48px;
}

.dots-services-list {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.dots-service-item {
  border-bottom: 1px solid rgba(80, 73, 67, 0.2);
  padding-bottom: 16px;
}

.dots-service-heading {
  font-size: 18px;
  font-weight: 400;
  text-transform: uppercase;
  color: #000;
  line-height: 28px;
}

.dots-service-description {
  font-family: "Roboto";
  font-size: 16px;
  font-weight: 300;
  line-height: 22px;
  letter-spacing: 0.3px;
  color: #000;
}

.dots-services-image {
  max-width: 624px;
}

.dots-image {
  border-radius: 5px;
  width: 100%;
  height: auto;
  object-fit: cover;
}

@media (max-width: 1200px) {
  .dots-services {
      padding: 60px;
  }

  .dots-services-container {
      gap: 60px;
  }
}

@media (max-width: 768px) {
  .dots-services {
      padding: 40px 20px;
  }

  .dots-services-container {
      flex-direction: column;
  }

  .dots-services-content {
      max-width: 100%;
      text-align: center;
  }

  .dots-services-title {
      font-size: 32px;
      line-height: 48px;
  }

  .dots-services-intro {
      font-size: 14px;
      line-height: 135%;
      text-align: center;
  }

  .dots-service-item {
      padding-bottom: 0;
      text-align: left;
  }

  .dots-services-image {
      max-width: 100%;
  }

  .dots-service-heading {
      font-size: 18px;
  }

  .dots-service-description {
      font-size: 14px;
      line-height: 135%;
  }
}








.project-cost {
  padding: 60px 0;
  background-color: #F5F2ED;
}

.project-cost__container {
  max-width: 1148px;
  margin: 0 auto;
  padding: 0 20px;
}

.project-cost__header {
  text-align: center;
  margin-bottom: 20px;
}

.project-cost__title {
  font-size: 64px;
  font-weight: 400;
  line-height: 68px;
  text-transform: uppercase;
  color: #171A1F;
  margin-bottom: 16px;
}

.project-cost__subtitle {
  font-family: 'Lato', sans-serif;
  font-size: 18px;
  line-height: 28px;
  color: #6F7787;
  max-width: 561px;
  margin: 0 auto;
}

.project-cost__form-wrapper {
  background: #F5F2ED;
  border-radius: 8px;
  padding: 40px;
  max-width: 840px;
  margin: 0 auto;
}

.project-cost__form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.project-cost__form-group {
  margin-bottom: 24px;
}

.project-cost__label {
  display: block;
  font-family: 'Roboto', sans-serif;
  font-size: 14px;
  font-weight: 400;
  line-height: 140%;
  color: #212121;
  margin-bottom: 8px;
}

.project-cost__input,
.project-cost__select {
  width: 100%;
  height: 44px;
  padding: 12px 15px;
  background: #FFFFFF;
  border: 1px solid #E0E0E0;
  border-radius: 4px;
  font-size: 14px;
  line-height: 140%;
  color: #212121;
}

.project-cost__select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg width='10' height='6' viewBox='0 0 10 6' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1L5 5L9 1' stroke='%23212121' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 15px center;
}

.project-cost__submit {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 15px;
  min-width: 120px;
  background: #504943;
  border-radius: 4px;
  border: none;
  font-family: 'Roboto', sans-serif;
  font-size: 14px;
  font-weight: 400;
  color: #FFFFFF;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.project-cost__submit:hover {
  background: #3d3731;
}

@media (max-width: 768px) {
  .project-cost {
      padding: 40px 0;
  }

  .project-cost__title {
      font-size: 32px;
      line-height: 150%;
  }

  .project-cost__subtitle {
      font-size: 14px;
      line-height: 135%;
  }

  .project-cost__form-wrapper {
      padding: 24px;
  }

  .project-cost__form-row {
      grid-template-columns: 1fr;
      gap: 0;
  }
}

.swiper {
  width: 100%;
  overflow: hidden;
}

@media (max-width: 640px) {
  .swiper-slide {
      width: 100% !important;
  }
}
.center-top {
  transform: translate(25%, 50%);
  top: 0;
  border: 0;
  left: 0;
  right: 0;
  width: 75%;
}


.custom-slider-wrapper {
  width: 100%;
  overflow: hidden;
  background: #000;
}

.slide-container {
  position: relative;
  width: 100%;
  height: 100vh;
}

.slide-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.slide-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.8;
}

.content-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.content-inner {
  position: relative;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 2rem;
  display: flex;
  gap: 2rem;
  background: rgba(0, 0, 0, 0.4);
  border-radius: 4px;
}

.image-frame {
  flex: 1;
  position: relative;
}

.image-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 4px;
}

.text-content {
  flex: 1;
  color: #fff;
  display: flex;
  flex-direction: column;
  justify-content: center;
  /* padding: 2rem; */
  padding-left: 2rem;
  padding-right: 2rem;
  padding-top: 2rem;
}

.text-content h2 {
  color: #F5F2ED;
  font-style: normal;
  font-weight: 400;
  line-height: 120%;
  text-transform: uppercase;
  font-size: 4rem;
  margin-bottom: 1rem;
  font-weight: 400;
}

.text-content p {
  color: rgba(255, 255, 255, 0.85);
  font-family: Roboto;
  font-size: 20px;
  font-style: normal;
  font-weight: 400;
  line-height: 135%;
}

.navigation-buttons {
  display: flex;
  gap: 1rem;
  margin-top: auto;
  margin-top: 65px;
  justify-content: end;
}

.nav-btn {
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 50%;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
}

.nav-btn:hover {
  background: rgba(255, 255, 255, 0.1);
}

/* Mobile styles for navigation buttons */
@media (max-width: 768px) {
  /* .nav-btn {
    padding: 12px;
    transform: scale(1.5);
  } */
  
  .nav-btn svg {
    width: 32px; /* Larger SVG on mobile */
    height: 32px;
  }
}

/* Even larger for smaller phones */
@media (max-width: 375px) {
  /* .nav-btn {
    padding: 14px;
    transform: scale(1.75);
  } */
  
  .nav-btn svg {
    width: 36px;
    height: 36px;
  }
}

/* Hide default Swiper navigation */
.swiper-button-next, .swiper-button-prev {
  width: 48px;
  height: 48px;
  margin-inline: -10px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

/* Mobile Styles */
@media (max-width: 768px) {
  .content-inner {
    flex-direction: column;
    max-width: 90%;
    padding: 1rem;
  }

  .image-frame {
    height: 275px;
  }

  .text-content {
    padding: 1rem;
  }

  .text-content h2 {
    font-size: 2rem;
    text-align: center;
  }

  .text-content p {
    font-size: 1rem;
    text-align: center;
  }

  .navigation-buttons {
    justify-content: center;
  }
}

.hp-portfolio-container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.hp-portfolio-wrapper {
  position: relative;
  overflow: hidden;
}

.hp-slider {
  position: relative;
}

.hp-slide-content {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.hp-image-comparison {
  display: flex;
  width: 100%;
  border-radius: 4px;
  overflow: hidden;
}

.hp-image-before,
.hp-image-after {
  position: relative;
  width: 50%;
}

.hp-image-before img,
.hp-image-after img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hp-label {
  position: absolute;
  top: auto;
  bottom: 10px;
  /* left: 16px; */
  background: rgba(255, 255, 255, 0.35);
  padding: 8px 16px;
  border-radius: 4px;
  font-family: "Roboto", sans-serif;
  font-size: 14px;
  color: #000;
  border: 0.8px solid #BBBFAB;
}

.hp-slide-info {
  background: #FFFFFF;
  padding: 24px;
  border-radius: 4px;
  box-shadow: 0px 0px 2px rgba(23, 26, 31, 0.1);
}

.hp-slide-title {
  font-family: "Viaoda Libre", serif;
  font-size: 24px;
  font-weight: 400;
  text-transform: uppercase;
  color: #000;
  margin-bottom: 16px;
  text-align: center;
}

.hp-slide-description {
  font-family: "Roboto", sans-serif;
  font-size: 14px;
  font-weight: 300;
  line-height: 135%;
  letter-spacing: 0.3px;
  color: #000;
  text-align: center;
}

.hp-slider-nav {
  position: absolute;
  top: 50%;
  width: 100%;
  transform: translateY(-50%);
  z-index: 10;
  pointer-events: none;
}

.hp-slider-prev,
.hp-slider-next {
  position: absolute;
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.8);
  border: none;
  border-radius: 50%;
  cursor: pointer;
  pointer-events: auto;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hp-slider-prev {
  left: 16px;
}

.hp-slider-next {
  right: 16px;
}

.hp-slider-arrow-left,
.hp-slider-arrow-right {
  border: solid #000;
  border-width: 0 2px 2px 0;
  display: inline-block;
  padding: 4px;
}

.hp-slider-arrow-left {
  transform: rotate(135deg);
}

.hp-slider-arrow-right {
  transform: rotate(-45deg);
}

/* Mobile Responsive */
@media (max-width: 768px) {
  .hp-image-comparison {
    flex-direction: column;
  }

  .hp-image-before,
  .hp-image-after {
    width: 100%;
  }

  .hp-slide-title {
    font-size: 22px;
  }

  .hp-slide-description {
    font-size: 14px;
  }

  .hp-slider-nav {
    display: none;
  }
}

.home-page-next-btn::after,
.home-page-prev-btn::after {
    font-size: 30px;
    color: #444;
}

.home-page-next-btn {
    right: 20px;
}

.home-page-prev-btn {
    left: 20px;
}

.home-page-next-btn, .home-page-prev-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-185%);
  width: 40px;
  height: 40px;
}


/* Responsive adjustments for mobile */
@media (max-width: 768px) {
    .home-page-next-btn,
    .home-page-prev-btn {
        width: 32px;
        height: 60px;
    }

    .home-page-next-btn::after,
    .home-page-prev-btn::after {
        font-size: 16px;
    }

    .home-page-next-btn {
        right: 0px;
    }

    .home-page-prev-btn {
        left: 0px;
    }
}

@media (max-width: 376px) {
  .home-page-next-btn,
  .home-page-prev-btn {
      width: 32px;
      height: 68px;
  }
}



/* Projects Preview Section Styles */
.projects-preview {
  padding-top: 0px;
  max-width: 1300px;
  margin: 1px auto;
  /* padding: 40px 20px; */
  font-family: 'Roboto', sans-serif;
}

/* Projects Content Container */
.projects-content {
  padding: 15px;
  text-align: center;
  color: #504943;
  border: 0px solid #BDC1CA;
  background: #E1DED9;
}

/* Main Heading - Desktop */
.projects-heading {
  font-family: 'Viaoda Libre', serif;
  font-size: 64.384px;
  font-weight: 400;
  font-style: normal;
  line-height: 85.846px;
  color: #3F3C39;
  margin-bottom: 10px;
  width: 100%;
  max-width: 1068px;
  margin-left: auto;
  margin-right: auto;
}

/* Tagline - Desktop */
.projects-tagline {
  font-family: 'Roboto', sans-serif;
  font-size: 26.827px;
  font-weight: 400;
  line-height: 30.046px;
  text-transform: uppercase;
  margin-bottom: 15px;
  max-width: 705px;
  margin-left: auto;
  margin-right: auto;
}

/* Description - Desktop */
.projects-description {
  font-family: 'Roboto', sans-serif;
  font-size: 19.315px;
  font-weight: 400;
  line-height: 30.046px;
  max-width: 993px;
  margin-left: auto;
  margin-right: auto;
}

/* Responsive Design for Mobile */
@media screen and (max-width: 768px) {
  .preview-images {
    flex-direction: column;
  }
  
  .preview-image {
    width: 100%;
  }
  
  .projects-heading {
    font-size: 36px;
    line-height: 48px;
  }
  
  .projects-tagline {
    font-size: 18px;
    line-height: 24px;
  }
  
  .projects-description {
    font-size: 16px;
    line-height: 24px;
  }
}

/* Smaller Mobile Devices */
@media screen and (max-width: 480px) {
  .projects-heading {
    font-size: 28px;
    line-height: 36px;
  }
  
  .projects-tagline {
    font-size: 16px;
    line-height: 20px;
  }
  
  .projects-description {
    font-size: 14px;
    line-height: 22px;
  }
}

.explore-project-home-page {
  padding-bottom: 20px;
}