

/*--------------------------------------------------------------
# General
--------------------------------------------------------------*/
body {
  font-family: "Poppins", sans-serif;
  color: #444444;
}

a {
  color: #47b2e4;
  text-decoration: none;
}

a:hover {
  color: #73c5eb;
  text-decoration: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Poppins", sans-serif;
}


/*--------------------------------------------------------------
# Back to top button
--------------------------------------------------------------*/
.back-to-top {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  right: 15px;
  bottom: 15px;
  z-index: 996;
  background: #A2AF7F;
  width: 40px;
  height: 40px;
  border-radius: 50px;
  transition: all 0.4s;
}

.back-to-top i {
  font-size: 24px;
  color: #fff;
  line-height: 0;
}

.back-to-top:hover {
  background: #717D4E;
  color: #fff;
}

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




/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/
#header {
  top: 0;
  transition: all 0.5s;
  z-index: 997;
  background-color: #fff;
}
.main-nav {
  padding: 10px 0;
}
#header.header-scrolled,
#header.header-inner-pages {
  background: #fff;
}

#header .logo {
  font-size: 27px;
  margin: 0;
  padding: 0;
  line-height: 1;
  font-weight: 500;
  text-transform: uppercase;
}

#header .logo a {
  color: #000;
  font-weight: 700;
}

#header .logo img {
  max-height: 40px;
}
@media screen and (max-width: 991px) {
  .main-nav {
    padding: 22px 15px;
  }
}
/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/
/**
* Desktop Navigation 
*/
.navbar {
  padding: 0;
}

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

.navbar li {
  position: relative;
}

.navbar>ul>li {
  white-space: nowrap;
  padding: 10px 0 10px 12px;
}

.navbar a,
.navbar a:focus {
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: #000;
  font-family: "Poppins", sans-serif;
  font-weight: 600;
  font-size: 14px;
  white-space: nowrap;
  transition: 0.3s;
  position: relative;
  padding: 6px 4px;
}

.navbar a i,
.navbar a:focus i {
  font-size: 12px;
  line-height: 0;
  margin-left: 5px;
}

.navbar>ul>li>a:before {
  content: "";
  position: absolute;
  width: 0;
  height: 2px;
  bottom: -6px;
  left: 0;
  background-color: #A2AF7F;
  visibility: hidden;
  transition: all 0.3s ease-in-out 0s;
}

.navbar a:hover:before,
.navbar li:hover>a:before,
.navbar .active:before {
  visibility: visible;
  width: 100%;
}

.navbar a:hover,
.navbar .active,
.navbar .active:focus,
.navbar li:hover>a {
  color: #fff;
}


.navbar a i,
.navbar a:focus i {
  font-size: 12px;
  line-height: 0;
  margin-left: 5px;
}

.navbar a:hover,
.navbar .active,
.navbar .active:focus,
.navbar li:hover>a {
  color: #A2AF7F;
}

.navbar .getstarted,
.navbar .getstarted:focus {
  padding: 10px 30px;
  margin-left: 30px;
  color: #000;
  font-size: 14px;
  border: 2px solid #000;
  font-weight: 600;
}

.navbar .getstarted:hover,
.navbar .getstarted:focus:hover {
  color: #fff;
  background: #A2AF7F;
  border-color: #A2AF7F;
}
a.getstarted.scrollto::before {
  background: none;
}
.navbar .dropdown ul {
  display: block;
  position: absolute;
  left: 14px;
  top: calc(100% + 30px);
  margin: 0;
  padding: 10px 0;
  z-index: 99;
  opacity: 0;
  visibility: hidden;
  background: #fff;
  box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
  transition: 0.3s;
  border-radius: 4px;
}

.navbar .dropdown ul li {
  min-width: 200px;
}

.navbar .dropdown ul a {
  padding: 10px 20px;
  font-size: 14px;
  text-transform: none;
  font-weight: 500;
  color: #0c3c53;
}

.navbar .dropdown ul a i {
  font-size: 12px;
}

.navbar .dropdown ul a:hover,
.navbar .dropdown ul .active:hover,
.navbar .dropdown ul li:hover>a {
  color: #47b2e4;
}

.navbar .dropdown:hover>ul {
  opacity: 1;
  top: 100%;
  visibility: visible;
}

.navbar .dropdown .dropdown ul {
  top: 0;
  left: calc(100% - 30px);
  visibility: hidden;
}

.navbar .dropdown .dropdown:hover>ul {
  opacity: 1;
  top: 0;
  left: 100%;
  visibility: visible;
}

@media (max-width: 1366px) {
  .navbar .dropdown .dropdown ul {
    left: -90%;
  }

  .navbar .dropdown .dropdown:hover>ul {
    left: -100%;
  }
}

@media screen and (max-width: 991px) {
  .navbar>ul>li>a:before {
    content: "";
    position: absolute;
    width: 0;
    height: 0;
    bottom: 0;
    left: 0;
    background: none;
    visibility: hidden;
    transition: all 0.3s ease-in-out 0s;
  }
  .navbar>ul>li>.sm-bdr{
    border-bottom: 1px solid #000;
  }
  .navbar>ul>li {
    white-space: nowrap;
    padding: 0;
  }
  .navbar>ul>li a{
    padding: 15px 0;
  }
  #header .logo {
    font-size: 20px;
    margin: 0;
    padding: 0;
    line-height: 1;
    font-weight: 500;
    text-transform: uppercase;
  }
}

/**
* Mobile Navigation 
*/
.mobile-nav-toggle {
  color: #000;
  font-size: 28px;
  cursor: pointer;
  display: none;
  line-height: 0;
  transition: 0.5s;
}

.mobile-nav-toggle.bi-x {
  color: #000;
}

@media (max-width: 991px) {
  .mobile-nav-toggle {
    display: block;
  }

  .navbar ul {
    display: none;
  }
}

.navbar-mobile {
  position: fixed;
  overflow: hidden;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  background: rgba(40, 58, 90, 0.9);
  transition: 0.3s;
  z-index: 999;
}

.navbar-mobile .mobile-nav-toggle {
  position: absolute;
  top: 15px;
  right: 15px;
}

.navbar-mobile ul {
  display: block;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  padding: 50px 30px 10px 30px;
  background-color: #fff;
  overflow-y: auto;
  transition: 0.3s;
}

.navbar-mobile a,
.navbar-mobile a:focus {
  padding: 15px 0;
  font-size: 15px;
  color: #000;
}

.navbar-mobile a:hover,
.navbar-mobile .active,
.navbar-mobile li:hover>a {
  color: #A2AF7F;
}

.navbar-mobile .getstarted,
.navbar-mobile .getstarted:focus {
  margin: 15px;
  color: #000;
}

.navbar-mobile .dropdown ul {
  position: static;
  display: none;
  margin: 10px 20px;
  padding: 10px 0;
  z-index: 99;
  opacity: 1;
  visibility: visible;
  background: #fff;
  box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
}

.navbar-mobile .dropdown ul li {
  min-width: 200px;
}

.navbar-mobile .dropdown ul a {
  padding: 10px 20px;
}

.navbar-mobile .dropdown ul a i {
  font-size: 12px;
}

.navbar-mobile .dropdown ul a:hover,
.navbar-mobile .dropdown ul .active:hover,
.navbar-mobile .dropdown ul li:hover>a {
  color: #47b2e4;
}

.navbar-mobile .dropdown>.dropdown-active {
  display: block;
  visibility: visible !important;
}


@media screen and (max-width: 991px) {
  .navbar-mobile .getstarted,
  .navbar-mobile .getstarted:focus {
    margin: 15px 0;
    text-align: center;
    color: #000;
    justify-content: center;
  }
}
/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
#hero {
  width: 100%;
  height: 100vh;
  background: url(../img/hero_image.jpeg) top center;
  background-size: cover;
  overflow: hidden;
  position: relative;
}

@media (min-width: 1024px) {
  #hero {
    background-attachment: fixed;
  }
}

#hero:before {
  content: "";
  background: rgba(0, 0, 0, 0.5);
  position: absolute;
  bottom: 0;
  top: 0;
  left: 0;
  right: 0;
}

#hero .hero-container {
  position: absolute;
  bottom: 0;
  left: 0;
  top: 90px;
  right: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  text-align: center;
  padding: 0 15px;
}
.hero-content{
  position: relative;
  z-index: 666;
  margin-top: 30px;
}
@media (max-width: 991px) {
  #hero .hero-container {
    top: 70px;
  }
  .hero-content{
    margin-top: 0;
  }
}

#hero h1 {
  color: #fff;
  font-family: "Poppins", sans-serif;
  font-size: 60px;
  font-weight: 700;
}

#hero h1 span {
  color: #f82249;
}

@media (max-width: 991px) {
  #hero h1 {
    font-size: 34px;
  }
}

#hero h2 {
  color: #fff;
  font-size: 28px;
}

@media (max-width: 991px) {
  #hero h2 {
    font-size: 22px;
  }
}


.start-free{
  padding: 13px 35px;
  background-color: #A2AF7F;
  color: #fff;
  font-weight: 600;
  font-size: 16px;
  font-family: "Poppins", sans-serif;
  text-transform: uppercase;
  border-radius: 2px;
  margin-top: 20px;
  transition: .3s;
}
.start-free:hover{
  background-color: #717D4E;
  color: #fff;
}



.btn-view-services{
  padding: 13px 35px;
  background-color: #A2AF7F;
  color: #fff;
  font-weight: 600;
  font-size: 16px;
  font-family: "Poppins", sans-serif;
  text-transform: uppercase;
  border-radius: 2px;
  margin-top: 20px;
  transition: .3s;
}
.btn-view-services:hover{
  background-color: #717D4E;
  color: #fff;
}


@media screen and (max-width: 991px) {
  .start-free{
    padding: 10px 25px;
    background-color: #A2AF7F;
    color: #fff;
    font-weight: 600;
    font-size: 15px;
  }
}


/*--------------------------------------------------------------
# Sections General
--------------------------------------------------------------*/
section {
  padding: 60px 0;
  overflow: hidden;
}

.section-bg {
  background-color: #f3f5fa;
}

.section-title {
  text-align: center;
  padding-bottom: 30px;
}

.section-title h2 {
  font-size: 32px;
  font-weight: bold;
  text-transform: uppercase;
  margin-bottom: 20px;
  padding-bottom: 20px;
  position: relative;
  color: #37517e;
}

.section-title h2::before {
  content: "";
  position: absolute;
  display: block;
  width: 120px;
  height: 1px;
  background: #ddd;
  bottom: 1px;
  left: calc(50% - 60px);
}

.section-title h2::after {
  content: "";
  position: absolute;
  display: block;
  width: 40px;
  height: 3px;
  background: #47b2e4;
  bottom: 0;
  left: calc(50% - 20px);
}

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


/*--------------------------------------------------------------
# About
--------------------------------------------------------------*/
.about-section{
  padding: 90px 0;
}
.about-content h5{
  color: #A2AF7F;
  font-size: 15px;
  text-transform: uppercase;
  font-weight: 600;
}
.about-content h2{
  font-weight: 600;
  color: #000;
}
.about-content p{
  font-size: 17px;
  font-weight: 500;
  color: #261505;

}
.about-btn .get-in{
  text-decoration: underline;
  font-size: 17px;
  font-weight: 500;
  color: #261505;
  transition: .3s;
}
.about-btn .get-in:hover{
  text-decoration: none;
}
.about-img{
  text-align: center;
  margin-top: 110px;
}
.about-img img{
  height: 500px;
  width: 420px;
  object-fit: cover;
}


@media screen and (max-width: 991px) {
  .about-img img{
    height: 100%;
    width: 100%;
  }
  .about-img{
    text-align: center;
    margin-top: 30px;
  }
  
}

/*--------------------------------------------------------------
# Experience
--------------------------------------------------------------*/
.experience-section{
  padding: 50px 0;
  background-color: #FAF9EF;
}
.image-card {
  position: relative;
  overflow: hidden;
  cursor: pointer;
}

.image-card img {
  width: 100%;
  height: 300px;
  display: block;
  object-fit: cover;
}

.image-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(255, 255, 255, 0.4); /* White with opacity */
  opacity: 0;
  transition: opacity 0.3s ease-in-out;
}

.image-card:hover .image-overlay {
  opacity: 1;
}
.experience-section h3{
  color: #000;
  font-size: 1.25rem;
    font-style: normal;
    font-family: Poppins;
    font-weight: 600;
    line-height: 1.25;
    letter-spacing: 0px;
    text-transform: none;
}
.experience-section p{
  font-size: 17px;
  font-weight: 500;
  color: #261505;
}
.read-more {
  font-size: 17px;
  font-weight: 500;
  color: #261505;
  padding-bottom: 1px;
  border-bottom: 2px solid #261505;
}
.sec-title{
  margin-bottom: 50px;
}
.sec-title h2{
  font-weight: 600;
  color: #000;
}
.sec-title h5{
  color: #A2AF7F;
  font-size: 15px;
  text-transform: uppercase;
  font-weight: 600;
}



/*--------------------------------------------------------------
# Contact
--------------------------------------------------------------*/
:root {
  --highlight-color: #a6a367; /* Light olive-green/gold color */
}

.form-control,
.form-check-input,
textarea {
  border: 1px solid var(--highlight-color);
  border-radius: 0;
}
input.form-control{
  height: 45px;
}
select.form-control{
  height: 45px;
}
input.form-control::placeholder{
  font-weight: 500;
}
textarea.form-control::placeholder{
  font-weight: 500;
}
.form-control:focus,
textarea:focus {
  border-color: var(--highlight-color);
  box-shadow: none;
}
.form-control,
textarea {
  border: 1px solid #a6a367;
  border-radius: 0;
  outline: none;
  box-shadow: none;
}

.form-control:focus,
textarea:focus {
  border: 1px solid #a6a367;
  outline: 2px solid rgba(166, 163, 103, 0.5); /* Soft outer border */
  box-shadow: none;
}
.form-control:focus,
.form-check-input:focus {
  border: 1px solid #a6a367;
  outline: 2px solid rgba(166, 163, 103, 0.5); /* Soft outer border */
  box-shadow: none;
}
.form-check-input:focus {
  box-shadow: none;
  border-color: var(--highlight-color);
}

.form-check-input:checked {
  background-color: var(--highlight-color);
  border-color: var(--highlight-color);
}

.submit-btn {
  background-color: #A2AF7F;
  color: white;
  border: none;
  text-transform: uppercase;
  font-weight: 600;
  border-radius: 2px !important;
  padding: 15px 20px;
}

.submit-btn:hover {
  background-color: #717D4E;
  color: #fff;
}
.form-label{
  font-weight: 600;
  color: #000;
}
.form-check-label{
  font-weight: 500;
}
label span {
  color: var(--highlight-color);
}

.section-title {
  font-weight: 700;
}

.section-subtitle {
  color: var(--highlight-color);
  font-weight: 600;
  text-transform: uppercase;
  font-size: 0.9rem;
}
label.form-label{
  margin: 0;
  margin-bottom: 3px;
}




/*--------------------------------------------------------------
# Intake section
--------------------------------------------------------------*/
.intake-section{
  margin-top: 120px;
}



/*--------------------------------------------------------------
# Card page css
--------------------------------------------------------------*/

.card-page{
  margin-top: 160px;
  padding-bottom: 80px;
}
.page-img{
  text-align: center;
}
.page-img img{
  height: 420px;
  width: 320px;
  object-fit: cover;
}

.page-content h5{
  color: #A2AF7F;
  font-size: 15px;
  text-transform: uppercase;
  font-weight: 600;
}
.page-content p{
  font-size: 17px;
    font-weight: 500;
    color: #261505;
}

/*--------------------------------------------------------------
# Lets talk section
--------------------------------------------------------------*/
.contact-section {
  background-color: #a0ae81;
  color: white;
  padding: 100px 0;
}

.contact-section h1 {
  font-size: 60px;
  font-weight: 700;
}

.contact-section p {
  font-size: 25px;
  font-weight: 500;
  margin-bottom: 30px;
}

.contact-section .btn-outline-light {
  border: 2px solid white;
  font-weight: 700;
  padding: 12px 30px;
  border-radius: 2px;
}
.contact-section .btn-outline-light:hover {
  background-color: #6C584E;
  color: #fff;
  border-color: #6C584E;
}
.lets-content{
  
  justify-content: center;
}




/*--------------------------------------------------------------
# Breadcrumbs
--------------------------------------------------------------*/
.breadcrumbs {
  padding: 15px 0;
  background: #f3f5fa;
  min-height: 40px;
  margin-top: 72px;
}

@media (max-width: 992px) {
  .breadcrumbs {
    margin-top: 68px;
  }
}

.breadcrumbs h2 {
  font-size: 28px;
  font-weight: 600;
  color: #37517e;
}

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

.breadcrumbs ol li+li {
  padding-left: 10px;
}

.breadcrumbs ol li+li::before {
  display: inline-block;
  padding-right: 10px;
  color: #4668a2;
  content: "/";
}

/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/
#footer {
  font-size: 14px;
  background: #6C584E;
  padding: 30px 0 30px 0;
}
.intake{
  color: #fff;
  font-size: 16px;
  font-weight: 500;
  padding-bottom: 1px;
  transition: .3s;
  border-bottom: 2px solid #6C584E;
}
.intake:hover{
  border-bottom: 2px solid #fff;
  color: #fff;
}
