/* Fonts */
:root {
  /* --default-font: "Roboto",  system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", "Liberation Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji"; */
  --heading-font: "Raleway",  sans-serif;
  --nav-font: "Poppins",  sans-serif;
}

/* Global Colors - The following color variables are used throughout the website. Updating them here will change the color scheme of the entire website */
:root { 
  --background-color: #ffffff; /* 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: #555555; /* Color for headings, subheadings and title throughout the website */
  --accent-color: #3fbbc0; /* Accent color that represents your brand on the website. It's used for buttons, links, and other elements that need to stand out */
  --surface-color: #ffffff; /* The surface color is used as a background of boxed elements within sections, such as cards, icon boxes, or other elements that require a visual separation from the global background. */
  --contrast-color: #ffffff; /* Contrast color for text, ensuring readability against backgrounds of accent, heading, or default colors. */
}

/* Nav Menu Colors - The following color variables are used specifically for the navigation menu. They are separate from the global colors to allow for more customization options */
:root {
  --nav-color: #444444;  /* The default color of the main navmenu links */
  --nav-hover-color: #3fbbc0; /* Applied to main navmenu links when they are hovered over or active */
  --nav-mobile-background-color: #ffffff; /* Used as the background color for mobile navigation menu */
  --nav-dropdown-background-color: #ffffff; /* Used as the background color for dropdown items that appear when hovering over primary navigation items */
  --nav-dropdown-color: #444444; /* Used for navigation links of the dropdown items in the navigation menu. */
  --nav-dropdown-hover-color: #3fbbc0; /* 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: #f7fcfc;
  --surface-color: #ffffff;
}

.dark-background {
  --background-color: #060606;
  --default-color: #ffffff;
  --heading-color: #ffffff;
  --surface-color: #252525;
  --contrast-color: #ffffff;
}

.accent-background {
  --background-color: #3fbbc0;
  --default-color: #ffffff;
  --heading-color: #ffffff;
  --surface-color: #65c9cd;
}

/* Smooth scroll */
:root {
  scroll-behavior: smooth;
}

/*--------------------------------------------------------------
# General Styling & Shared Classes
--------------------------------------------------------------*/
body {
  color: var(--default-color);
  background-color: var(--background-color);
  font-family: 'Garet-Book';
}

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;
}

p {
  font-family: 'Garet-Book';
}

h1,
h2,
h3,
h4,
h5,
h6 {
  color: var(--heading-color);
  font-family: var(--heading-font);
}

@font-face {
    font-family: 'Roboto';
    src: url('/assets/font/Roboto-Regular.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'Garet-Book';
    src: url('/assets/font/Garet-Book.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'LeckerliOne-Regular';
    src: url('/assets/font/LeckerliOne-Regular.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'OpenSans-Bold';
    src: url('/assets/font/OpenSans-Bold.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'PlayfairDisplay-Italic';
    src: url('/assets/font/PlayfairDisplay-Italic.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'raleway-regular';
    src: url('/assets/font/raleway-regular.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'Raleway-Bold';
    src: url('/assets/font/Raleway-Bold.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}

/*--------------------------------------------------------------
# Global 
--------------------------------------------------------------*/
p.small.text-muted {
  display: none;
}

/*--------------------------------------------------------------
# Global Header
--------------------------------------------------------------*/
section {
  background-color: #d6d0ca !important;
  position: relative;
}

.header {
  color: var(--default-color);
  background-color: transparent;
  transition: all 0.5s;
  z-index: 997;
  box-shadow: 0px 0 18px rgba(0, 0, 0, 0.1);

}

.header .topbar {
  background-color: var(--accent-color);
  color: var(--contrast-color);
  height: 40px;
  padding: 0;
  transition: all 0.5s;
}

.header .branding {
  min-height: 60px;
  padding: 10px 0;
}

.header .logo {
  line-height: 1;
}

.header .logo img {
  max-height: 45px;
  margin-right: 45px;
}

.header .logo h1 {
  font-size: 30px;
  margin: 0;
  font-weight: 700;
  color: var(--heading-color);
}

.header .cta-btn,
.header .cta-btn:focus {
  color: var(--contrast-color);
  background: var(--accent-color);
  font-size: 14px;
  padding: 8px 20px;
  margin: 0 5px 0 30px;
  border-radius: 4px;
  transition: 0.3s;
}

.header .cta-btn:hover,
.header .cta-btn:focus:hover {
  color: var(--contrast-color);
  background: color-mix(in srgb, var(--accent-color), transparent 15%);
}

/*--------------------------------------------------------------
# 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 ul li a {
    position: relative;
    overflow: hidden;
    font-family: 'OpenSans-Bold';
  }

  .navmenu ul li a::after {
    content: "";
    position: absolute;
    bottom: 15px;
    left: 0;
    width: 0%;
    height: 2px;
    background-color: #fff;
    transition: width 0.4s ease;
    margin-left: 30px;
  }

  .navmenu .dropdown ul li a::after {
    /* margin-left: 0px; */
    background-color: transparent;
  }

  .navmenu ul li a:hover::after,
  .navmenu ul li a.active::after {
    width: 70%;
  }

  .navmenu a,
  .navmenu a:focus {
    color: #fff;
    padding: 20px 30px;
    font-size: 1rem;
    /* font-family: var(--nav-font); */
    font-family: 'RobotoCustom', sans-serif;
    font-weight: 500;
    text-transform: uppercase;
    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: #fff;
  }

  .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); */
    max-height: 300px;
    overflow-y: auto;
    overflow-x: hidden;
    -ms-overflow-style: none; 
    scrollbar-width: none;  
  }
  
  .navmenu .dropdown ul::-webkit-scrollbar {
    display: none; 
  }
  .navmenu .dropdown ul li {
    min-width: 200px;
    background: #fff;
    margin-bottom: 10px;
  }

  .navmenu .dropdown ul a {
    padding: 10px 20px;
    font-size: 15px;
    text-transform: none;
    color: #996c4a;
  }

  .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: #555;
  }

  .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: #fff;
    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: #996c4a;
    color: var(--contrast-color);
  }

  .navmenu a:hover,
  .navmenu .active,
  .navmenu .active:focus {
    /* color: var(--nav-dropdown-hover-color); */
    color: #996c4a;
  }

  .navmenu .active i,
  .navmenu .active:focus i {
    background-color: #996c4a;
    color: #555;
    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:#e5e5e5;
  font-size: 14px;
  position: relative;
}

.footer .footer-top {
  padding-top: 50px;
}

.footer .footer-about .logo {
  line-height: 1;
  margin-bottom: 5px;
}

.footer .footer-about .logo img {
  max-height: 40px;
  margin-right: 6px;
}

.footer .footer-about .logo span {
  color: var(--heading-color);
  font-family: var(--heading-font);
  font-size: 26px;
  font-weight: 700;
  letter-spacing: 1px;
}

.footer .footer-about p {
  font-size: 14px;
  font-family: var(--heading-font);
}

.footer .social-links a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 50%);
  font-size: 16px;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  margin-right: 10px;
  transition: 0.3s;
}

.footer .social-links a:hover {
  color: #ff0000;
  border-color: #ff0000;
}

.footer h4 {
  font-size: 16px;
  font-weight: bold;
  position: relative;
  padding-bottom: 12px;
}

.footer .footer-links {
  margin-bottom: 30px;
}

.footer .footer-links ul {
  /* display: flex;
  flex-direction: column;
  align-items: center; */
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer .footer-links ul i {
  padding-right: 2px;
  font-size: 12px;
  line-height: 0;
}

.footer .footer-links ul li {
  padding: 10px 0;
  display: flex;
  align-items: center;
}

.footer .footer-links ul li:first-child {
  padding-top: 0;
}

.footer .footer-links ul a {
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  display: inline-block;
  line-height: 1;
}

.footer .footer-links ul a:hover {
  color: #555;
}

.footer .footer-contact p {
  margin-bottom: 5px;
}

.footer .copyright {
  padding: 25px 0;
  border-top: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}

.footer .copyright p {
  margin-bottom: 0;
}

.footer .credits {
  margin-top: 8px;
  font-size: 13px;
}

@media(min-width: 768px) {
  .footer-last-col {
    display: flex;
    justify-content: end;
  }

  /* .footer-center-col {
    display: flex;
    flex-direction: column;
    align-items: center;
  } */
}

/*--------------------------------------------------------------
# Floating Button
--------------------------------------------------------------*/
#whatsapp-button {
  position: fixed;
  bottom: 5%;
  right: 3%;
  z-index: 999;
  width: 12%;
}

#whatsapp-button img {
  width: 100%;
  height: auto;
  cursor: pointer;
}

/*--------------------------------------------------------------
# Preloader
--------------------------------------------------------------*/
/* #preloader {
  position: fixed;
  inset: 0;
  z-index: 9999;
  overflow: hidden;
  background-color: var(--background-color);
  transition: all 0.6s ease-out;
}

#preloader:before {
  content: "";
  position: fixed;
  top: calc(50% - 30px);
  left: calc(50% - 30px);
  border: 6px solid var(--accent-color);
  border-top-color: color-mix(in srgb, var(--accent-color), transparent 90%);
  border-radius: 50%;
  width: 60px;
  height: 60px;
  animation: animate-preloader 1s linear infinite;
}

@keyframes animate-preloader {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
} */

#preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #000; /* or transparent if your video has background */
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
}

/* Video styling */
#preloader video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Show only desktop video on large screens */
#preloader-desktop {
    display: block;
}
#preloader-mobile {
    display: none;
}

/* Show mobile video for screen width below 576px */
@media (max-width: 575.98px) {
    #preloader-desktop {
        display: none;
    }
    #preloader-mobile {
        display: block;
    }
}

/*--------------------------------------------------------------
# Scroll Top Button
--------------------------------------------------------------*/
.scroll-top {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  right: 15px;
  bottom: 15px;
  z-index: 99999;
  background-color: var(--accent-color);
  width: 40px;
  height: 40px;
  border-radius: 4px;
  transition: all 0.4s;
}

.scroll-top i {
  font-size: 24px;
  color: var(--contrast-color);
  line-height: 0;
}

.scroll-top:hover {
  background-color: color-mix(in srgb, var(--accent-color), transparent 20%);
  color: var(--contrast-color);
}

.scroll-top.active {
  visibility: visible;
  opacity: 1;
}

/*--------------------------------------------------------------
# Disable aos animation delay on mobile devices
--------------------------------------------------------------*/
@media screen and (max-width: 768px) {
  [data-aos-delay] {
    transition-delay: 0 !important;
  }
}

/*--------------------------------------------------------------
# Global Page Titles & Breadcrumbs
--------------------------------------------------------------*/
.page-title {
  color: var(--default-color);
  background-color: var(--background-color);
  position: relative;
}

.page-title .heading {
  padding: 80px 0;
  border-top: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}

.page-title .heading h1 {
  font-size: 38px;
  font-weight: 700;
}

.page-title nav {
  background-color: color-mix(in srgb, var(--default-color), transparent 96%);
  padding: 20px 0;
}

.page-title nav ol {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  padding: 0;
  margin: 0;
  font-size: 16px;
  font-weight: 400;
}

.page-title nav ol li+li {
  padding-left: 10px;
}

.page-title nav ol li+li::before {
  content: "/";
  display: inline-block;
  padding-right: 10px;
  color: color-mix(in srgb, var(--default-color), transparent 70%);
}

/*--------------------------------------------------------------
# Global Sections
--------------------------------------------------------------*/
section.hero,
.section.hero {
  color: var(--default-color);
  background-color: var(--background-color);
  padding: 60px 0;
  scroll-margin-top: 120px;
  overflow: clip;
}

section {
    min-height: 90vh; 
    display: flex;
    align-items: center;
    justify-content: center;
    padding-top: 60px;
    padding-bottom: 60px;
    overflow: clip;
}

body.index-page .hero.section {
  margin-top: -95px;
}

body.index-page section:not(.hero) {
  margin-top: 0;
}

body.inner-page section {
  margin-top: -95px;
}

@media (max-width: 1199px) {

  section,
  .section {
    scroll-margin-top: 100px;
  }
}

/*--------------------------------------------------------------
# Global Section Titles
--------------------------------------------------------------*/
.section-title {
  font-family: 'LeckerliOne-Regular';
  text-align: center;
  padding-top: 60px;
  padding-bottom: 60px;
  position: relative;
}

.section-title h2 {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 20px;
  padding-bottom: 20px;
  position: relative;
}

.section-title h2:after {
  content: "";
  position: absolute;
  display: block;
  width: 50px;
  height: 3px;
  background: var(--accent-color);
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
}

.section-title p {
  margin-bottom: 0;
}

/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
/* .hero {
  padding: 0;
  margin-top: -95px;
} */

.hero .carousel {
  width: 100%;
  min-height: 95vh;
  padding: 0;
  margin: 0;
  position: relative;
}

.hero-container {
  margin-left: 5%;
}

@media (max-height: 500px),
(max-width: 580px) {
  .hero .carousel {
    min-height: 100vh;
  }
}

.carousel-inner {
    height: 100vh;
}

.hero .carousel-item {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  display: flex;
  justify-content: center;
  align-items: flex-end;
}

.hero img {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}

@keyframes zoomIn {
  0% { transform: scale(1); }
  100% { transform: scale(1.1); }
}

@keyframes zoomOut {
  0% { transform: scale(1.2); }
  100% { transform: scale(1); }
}
.hero .carousel-item:nth-child(even) img {
  transform: scale(1.2);
}

.hero .carousel-item img {
  animation-duration: 8s;
  animation-fill-mode: forwards;
  animation-timing-function: ease-in-out;
}

.hero .carousel-item.active:nth-child(odd) img {
  animation-name: zoomIn;
}

.hero .carousel-item.active:nth-child(even) img {
  transform: scale(1.2);
  animation-name: zoomOut;
}

.hero .container {
  background: color-mix(in srgb, var(--surface-color), transparent 10%);
  position: relative;
  text-align: center;
  padding-top: 30px;
  padding-bottom: 30px;
  margin-bottom: 17%;
  border-top: 4px solid var(--accent-color);
  width: 40%;
  z-index: 3;
}

@media (max-width: 1200px) {
  .hero .container {
    margin-left: 50px;
    margin-right: 50px;
  }
}

.hero h2 {
  font-family: 'raleway-regular';
  margin-bottom: 0;
  font-size: 36px;
  font-weight: 700;
  text-align: left;
}

.banner-floating-container h1 {
  font-family: 'Raleway-Bold';
}

.banner-floating-container h1 span{
  font-family: 'PlayfairDisplay-Italic';
}

.hero p {
  text-align: left;
}

@media(max-width: 1200px) {
  .mobile-justify-position {
    justify-content: space-between !important;
  }
}

@media (max-width: 768px) {
  .hero h2 {
    font-size: 30px;
  }
}

.hero .btn-get-started {
  font-weight: 400;
  font-size: 14px;
  letter-spacing: 1px;
  /* display: inline-block; */
  display: flex;
  width: fit-content;
  padding: 8px 32px;
  transition: 0.3s;
  /* margin: 10px; */
  border-radius: 5px;
  color: var(--contrast-color);
  background: var(--accent-color);
}

.hero .btn-get-started:hover {
  background: color-mix(in srgb, var(--accent-color) 90%, white 15%);
}

.hero .carousel-control-prev {
  justify-content: start;
}

@media (min-width: 640px) {
  .hero .carousel-control-prev {
    padding-left: 15px;
  }
}

.hero .carousel-control-next {
  justify-content: end;
}

@media (min-width: 640px) {
  .hero .carousel-control-next {
    padding-right: 15px;
  }
}

.hero .carousel-control-next, 
.hero .carousel-control-prev {
  width: 5%;
}

.hero .carousel-control-next-icon,
.hero .carousel-control-prev-icon {
  background: none;
  font-size: 26px;
  line-height: 0;
  background: color-mix(in srgb, var(--default-color), transparent 90%);
  border-radius: 50px;
  color: var(--contrast-color);
  transition: 0.3s;
  width: 54px;
  height: 54px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero .carousel-control-prev,
.hero .carousel-control-next {
  transition: 0.3s;
  opacity: 0.5;
}

.hero .carousel-control-prev:focus,
.hero .carousel-control-next:focus {
  opacity: 0.5;
}

.hero .carousel-control-prev:hover,
.hero .carousel-control-next:hover {
  opacity: 0.9;
}

.hero .carousel-control-prev:hover .carousel-control-next-icon,
.hero .carousel-control-prev:hover .carousel-control-prev-icon,
.hero .carousel-control-next:hover .carousel-control-next-icon,
.hero .carousel-control-next:hover .carousel-control-prev-icon {
  background: var(--accent-color);
  color: var(--contrast-color);
}

.hero .carousel-indicators li {
  cursor: pointer;
  background: var(--contrast-color);
  overflow: hidden;
  border: 0;
  width: 12px;
  height: 12px;
  border-radius: 50px;
  opacity: 1;
  transition: 0.3s;
}

.hero .carousel-indicators li.active {
  opacity: 1;
  background: var(--accent-color);
}

.banner-floating-container {
  position: absolute;
  width: 50%;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 9;
  text-align: center;
  padding: 20px 35px;
  background-color: rgba(0, 0, 0, 0.5);
}

.banner-floating-container h2,
.banner-floating-container h1,
.banner-floating-container p {
  text-align: center;
  color: #fff;
}

.get-start-btn {
  display: block;
  color: #fff;
  background-color: rgb(181, 16, 16);
  border-radius: 25px;
  margin: 20px auto 0 auto;
  padding: 12px 24px;
  font-size: 18px;
}

.get-start-btn:hover,
.get-start-btn:active {
  border: 0;
  color: #fff !important;
  background-color: rgb(181, 16, 16) !important;
}

/* -----------------------------------------------
# About
------------------------------------------------ */
.about-row {
  min-height: 500px;
}

.aboutPage-row {
  min-height: 500px;
  margin-bottom: 5rem;
}

.home-about {
  margin-top: 0 !important;
}

.about-information-container {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  margin-left: 3rem;
}

.about-information-container2 {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  margin-left: 0;
}

#about .section-title {
  text-align: left;
  padding-bottom: 10px;
  padding-top: 0;
}

#about .section-title:after {
  content:"";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 20%;
  height: 3px;
  background-color: #000;
}

.about-image {
  width: 100%;
  border-radius: 80px 80px 0 0;
}

.carousel-wrapper {
    position: relative;
    min-height: 80%;
}

/* .custom-owl-nav {
    position: absolute;
    width: 100%;
    bottom: 0;
    display: flex;
    justify-content: space-around;
    z-index: 9;
}

.custom-owl-nav button {
    background: #444;
    color: #fff;
    border: none;
    padding: 5px 12px;
    border-radius: 4px;
    font-size: 18px;
}

.custom-owl-nav button:hover {
    background-color: #666;
} */
.progress-nav,
.progress-nav2 {
  display: flex;
  align-items: center;
  gap: 0;
  margin: 0 auto;
  margin-top: 20px;
}

.step-wrapper,
.step-wrapper2 {
  display: flex;
  align-items: center;
}

.step,
.step2 {
  width: 35px;
  height: 35px;
  border-radius: 50%;
  background: #5555558c;
  color: #fff;
  font-weight: bold;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  position: relative;
  z-index: 2;
}

.step.active,
.step2.active {
  background: #555555; /* Active color */
}

/* Connector line */
.step-line,
.step-line2 {
  flex: 1;
  height: 4px;
  /* background: #ccc; */
  background: #5555558c;
  margin: 0;
  position: relative;
  min-width: 30px;
  overflow: hidden;
}

.step-line span,
.step-line2 span {
  content: "";
  position: absolute;
  height: 100%;
  width: 0%;
  background: #555;
  transition: width 0.5s ease;
  left: 0;
  top: 0;
  z-index: 1;
}

/* About content display */
.progress-img,
.progress-img2 {
  position: relative;
  height: 100%;
  min-height: 300px;
}

.about-img,
.about-img2 {
  opacity: 0;
  visibility: hidden;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  transition: opacity 0.5s ease, visibility 0.5s ease;
}

.about-img.active,
.about-img2.active {
  opacity: 1;
  visibility: visible;
}

.progress-content,
.progress-content2 {
  position: relative;
  min-height: 150px;
}

.about-content,
.about-content2 {
  opacity: 0;
  visibility: hidden;
  position: absolute;
  margin-top: -70px;
  top: 0;
  left: 0;
  transition: opacity 0.5s ease, visibility 0.5s ease;
}

.about-content.active,
.about-content2.active{
  opacity: 1;
  visibility: visible;
  position: relative;
}

/* about btn */
.about-btn {
  font-family: 'OpenSans-Bold';
  width: fit-content;
  background-color: #fff;
  padding: 12px 25px;
}

.about-btn:hover,
.about-btn:active {
  background-color: #fff !important;
  color: #000 !important;
}

/* =================================
# Product
==================================*/
@media (min-width: 992px) {
    .col-lg-2-4 {
        flex: 0 0 auto;
        width: 20%;
    }
}

.product-item-frame {
    /* border: 1px solid #ddd; */
    border-radius: 10px;
    padding: 10px;
    /* background-color: #fff; */
    transition: transform 0.3s ease;
    box-shadow: 0 0 5px rgba(0,0,0,0.05);
    text-align: center;
}

.product-item-frame img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    border-radius: 80px 80px 0 0;
}

.product-title {
  font-family: 'OpenSans-Bold';
  color: #996c4a;
  font-weight: 700;
}


/* =================================
# Services
==================================*/
.service-card-container {
  padding: 10px;
  width: 100%;
  height: 100%;
  background-color: transparent;
}

.card-box {
  padding: 30px 35px;
  height: 100%;
  border: 5px solid #fff;
  border-radius: 15px;
  background-color: #eee4db;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.service-title {
  font-family: 'OpenSans-Bold';
  color: #996c4a;
  margin-bottom: 1.25rem;
}

.service-btn {
  font-family: 'OpenSans-Bold';
  /* position: absolute;
  bottom: 30px;
  left: 35px; */
  width: fit-content;
  background-color: #fff;
  padding: 12px 25px;
}

.service-btn:hover,
.service-btn:active {
  background-color: #fff !important;
  color: #000 !important;
}

@media(max-width: 1200px)
{
  .service-title {
    font-size: 1.2rem;
  }
}

/* =================================
# Clients
==================================*/
#clients {
  min-height: 60vh;
}

.client {
  background: linear-gradient(#463f3fcc, #fff), url(../img/clients/background.jpeg) fixed center center;
  background-size: cover;
  padding: 60px 0;
  overflow: hidden;
  position: relative;
  z-index: 1;
}

/* Auto Slide Animation */
@keyframes scroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(calc(-250px * 7));
  }
}

.slider {
  background: transparent;
  /* box-shadow: 0 10px 20px -5px rgba(0, 0, 0, 0.125); */
  height: 100px;
  margin: auto;
  overflow: hidden;
  position: relative;
  width: 100%;
}

.slider::before,
.slider::after {
  content: "";
  position: absolute;
  width: 200px;
  height: 100px;
  z-index: 2;
  top: 0;
  pointer-events: none;
}

/* .slider::before {
  left: 0;
  background: linear-gradient(to right, white 0%, transparent 100%);
}

.slider::after {
  right: 0;
  background: linear-gradient(to left, white 0%, transparent 100%);
} */

.slide-track {
  display: flex;
  width: calc(250px * 14); /* Total slide count */
  animation: scroll 40s linear infinite;
  background: transparent;
}

.slide {
  height: 100px;
  width: 250px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: transparent;
}

/* =================================
# Projects
==================================*/
.project-gallery {
    width: 100%;
    height: auto;
    display: flex;
    flex-wrap: wrap;
    box-sizing: border-box;
}

.project-frame {
    width: 33.333%;
    height: auto;
    position: relative;
    box-sizing: border-box;
    display: inline-block;
    /* margin: 0 0 1rem 0; */
    overflow: hidden;
    cursor: pointer;
}

.overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 2;
}

.project-content-box {
    padding: 50px;
}


.project-frame:hover .overlay {
    opacity: 1;
}

.image-container {
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    position: relative;
}

.project-img {
    width: 100%;
    height: 250px;
    /* min-height: 250px; */
    object-fit: cover;
    transition: transform 0.5s ease-in-out;
}

.project-frame:hover .project-img {
    transform: scale(1.1);
}

.content-container {
    border: 1px solid #fff;
    padding: 50px 50px 25px;
    ;
}

.project-title {
    font-family: 'OpenSans-Bold';
    font-size: 1rem;
    font-weight: bold;
    /* padding: 1rem 0 2rem; */
    margin-bottom: 0;
    color: #fff;
}

a .project-explore-btn {
  font-family: 'OpenSans-Bold';
  display: flex;
  margin: 15px auto;
  width: fit-content;
  background-color: #fff;
  padding: 12px 25px;
}

a .project-explore-btn:hover,
a .project-explore-btn:active {
  background-color: #fff !important;
  color: #000 !important;
}

#portfolio-pagination button {
    font-size: 18px;
    min-width: 36px;
}

#portfolio-pagination button:active {
  background-color: #555;
  border: 0;
}

.project-pagination-btn {
  color: #555555;
  border-color: #555;
}

.project-pagination-btn.active,
.project-pagination-btn:hover {
  color: #fff;
  background-color: #555;
  border-color: #555;
}

.project-pagination-btn.disabled, .project-pagination-btn:disabled, fieldset:disabled .project-pagination-btn {
  color: #fff;
  background-color: #555;
  border-color: #555;
}
/*--------------------------------------------------------------
# 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: 0;
  font-size: 18px;
  font-weight: 500;
  margin: 0 10px;
  line-height: 1;
  margin-bottom: 5px;
  transition: all 0.3s ease-in-out;
}

.portfolio .portfolio-filters li:hover,
.portfolio .portfolio-filters li.filter-active {
  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 5px;
  }
}

.portfolio .portfolio-content {
  position: relative;
  overflow: hidden;
}

.portfolio .portfolio-content img {
  transition: 0.3s;
}

.portfolio .portfolio-content .portfolio-info {
  opacity: 0;
  position: absolute;
  inset: 0;
  z-index: 3;
  transition: all ease-in-out 0.3s;
  background: rgba(0, 0, 0, 0.6);
  padding: 15px;
}

.portfolio .portfolio-content .portfolio-info h4 {
  font-size: 20px;
  padding: 5px 10px;
  font-weight: 400;
  color: #ffffff;
  display: inline-block;
  background-color: #ac8f20;
}

.portfolio .portfolio-content .portfolio-info p {
  position: absolute;
  bottom: 10px;
  text-align: center;
  display: inline-block;
  left: 0;
  right: 0;
  font-size: 16px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.8);
}

.portfolio .portfolio-content .portfolio-info .preview-link,
.portfolio .portfolio-content .portfolio-info .details-link {
  position: absolute;
  left: calc(50% - 40px);
  font-size: 26px;
  top: calc(50% - 14px);
  color: #fff;
  transition: 0.3s;
  line-height: 1.2;
}

.portfolio .portfolio-content .portfolio-info .preview-link:hover,
.portfolio .portfolio-content .portfolio-info .details-link:hover {
  color: var(--accent-color);
}

.portfolio .portfolio-content .portfolio-info .details-link {
  left: 50%;
  font-size: 34px;
  line-height: 0;
}

.portfolio .portfolio-content:hover .portfolio-info {
  opacity: 1;
}

.portfolio .portfolio-content:hover img {
  transform: scale(1.1);
}
/* =================================
# Contact
==================================*/
.contact-card-container {
    background-color: #e9e1da; /* Light beige */
    padding: 20px 25px;
    border-radius: 15px;
    border: 2px solid #fff;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.contact-card-box {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.contact-title {
    font-family: 'OpenSans-Bold';
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 5px;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 15px;
    font-size: 16px;
    color: #333;
    line-height: 1.4;
}

.contact-icon {
    width: 32px;
    height: 32px;
    border-radius: 8px;
    object-fit: contain;
}

/* =================================
# Why Choose Us
==================================*/
.whyus-card-container {
  padding: 10px;
  width: 100%;
  height: 100%;
  /* aspect-ratio: 1/1; */
  background-color: transparent;
}

.whyus-card-box {
  padding: 30px 35px;
  height: 100%;
  border: 5px solid #fff;
  border-radius: 15px;
  background-color: #eee4db;
  position: relative;
}

.whyus-title {
  font-family: 'OpenSans-Bold';
  color: #996c4a;
  margin-bottom: 1.25rem;
}

/* =================================
# Mission & Vision
==================================*/
.call-to-action {
  margin-top: 95px !important;
  padding: 120px 0;
  position: relative;
  clip-path: inset(0);
}

.call-to-action .pin-img {
  position: fixed;
  top: 0;
  left: 0;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}

.call-to-action:before {
  content: "";
  background: color-mix(in srgb, var(--background-color), transparent 50%);
  position: absolute;
  inset: 0;
  z-index: 2;
}

.call-to-action .container {
  position: relative;
  z-index: 3;
}

.img-fluid {
    max-width: 100%;
    height: auto;
}

.why_box {
    padding: 20px;
    margin-top: 30px;
}

.why_box h4 {
    color: #fff;
    font-size: 20px;
    font-weight: 600;
    border-bottom: 1px solid #996c4a;
    padding-bottom: 10px;
}

.why_box p {
    color: #cccccc;
    font-size: 14px;
    line-height: 1.2;
    font-weight: 400;
    margin-bottom: 0;
}

/* General Media Query */

@media(max-width: 992px)
{
  #whatsapp-button {
    width: 20%;
  }

  .progress-img,
  .progress-img2 {
    position: relative;
    height: 100%;
    min-height: 600px;
  }

  .about-information-container {
    margin-left: 0;
  }

  .about-content,
  .about-content2 {
    margin-top:0;
  }
}

@media(max-width: 767.9px) 
{
  .footer-about {
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .footer .footer-about .logo span {
    text-align: center;
  }

  .footer .footer-links,
  #footer > div.container.footer-top > div > div.col-12.col-lg-4.col-md-3.footer-links.footer-last-col > div > p.font-semibold.text-lg.mb-2 {
    text-align: center;
  }

  .footer .footer-links ul {
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .footer-links.footer-last-col {
    text-align: left;
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .progress-img,
  .progress-img2 {
    position: relative;
    height: 100%;
    min-height: 450px;
  }

  .project-frame {
    width: 50%;
  }

  .contact-card-container {
    margin-top: 3rem;
  }

  .google-map {
    margin-left: -10%;
    width: 120%;
    min-height: 300px;
  }
}

@media(max-width: 630px)
{
  .google-map {
    margin-left: unset;
    width: 100%;
  }
}

@media(max-width: 576px)
{
  .hero h2 {
    font-size: 24px
  }

  .banner-floating-container h1 {
    font-size: 24px;
  }

  .banner-floating-container h1 span {
    font-size: 22px
  }

  .banner-floating-container p {
    font-size: 16px;
  }

  #whatsapp-button {
    width: 30%;
  }

  .banner-floating-container {
    width: 70%;
  }

  .project-frame {
    width: 100%;
  }
}

@media(max-width: 520px) 
{
  .get-start-btn {
    padding: 12px 18px;
  }

  .progress-img,
  .progress-img2 {
    position: relative;
    height: 100%;
    min-height: 400px;
  }
}

@media(max-width: 460px) 
{
  .progress-img,
  .progress-img2 {
    position: relative;
    height: 100%;
    min-height: 360px;
  }
}

@media(max-width: 400px) 
{
  .hero h2 {
    font-size: 17px
  }

  .banner-floating-container h1 {
    font-size: 17px;
  }

  .banner-floating-container h1 span {
    font-size: 16px
  }

  .banner-floating-container p {
    font-size: 14px;
  }

  .progress-img,
  .progress-img2 {
    position: relative;
    height: 100%;
    min-height: 310px;
  }
}

@media(max-width: 360px) 
{
  .progress-img,
  .progress-img2 {
    position: relative;
    height: 100%;
    min-height: 280px;
  }
}