@font-face {
  font-family: BaiJamjuree-Regular;
  src: url(../fonts/Bai_Jamjuree/BaiJamjuree-Regular.ttf);
}

@font-face {
  font-family: Cormorant;
  src: url(../fonts/Bai_Jamjuree/Cormorant.ttf);
}

@font-face {
  font-family: Lato-Regular;
  src: url(../fonts/Lato/Lato-Regular.ttf);
}

@font-face {
  font-family: Lato-Bold;
  src: url(../fonts/Lato/Lato-Bold.ttf);
}

@font-face {
  font-family: Cormorant;
  src: url(../fonts/Cormorant/BebasNeue-Regular.ttf);
}

@font-face {
  font-family: Cormorant-Regular;
  src: url(../fonts/Cormorant/static/Cormorant-Regular.ttf);
}

@font-face {
  font-family: Cormorant-Semibold;
  src: url(../fonts/Cormorant/static/Cormorant-SemiBold.ttf);
}

:root {
  --primary-color: #a68a64;
  --secondary-color: #555555;
  --text-color: #404040;
  --text-color-hover: #b99178;
  --accent-color: #8e9174;
  --white-color: #ffffff;
  --black-color: #000000;
  --divider-color: #ffffff33;
  --dark-divider-color: #d4f0f533;
  --error-color: rgb(230, 87, 87);
  --default-font: "plus-jakarta-sans-regular", sans-serif;
  --accent-font: "playfair-display-semi-bold", serif;
}

body {
  font-family: Cormorant-Semibold;
  background: #f5f5f3;
  height: 100%;
  margin: 0;

  position: relative;
}

.page {
  overflow: hidden;
}

img {
  max-width: 100%;
}

a {
  text-decoration: none;
}

a:hover {
  text-decoration: none;
  outline: 0;
}

a:focus {
  text-decoration: none;
  outline: 0;
}

/* HEADER */
/* .header {
  position: fixed;
  width: 100%;
  top: 0;
  padding: 25px 30px;
  z-index: 1000;
  background: #fff;
} */

.header {
  position: relative;
  width: 100%;
  top: 0;
  padding: 35px 0px;
  background: transparent;
  z-index: 1000;
  transition: all 0.3s ease;
}

.header.fixed {
  position: fixed;
  background: transparent;
  top: 0;
  left: 0;
}

.logo img {
  max-width: 230px;
}

/* .icons i {
  font-size: 30px;
  cursor: pointer;
  color: #3d3b3b;
} */

/* Default (inner pages - black) */
.icons i {
  color: #000;
  font-size: 30px;
  cursor: pointer;
  transition: 0.3s;
}

/* Home page - white */
.home .icons i {
  color: #fff;
}

/* MENU */
.menu-overlay {
  position: fixed;
  top: 0;
  right: -100%;
  width: 30%;
  height: 100vh;
  background: var(--primary-color);
  transition: 0.5s ease;
  z-index: 2000;
  padding: 100px 50px;
}

.menu-overlay.active {
  right: 0;
}

.menu-overlay ul {
  list-style: none;
  padding: 0;
}

.menu-overlay li {
  padding: 20px 0;
}

.menu-overlay .link {
  font-size: 28px;
  margin-bottom: 20px;
  opacity: 0;
  transform: translateX(50px);
  transition: 0.4s;
  color: var(--white-color);
}

.menu-overlay.active .link {
  opacity: 1;
  transform: translateX(0);

}

.menu-overlay .link {
  position: relative;
}

.menu-overlay .link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -5px;
  width: 0;
  height: 2px;
  background: var(--white-color);
  transition: 0.3s;
}

.menu-overlay .link:hover::after {
  width: 100%;
}

.menu-overlay.active.link:nth-child(1) {
  transition-delay: 0.1s;
}

.menu-overlay.active.link:nth-child(2) {
  transition-delay: 0.2s;
}

.menu-overlay.active .link:nth-child(3) {
  transition-delay: 0.3s;
}

.menu-overlay.active .link:nth-child(4) {
  transition-delay: 0.4s;
}

.menu-overlay.active .link:nth-child(5) {
  transition-delay: 0.5s;
}


/* GRID ICON */
/* .grid-icon {
  display: grid;
  grid-template-columns: repeat(3, 5px);
  gap: 4px;
}
.grid-icon span {
  width: 5px;
  height: 5px;
  background: #000;
  display: block;
} */
#hero {
  position: relative;
  height: 100vh;
}

/* HERO slider */
.hero-slider .item img {
  width: 100%;
  height: 100vh;
  object-fit: cover;
}

.custom-dots {
  position: absolute;
  bottom: 40px;
  left: 60px;
  display: flex;
  gap: 20px;
  z-index: 99;
}

.custom-dots span {
  font-size: 50px;
  color: #aaa;
  cursor: pointer;
  position: relative;
  transition: 0.3s ease;
}

.custom-dots span.active {
  color: #fff;
  transform: scale(1.2);
}

.custom-dots span::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -5px;
  width: 0%;
  height: 2px;
  background: #fff;
  transition: 0.3s;
}

.custom-dots span.active::after {
  width: 100%;
}

/* PROJECT GRID */
.projects {
  transform: translateY(30px);
  transition: all 0.6s ease;
}

/* .projects h1{
    font-size: 40px;
    font-family: var(--Cormorant-Semibold);
    color: var(--primary-color);
    text-align: right;
    text-decoration: underline;
    margin-bottom: 40px;
} */

.project-card p {
  font-family: Cormorant-Semibold;
  color: var(--primary-color);
  font-size: 24px;
  text-align: center;
  padding: 15px 0;
  text-decoration: none;
  margin-bottom: 0;

}

/* portfolio page */
.portfolio .portfolio-projects .caption {
  font-family: Cormorant-Semibold;
  color: var(--primary-color);
  font-size: 24px;
  text-decoration: underline;
  padding: 5px 0;
}

.inner-projects h1 {
  font-family: Cormorant-Semibold;
  color: var(--primary-color);
  font-size: 24px;
  text-decoration: underline;
  padding: 5px 0;
}

/* About us page */
.about-section .about-title {
  font-family: Cormorant-Semibold;
  color: var(--primary-color);
  font-size: 50px;
  text-decoration: underline;

}

.about-section .about-text {
  font-family: Lato-Regular;
  color: var(--text-color);
  font-size: 18px;
}

/* Contact Us Page */
.contact-section .contact-title {
  font-family: Cormorant-Semibold;
  color: var(--primary-color);
  font-size: 30px;
  text-decoration: underline;

}

.contact-form h3 {
  font-family: Cormorant-Semibold;
  color: var(--primary-color);
  font-size: 30px;
  text-decoration: underline;
}

.contact-form p {
  font-family: Lato-Regular;
  color: var(--text-color);
  font-size: 18px;
}

.contact-form .form-control {
  padding: 10px 12px;
  width: 100%;
  background-color: transparent;
  border: 1px solid var(--primary-color);
  outline: none;
  font-size: 16px;
  display: block;
  font-weight: 400;
  font-family: Lato-Regular;
}

.contact-form .form-control:focus {
  box-shadow: none;
}

.contact-form .btn-custom {
  padding: 10px 25px;
  background-color: var(--primary-color);
  color: var(--white-color);
  font-size: 16px;
  font-family: Lato-Regular;
}

.contact-info h3 {
  font-family: Cormorant-Semibold;
  color: var(--text-color);
  font-size: 20px;
  text-decoration: underline;

}

.contact-info p {
  font-family: Lato-Regular;
  color: var(--text-color);
  font-size: 18px;
}

.contact-info .call {
  font-family: Lato-Regular;
  color: var(--text-color);
  font-size: 18px;
}




.thankyou-card {
  padding: 50px 40px;
  border-radius: 16px;
  text-align: center;

  width: 100%;
}

.check-icon {
  font-size: 60px;
  color: #28a745;
  margin-bottom: 20px;
}

.thankyou-card h1 {
  font-size: 50px;
  font-weight: 600;
  margin-bottom: 15px;
  font-family: Cormorant-Semibold;
}

.thankyou-card p {
  color: var(--text-color);
  font-size: 24px;
  margin-bottom: 25px;
  font-family: Lato-Regular;
}

.thankyou-card .btn-home {
  font-family: Lato-Regular;
  padding: 10px 15px;
  font-size: 16px;
  background: var(--primary-color);
  border: none;
}

@media (max-width: 767px) {
  .menu-overlay {
    width: 100%
  }

  .logo img {
    max-width: 150px;
  }

  .icons i {
    font-size: 22px;
  }

  /* about us page */
  .about-section .about-title {
    font-size: 30px;
  }

  .project-card p {
    font-size: 18px;
  }

  .portfolio .portfolio-projects .caption {
    font-size: 18px;
  }

  .contact-form h3 {
    margin-top: 30px;
    font-size: 24px;
  }

  .custom-dots span {
    font-size: 24px;
  }

  .custom-dots {
    bottom: 65px;
    left: 20px;
    gap: 20px;
  }

}

.lg-prev,
.lg-next {
  display: block !important;
  opacity: 1 !important;
  visibility: visible !important;
}


.project-section {
  padding: 40px 0;
}

.project-section .project-title {
  font-family: Cormorant-Semibold;
  color: var(--primary-color);
  font-size: 50px;
  text-decoration: underline;
}

.project-section .project-card {
  background: #fff;
  /* border-radius: 12px; */
  padding: 15px 15px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
  transition: 0.3s;
  height: 100%;
  border-top: 2px solid var(--primary-color);
}

.project-section .project-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.project-name {
  font-family: Lato-Bold;
  font-size: 18px;
}

.project-location {
  font-size: 16px;
  color: var(--text-color);
  font-family: Lato-Regular;

}

.badge-status {
  font-size: 12px;
  margin-top: 10px;
}

.badge {
  background: var(--primary-color);
  color: #fff;
  border-radius: 0;
  font-family: Lato-Regular;
  font-size: 12px;
  font-weight: normal;
}

.iti{
    width: 100% !important;
}
}