@font-face {
  font-family: 'Termina';
  src: url('https://fonts.cdnfonts.com/css/termina-test');
  font-weight: normal;
  font-style: normal;
}

@font-face {
  font-family: 'Montserrat';
  src: url('https://fonts.googleapis.com/css?family=Montserrat');
  font-weight: normal;
  font-style: normal;
}

:root {
  /* Base Primary */
  --bs-primary: #DDB442;
  --bs-primary-rgb: 208, 71, 19;

  /* Links */
  --bs-link-color: #DDB442;
  --bs-link-hover-color: #bf9626;
  --bs-link-active-color: #bf9626;

  /* Text and backgrounds */
  --bs-primary-text-emphasis: #bf9626;
  --bs-primary-bg-subtle: #f3d1c6;
  --bs-primary-border-subtle: #e8a38d;
}

.btn {
  border-radius: 28px;
}

/* Buttons */
.btn-primary {
  --bs-btn-color: #fff;
  --bs-btn-bg: #DDB442;
  --bs-btn-border-color: #DDB442;
  --bs-btn-hover-color: #fff;
  --bs-btn-hover-bg: #bf9626;
  --bs-btn-hover-border-color: #bf9626;
  --bs-btn-focus-shadow-rgb: 208, 71, 19;
  --bs-btn-active-color: #fff;
  --bs-btn-active-bg: #bf9626;
  --bs-btn-active-border-color: #bf9626;
  --bs-btn-disabled-bg: #DDB442;
  --bs-btn-disabled-border-color: #DDB442;
  box-shadow: 0 4px 15px rgba(221, 180, 66, 0.3);
  transition: all 0.3s ease;
}

.btn-primary:hover {
  box-shadow: 0 6px 20px rgba(191, 150, 38, 0.4);
  transform: translateY(-2px);
}

.btn-transparent {
  background: transparent;
  color: #000;
  border: solid 1px #000;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}

.btn-transparent:hover {
  background: rgba(0, 0, 0, 0.05);
  color: #000;
  border: solid 1px #000;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  transform: translateY(-1px);
}

.banner-btn {
  padding-top: 14px;
  padding-right: 17px;
  padding-bottom: 14px;
  padding-left: 17px;
  min-width: 284px;
}

/* Alerts */
.alert-primary {
  --bs-alert-color: #bf9626;
  --bs-alert-bg: #f2d4c9;
  --bs-alert-border-color: #e3a48d;
}

/* Badges */
.badge.bg-primary {
  background-color: #DDB442 !important;
}

/* Progress bars */
.progress-bar.bg-primary {
  background-color: #DDB442 !important;
}

.theme-text {
  color: #DDB442 !important;
}

.dark-color {
  color: #000;
}

/* Pagination */
.page-link {
  color: #DDB442;
}

.page-link:hover {
  color: #bf9626;
}

.page-item.active .page-link {
  background-color: #DDB442;
  border-color: #DDB442;
}

body {
  color: #000;
  font-family: 'Termina', sans-serif;
   background-color: #DDB4423B;
}

.bg-white {
  background-color: #fff !important;
}

.section-padding {
  padding-top: 120px;
  padding-bottom: 130px;
}
.blog-section-padding-top {
  padding-top: 120px;
  padding-bottom: 0;
}
.blog-section-padding-bottom {
  padding-top: 0;
  padding-bottom: 130px;
}

/* Sticky Header */
.navbar {
  transition: all 0.3s ease;
  padding: 18px 0;

}

.service-body {
  width: 60%;
  min-height: 225px;
}

.nav-btn {
      border-radius: 28.5px;
    padding-right: 17px;
    padding-left: 17px;
    background: #DDB4423B;
    color: #000;
    width: 290px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: 0 2px 10px rgba(221, 180, 66, 0.2);
    transition: all 0.3s ease;
    border: solid 1px #fff;
}

.nav-btn:hover {
  background-color: #DDB442;
  border-color: #DDB442;
  box-shadow: 0 4px 15px rgba(221, 180, 66, 0.4);
  transform: translateY(-1px);
}

.navbar.scrolled {
  background: #fff;
  padding: 10px 0;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

.navbar-brand img {
  width: 150px;
}

.nav-link,
.navbar-nav .nav-link:focus {
  color: #000;
  font-size: 12px;
}

.navbar-nav .nav-link.active,
.navbar-nav .nav-link:hover {
  color: var(--bs-primary);
}

.hero-carousel img {
  width: 100%;
}

.static-banner img {
  height: 90vh;
  object-fit: cover;
}

/* Owl Nav Buttons */
.owl-nav {
  position: absolute;
  top: 50%;
  width: 100%;
  display: flex;
  justify-content: space-between;
  transform: translateY(-50%);
  pointer-events: none;
}

.owl-nav button {
  background: rgba(255, 255, 255, 0.2) !important;
  color: #fff !important;
  border-radius: 50% !important;
  width: 50px;
  height: 50px;
  display: flex !important;
  align-items: center;
  justify-content: center;
  border: none;
  font-size: 24px !important;
  font-weight: bold;
  pointer-events: all;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
  transition: all 0.3s ease;
}

.owl-nav button:hover {
  background: rgba(255, 255, 255, 0.9) !important;
  color: #000 !important;
  transform: scale(1.05);
}

/* Position owl dots vertically */
.hero-carousel .owl-dots {
  position: absolute;
  top: 50%;
  right: 30px;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  gap: 18px;
  z-index: 3;
}

.hero-carousel .owl-dots .owl-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #ffffff;
  transition: all 0.3s ease;
  border: 2px solid transparent;
}

.hero-carousel .owl-dots .owl-dot.active {
  background: #DDB442;
  border: 2px solid #fff;
  transform: scale(1.7);
}

.hero-carousel .owl-dots .owl-dot span {
  display: none;
}

.section-heading {
  font-weight: 700;
  font-size: 65px;
  line-height: 75px;
  text-align: center;
  vertical-align: middle;
}

.carousel-controls {
  z-index: 3;
  position: relative;
  display: flex;
  gap: 30%;
  right: 30.5%;
  top: 294px;
}

.btn-icon {
  height: 24px;
}

.about-title {
  font-weight: 700;
  font-size: 21px;
  line-height: 35px;
  vertical-align: middle;
}

.banner-action {
  margin-top: 60px;
}

.underline {
  text-decoration: underline;
}

.services-carousel {
  margin-bottom: 70px !important;
}

.carousel-controls .btn {
  border-radius: 54px;
  background-color: #DDB442;
  padding: 25px;
}

.hero-text {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  padding: 0 10%;
  color: #fff;
  z-index: 2;
  background: #ffffff00;
  background: -webkit-linear-gradient(85deg, rgb(255 255 255 / 0%) 0%, rgba(255, 255, 255, 0) 100%);
  background: -moz-linear-gradient(85deg, rgb(255 255 255 / 0%) 0%, rgba(255, 255, 255, 0) 100%);
  background: linear-gradient(85deg, rgb(255 255 255 / 0%) 0%, rgba(255, 255, 255, 0) 100%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#000000", endColorstr="#D9D9D9", GradientType=1);
}

.hero-wrapper {
  background-image: url(../images/banner-image.png);
  height: 100vh;
  background-size: cover;
  position: relative;
}

.hero-wrapper::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.hero-wrapper .carousel-controls {
  position: absolute;
  bottom: 78px;
}

.category-line {
  color: #000;
  font-weight: 500;
  font-size: 17px;
  line-height: 32px;
  vertical-align: middle;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);

}

.banner-text {
  font-weight: 700;
  font-size: 65px;
  line-height: 75px;
  vertical-align: middle;
  color: #000;
  text-shadow: 0 4px 8px rgba(0, 0, 0, 0.7);
}

.blog-banner-text {
font-weight: 700;
  font-size: 65px;
  line-height: 75px;
  vertical-align: middle;
  color: #000;
  text-shadow: 0 4px 8px rgba(82, 80, 80, 0.7);
}
/* About section image overlap */
.about-images {
  position: relative;
}

.richtext-wrapper {
  padding-right: 32px;
}


.sub-title {
  font-size: 4rem;
  line-height: 64px;
}

.rich-text {
  color: #000;
  line-height: 32px;
  font-weight: 300;
}

/* Service boxes */

.service-container {
  text-align: center;
  background: #fff;
  padding: 50px;
  border-radius: 30px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}

.service-container:hover {
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.15);
  transform: translateY(-5px);
}

.service-icon {
  background: #DDB4423B;
  width: 70px;
  padding: 10px;
  border-radius: 10px;
}

#services .owl-carousel .owl-item img {
  width: 50px;
}

.service-container h5 {
  font-weight: 700;
  font-size: 35px;
  line-height: 45px;
  text-align: center;
}

.service-container p {
  font-weight: 400;
  font-size: 16px;
  line-height: 27px;
  text-align: center;
}

.thumb-img img {
  width: 64px !important;
  border: 2px solid #DDB442;
}

.customer {
  font-weight: 300;
}

.reviews-area .mobile-mb {
  text-align: center;
  width: fit-content;
  border-radius: 50%;
}

.reviews-area .mobile-mb:nth-child(2) {
  margin-top: -8px;
}

.reviews-area .mobile-mb:nth-child(3) {
  position: absolute;
  top: 20%;
  margin-left: 200px;
}

.reviews-area .counter-text-wrap {
  width: 256px;
  height: 256px;
  padding: 80px 16px;
}

.primary-bg {
  background: #DDB442;
}

.white-bg {
  background: white;
}

.black-100-bg {
  background-color: #131412;
}

.count-text {
  font-size: 40px;
  font-weight: 300;
}

.counter-title {
  font-size: 20px;
  font-weight: 300;
}

/* Subscribe Section */
.form-control::placeholder {
  color: #9a9a9a;
  opacity: 1;
}

.form-control:focus {
  border-color: #DDB442;
  box-shadow: none;
}

.subscribe-section .form-control {
  border-width: 1px;
  border-radius: 25px;
      padding: 8px 20px;
}

.subscribe-section .btn-primary {
  position: absolute;
  right: 0;
  margin: 7px;
  padding: 16px 38px;
}

.block-2 {
  padding-top: 107px;
  margin-left: -38px;
}

.product-wrapper {
  margin-top: 96px;
  margin-right: -16px;
  margin-left: -16px;
}

.product-wrapper .service-box {
  margin-bottom: 32px;
}

.product-wrapper>* {
  padding-right: 16px;
  padding-left: 16px;
}

/*contact page*/
.contact-form .btn-primary {
  min-height: 72px;
}

.contact-form textarea {
  height: 180px;
}

.contact-item {
  margin-bottom: 32px;
}

.contact-item h5 {
  color: #fff;
  margin-bottom: 16px;
  font-size: 24px;
  line-height: 32px;
  font-weight: 600;
}

.contact-item p {
  line-height: 35px;
  color: #fff;
}

.contact-item a:hover {
  color: var(--bs-primary) !important;
}

/* Footer */
.footer {
  color: #000;
  font-weight: 300;
  padding-top: 128px;
  padding-bottom: 60px;
  position: relative;
}

.footer h5 {
  color: #000;
  margin-bottom: 24px;
  font-size: 24px;
  line-height: 32px;
  font-weight: 600;
}

.footer p {
  line-height: 32px;
  color: #000;
}

.footer a {
  color: #000;
  text-decoration: none;
  line-height: 32px;
}

.footer a:hover {
  color: #000;
}

.footer-logo {
  position: absolute;
  top: -78px;
  left: 50%;
  margin: 0 auto;
  width: 156px;
  height: 156px;
  border-radius: 50%;
  border: 2px solid #532311;
  display: flex;
  align-items: center;
  justify-content: center;
  transform: translate(-50%, 0px);
}

/* Animation Delay */
.delay-1-0s {
  -webkit-animation-delay: 1s;
  animation-delay: 1s;
}

.delay-2-0s {
  -webkit-animation-delay: 2s;
  animation-delay: 2s;
}

.delay-0-1s {
  -webkit-animation-delay: 0.1s;
  animation-delay: 0.1s;
}

.delay-0-2s {
  -webkit-animation-delay: 0.2s;
  animation-delay: 0.2s;
}

.delay-0-3s {
  -webkit-animation-delay: 0.3s;
  animation-delay: 0.3s;
}

.delay-0-4s {
  -webkit-animation-delay: 0.4s;
  animation-delay: 0.4s;
}

.delay-0-5s {
  -webkit-animation-delay: 0.5s;
  animation-delay: 0.5s;
}

.delay-0-6s {
  -webkit-animation-delay: 0.6s;
  animation-delay: 0.6s;
}

.delay-0-7s {
  -webkit-animation-delay: 0.7s;
  animation-delay: 0.7s;
}

.delay-0-8s {
  -webkit-animation-delay: 0.8s;
  animation-delay: 0.8s;
}

.delay-0-9s {
  -webkit-animation-delay: 0.9s;
  animation-delay: 0.9s;
}

.delay-1-1s {
  -webkit-animation-delay: 1.1s;
  animation-delay: 1.1s;
}

.delay-1-2s {
  -webkit-animation-delay: 1.2s;
  animation-delay: 1.2s;
}

.delay-1-3s {
  -webkit-animation-delay: 1.3s;
  animation-delay: 1.3s;
}

.delay-1-4s {
  -webkit-animation-delay: 1.4s;
  animation-delay: 1.4s;
}

.delay-1-5s {
  -webkit-animation-delay: 1.5s;
  animation-delay: 1.5s;
}

.delay-1-6s {
  -webkit-animation-delay: 1.6s;
  animation-delay: 1.6s;
}

.delay-1-7s {
  -webkit-animation-delay: 1.7s;
  animation-delay: 1.7s;
}

.delay-1-8s {
  -webkit-animation-delay: 1.8s;
  animation-delay: 1.8s;
}

.delay-1-9s {
  -webkit-animation-delay: 1.9s;
  animation-delay: 1.9s;
}

.value-container {
  background: #EA9F1421;
  opacity: 1;
  border-radius: 25px;
  border-width: 1px;
  text-align: center;
  padding: 30px;
  border: solid 1px #EA9F1421;
  min-height: 260px;
  box-shadow: 0 6px 20px rgba(234, 159, 20, 0.2);
  transition: all 0.3s ease;
}

.value-container:hover {
  box-shadow: 0 10px 30px rgba(234, 159, 20, 0.3);
  transform: translateY(-3px);
  background: linear-gradient(135deg, #EA9F1421 0%, #F5C54221 100%);
}

.blog-container {
  text-align: center;
  background: #fff;
  border-radius: 15px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  padding: 20px;
}

.blog-container:hover {
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
  transform: translateY(-2px);
}


.value-title {
  font-weight: 700;
  font-size: 21px;
  line-height: 31px;
}

.value-description {
  font-weight: 400;
  font-size: 16px;
  line-height: 27px;
  text-align: center;
}

.value-icon img {
  background: #000;
  border-radius: 50px;
  padding: 10px;
  margin: 15px 0;
}

.contact-btn {
  background: #000;
  width: 100%;
  border-radius: 25px;
  border-width: 1px;
  padding: 20px 0;
}

.contact-btn img {
  background: #fff;
  padding: 5px;
  border-radius: 40px;
}

.subscribe-btn {
  background: #000;
  width: 100%;
  border-radius: 25px;
  border-width: 1px;
  align-items: anchor-center;
  padding: 6px 20px;
}

.blog-title {
  font-weight: 700;
  font-size: 21px;
  line-height: 29px;
  text-align: center;
  vertical-align: middle;
}

.blog-description {
  font-weight: 400;
  font-size: 16px;
  line-height: 27px;
  text-align: center;
}

.blog-link {
  font-weight: 700;
  font-size: 15px;
  line-height: 35px;
  text-align: center;
  vertical-align: middle;
  font-style: Bold;
}

.about-content {
  width: 50%;
}

.about-heading {
  font-family: 'Termina', sans-serif;
  font-weight: 700;
  font-size: 35px;
  line-height: 49px;
  text-align: center;
  vertical-align: middle;
}

.about-description {
  font-family: 'Montserrat', sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 27px;
}

.top-radius {
  border-radius: 99px 99px 0 0;
}

.bottom-radius {
  border-radius: 0 0 99px 99px;
}

.all-radius {
  border-radius: 99px;
}

#value .about-title {
  vertical-align: middle;
}

.container-padding {
  padding: 45px 0 60px 0;
}

#value .about-description {
  width: 60%;
}

.social-icons {
  width: 32px;
}

.blog-body {
  width: 80%;
}

.font-montserrat {
  font-family: 'Montserrat';
}

.extra-margin {
  margin-bottom: 60px;
}

.navbar-toggler {
  padding: 8px;
  margin-right: 10px;
  font-size: 16px;
}
  .footer-terms {
    font-size: 12px;
  }
/* Large devices (laptops/desktops, 992px and up) */
@media only screen and (min-width: 992px) {
  .service-container {
    min-height: 499px;
  }
}


/* Extra large devices (large laptops and desktops, 1200px and up) */
@media only screen and (max-width: 1500px) {
  .carousel-controls {
    gap: 28%;
  }

  .service-container {
    min-height: 499px;
  }

  .value-container {
    min-height: 290px;
  }
  .hero-wrapper{
      height: 85vh;
    }
}

@media only screen and (max-width: 1300px) {
  .category-line {
    font-size: 12px;
  }
    .hero-wrapper {
        height: 80vh;
    }
  .banner-text {
    font-size: 44px;
    line-height: 48px;
  }

  .banner-action {
    margin-top: 30px;
  }

  .banner-btn {
    padding: 6px 20px;
    min-width: 200px;
  }
}
@media only screen and (max-width: 1200px) {
  .service-container h5 {
    min-height: 176px;
  }
     .hero-wrapper {
        height: 75vh;
        background-position: center right;
    }
  .about-content {
    width: 64%;
  }

  .carousel-controls {
    gap: 27%;
  }

  .navbar-collapse .gap-5 {
    gap: 1rem !important;
  }

  .value-container {
    min-height: 313px;
  }

  .service-container {
    padding: 30px 10px 10px 10px;
  }
}
@media only screen and (max-width: 992px) {
  .btn-consultation {
    margin: 0 auto;
  }

  #values {
    text-align: center;
  }
  .navbar-collapse {
  background: #fff;
  text-align: center;
  padding: 0 0 20px 0;
}
.form-container{
  width: 80%;
}
.hero-wrapper{
  background-position: center right;
}
  .hero-text .container {
    background: #fffefea6;
    padding: 30px 15px;
    border-radius: 40px;
    text-align: center;
  }
   .carousel-controls {
    gap: 70%;
    right: 0;
    top: 238px;
  }
    .service-container h5 {
        min-height: 50px;
    }
        .service-container {
        min-height: 150px;
    }
}

@media only screen and (max-width: 800px) {
    .hero-wrapper{
      height: 600px;
    }
  }
/* Extra small devices (phones, 600px and down) */
@media only screen and (max-width: 600px) {
  .banner-text {
    font-size: 26px;
    line-height: 34px;
  }

  .banner-btn,
  .btn-transparent {
    padding-top: 8px;
    padding-right: 8px;
    padding-bottom: 8px;
    padding-left: 8px;
    min-width: 190px;
    font-size: 14px;
  }

  .about-content {
    width: 100% !important;
  }

  .section-heading {
    font-size: 30px;
    line-height: 42px;
  }

  .section-padding {
    padding-top: 80px;
    padding-bottom: 80px;
  }

  .all-radius {
    border-radius: 40px;
  }

  .top-radius {
    border-radius: 40px 40px 0 0;
  }

  .bottom-radius {
    border-radius: 0 0 40px 40px;
  }

  .value-container {
    margin: 0 40px 30px 40px;
  }

  .social-icons-container {
    justify-content: center;
  }

  .hero-carousel .owl-item {
    width: 67% !important;
  }

  .banner-action {
    margin-top: 16px;
  }

  .container-padding {
    padding: 40px 0 40px 0;
  }

  .carousel-controls {
    gap: 69% !important;
    right: 0;
  }

  .carousel-controls .btn {
    padding: 12px;
  }

  .service-container h5 {
    min-height: auto;
  }

  .footer {
    padding-top: 44px;
    padding-bottom: 20px;
    text-align: center;
  }

  .contact-btn {
    border-radius: 20px;
    padding: 10px 0;
  }

  .hero-text {
    top: 10px !important;
  }

  body {
    width: 103%;
  }
}
@media only screen and (max-width: 500px) {
.hero-wrapper {
        background-position: 90% center;
    }
  }
.terms-effective{
  color: #969696;
}
.terms-title{
font-weight: 700;
font-weight: bold;
font-size: 21px;
line-height: 35px;
}
.blog-banner-image{
  background-image: url(../images/blog-banner.jpg);
    height: 800px;
    background-size: cover;
    background-position: bottom;
    margin-bottom: 60px;
}
.blog-image{
  border-radius: 25px;
}