/***
Author: Fakir Hossain @ Pukta
Designer : MD Asaduzzaman Asad 
Developer: MD Asaduzzaman Asad
URL: https://asadpro.com
Description: Pukta 
Version: 2.0.0
Date: 01-Dec-2023
1st_Version_Date: 01-Dec-2023
*/

:root {
  --primary: #000;
  --p-color: #04a655;
  --p-light-gray: #f2f1ef;
  --p-border: #585756;
  --p-gray: #2e2d2c;
}
.bg-success {
  background-color: var(--p-color) !important;
}
a {
  color: var(--p-color);
}
body {
  font-size: 18px;
  font-family: "Dosis", sans-serif;
  scroll-behavior: smooth;
}
/* 
font-family: 'Dosis', sans-serif;
font-family: 'Poppins', sans-serif;
font-family: 'Spectral', serif;
*/

h1,
h2,
h3,
h4,
h5 {
  font-family: "Spectral", serif;
  color: #000;
}
.w-full {
  width: 100% !important;
  max-width: fit-content;
}
@media screen and (max-width: 559px) {
  .d-sm-none {
    display: none;
  }
  .d-sm-block {
    display: block;
  }
}
.page-header {
  background: url(/assets/img/breadcrumb-bg.jpg);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
}
.page-header-overlay {
  background-color: rgba(0, 0, 0, 0.75);
  padding: 50px 20px;
}
.page-header .page-title h2 {
  color: var(--p-light-gray);
}
.breadcrumb-item + .breadcrumb-item::before,
.page-header .breadcrumb-item.active {
  color: var(--p-light-gray);
}
/* Logo animation */
.logo {
  max-width: 150px; /* Adjust the size as needed */
  transition: max-width 0.3s; /* Logo animation duration */
}

.navbar.fixed-top {
  transition: all 0.3s;
  padding-top: 10px;
  padding-bottom: 10px;
  background: var(--p-light-gray);
  z-index: 9999999999999;
}

.navbar.fixed-top.animated {
  padding-top: 5px; /* Reduce padding when scrolling */
  padding-bottom: 5px; /* Reduce padding when scrolling */
  box-shadow: 0px 4px 3px 3px rgba(25, 98, 162, 0.05);
}

/* Smaller logo */
.logo.smaller-logo {
  max-width: 100px; /* Adjust the smaller size as needed */
}
.logo-middle {
  max-width: 240px;
  transition: all 0.2s;
}
.fixed-top.animated .logo-middle {
  max-width: 230px;
}
.page {
  padding-top: 100px;
}
.carousel-inner {
  max-height: 700px;
}
.carousel-item {
  position: relative;
}
.carousel-item::before {
  content: "";
  position: absolute;
  height: 100%;
  width: 100%;
  background: rgba(0, 0, 0, 0.05);
}
.carousel-item .carousel-caption {
  position: absolute;
  left: 50%;
  top: 35%;
  transform: translate(-50%, -50%);
  height: 250px;
  width: 600px;
  text-align: center;
}
.carousel-item img {
  transition: ease 16s;
}
.carousel-item img.scale_up {
  transform: scale(1.2);
}

.carousel-item .carousel-caption::before {
  content: "";
  position: absolute;
  left: 0%;
  top: 0%;
  height: 100%;
  width: 100%;
  text-align: center;
  background-color: rgba(0, 0, 0, 0.2);
  filter: blur(5px);
}
.carousel-item .carousel-caption.caption-left {
  left: 30%;
  top: 40%;
  text-align: left;
}
.carousel-item .carousel-caption.caption-left::before {
  background-color: transparent;
}
.carousel-item .carousel-caption.caption-left-blur::before {
  background-color: rgba(0, 0, 0, 0.2);
}

@media screen and (max-width: 1024px) {
  .carousel-item .carousel-caption.caption-left {
    left: 50%;
    top: 50%;
    text-align: center;
  }
  .carousel-item .carousel-caption.caption-left::before {
    background-color: transparent;
  }
  .carousel-item .carousel-caption.caption-left-blur::before {
    background-color: rgba(0, 0, 0, 0.2);
  }
}

@media screen and (max-width: 480px) {
  .carousel-item .carousel-caption,
  .carousel-item .carousel-caption.caption-left {
    left: 50%;
    top: 90%;
    text-align: center;
  }
  .carousel-item .carousel-caption h2 {
    font-size: 1.2rem !important;
  }
  .carousel-item .carousel-caption p {
    font-size: 0.8rem;
    max-width: 360px;
    margin: 0 auto;
  }
  .carousel-item .carousel-caption .button_text_container {
    font-size: 0.8rem;
  }
  .carousel-item .carousel-caption .button_su_inner {
    padding: 5px 10px;
  }
}

.carousel-item .carousel-caption h2 {
  position: relative;
  z-index: 10;
  color: var(--p-light-gray);
}
.carousel-item .carousel-caption p {
  position: relative;
  z-index: 10;
  color: var(--p-light-gray);
}

#header {
  background: var(--p-light-gray) !important;
  min-height: 120px;
}
#header .navbar-nav .nav-item {
  font-weight: 600;
  margin-left: 10px;
  transition: all 0.2s;
}
#header .navbar-nav .nav-item .nav-link {
  font-family: "Poppins", sans-serif;
  font-size: 1rem;
  line-height: 1.2rem;
  margin-left: 5px;
  margin-right: 5px;
  text-transform: capitalize;
  color: var(--p-gray);
  transition: all 0.2s;
  font-weight: 600;
  text-transform: uppercase;
}
#header .navbar-nav .nav-item .nav-link.active {
  color: var(--p-color);
}
#header .navbar-nav .nav-item .nav-link:hover {
  color: var(--p-color);
}
@media screen and (max-width: 991px) {
  #header .navbar-nav .nav-item .nav-link {
    padding: 15px 30px;
  }
  #header .navbar-nav .nav-item .nav-link br {
    display: none;
  }
  #header .navbar-nav .nav-item:hover {
    background: var(--p-border);
  }
  #header .navbar-nav .nav-item .nav-link:hover {
    color: var(--p-light-gray);
    transform: translateX(10px);
  }
}
#header .navbar-brand img {
  width: 180px;
}

.has-bg {
  background-size: cover;
  background-repeat: no-repeat;
  background-position: 0 0;
  background-attachment: fixed;
}

/* Forms Style Start */
.form-control {
  border-radius: 0;
}

/* article content style start */

@media screen and (min-width: 900px) {
  article {
    padding: 40px 30px;
  }
}
main {
  overflow: hidden;
}
article {
  position: relative;
  z-index: 10;
}
article .birds-home {
  position: absolute;
  right: -20px;
  bottom: -120px;
  z-index: -2;
}
article .birds-home img {
  width: 220px;
}
article .birds-home-2 img {
  width: 320px;
  opacity: 0.9;
}
article .flower {
  bottom: 50px;
  right: 400px;
  opacity: 0.1;
}
article .flower img {
  width: 300px;
}
.content-summery p {
  font-size: 1.3rem;
  opacity: 0.85;
}

article .button_su {
  border-radius: 0;
  border: 5px solid #08a659;
}
article .button_su_inner {
  background: #08a659;
  color: #ffffff;
  transition: 40ms;
  border-radius: 0;
  padding: 5px 30px;
  border: 1px solid #ffffff;
}
article .button_su:hover .button_su_inner {
  background: #08a659;
  color: #ffffff;
  transition: 40ms;
  border-radius: 0;
  padding: 5px 30px;
  border: 1px solid #ffffff;
}
article h2 {
  max-width: 550px;
  margin-bottom: 40px;
}
@media screen and (max-width: 768px) {
  article {
    margin-top: 50px;
  }
  article h2 {
    margin-top: 25px;
  }
  article .birds-home-2 img {
    opacity: 0.25;
  }
}
.button_su {
  border-radius: 0;
  border: 5px solid #08a659;
}
.button_su_inner {
  background: #08a659;
  color: #ffffff;
  transition: 40ms;
  border-radius: 0;
  padding: 5px 30px;
  border: 1px solid #ffffff;
}
.button_su:hover .button_su_inner {
  background: #08a659;
  color: #ffffff;
  transition: 40ms;
  border-radius: 0;
  padding: 5px 30px;
  border: 1px solid #ffffff;
}
/* services style start */
#services {
  background: white;
  padding-top: 50px;
  padding-bottom: 150px;
}
#services .services-item {
  padding-bottom: 30px;
}

#services i {
  font-size: 3rem;
  display: block;
  color: var(--p-color);
  height: 100px;
  width: 100px;
  border: 3px solid var(--p-color);
  border-radius: 100%;
  text-align: center;
  line-height: 2;
}
#services i.fa-warehouse {
  font-size: 2.8rem;
  display: block;
}

#services .content {
  width: auto;
  padding-left: 30px;
}
#services h4 {
  color: var(--p-color);
}
#services p {
  width: auto;
}

/* renovations stylest start */

.renovations-overlay {
  background: rgba(233, 208, 208, 0.25);
  padding: 100px 50px;
}
#renovations .item .feature-img {
  overflow: hidden;
}

#renovations .item .feature-img img {
  overflow: hidden;
  transform: scale(1.15);
  transition: all 0.5s;
}

#renovations .item:hover .feature-img img {
  transform: scale(1);
}

#renovations .content h3 {
  letter-spacing: 5px;
  text-transform: capitalize;
}

#renovations .content h3 span {
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: normal;
  position: relative;
}

#renovations .content h3 span::after {
  content: "";
  position: absolute;
  height: 2px;
  width: 0%;
  left: 0;
  bottom: 5px;
  background: var(--primary);
  transition: all 0.5s;
}

#renovations .item:hover h3 span::after {
  width: 100%;
}

#renovations .content p {
  margin-right: 20px;
}
/* renovations stylest end */

/* our-commitment stylest start */
#our-commitment h2 {
  color: var(--primary);
}
#our-commitment .commitment-item .icon {
  text-align: center;
}
#our-commitment .commitment-item .icon i {
  position: relative;
  font-size: 2.5rem;
  height: 100px;
  width: 100px;
  border-radius: 50%;
  line-height: 2.3;
  border: 3px solid #d4bb3f;
  display: block;
  text-align: center;
  margin: 0 auto;
  background-image: linear-gradient(
    to left,
    #462523 0,
    #cb9b51 22%,
    #d4bb3f 45%,
    #f6f2c0 50%,
    #f6e27a 55%,
    #cb9b51 78%,
    #462523 100%
  );
  color: transparent;
  background-clip: text;
  -webkit-background-clip: text;
}

#our-commitment .commitment-item .content h5 {
  text-align: center;
  font-size: 2rem;
}
/* our-commitment stylest end */

/* Contact Style Start */
#contact input {
  height: 60px;
  margin-bottom: 10px;
}
#contact textarea {
  resize: none;
}
/* Footer Style Start */
#footer {
  background: var(--p-gray);
}
#footer .footer-overlay {
  width: 100%;
  overflow: hidden;
  position: relative;
  padding: 50px 20px;
}
#footer .footer-overlay::before {
  content: "";
  position: absolute;
  bottom: -70px;
  left: 0;
  transform: translateX(43%);
  width: 100%;
  height: 100%;
  opacity: 0.075;
  z-index: 0;
  background: url("/assets/img/footer-flower.png");
  background-repeat: no-repeat;
}

#footer .footer-logo {
  padding-bottom: 30px;
}

.footer-social,
.footer-menu,
.footer-logo {
  position: relative;
  z-index: 99px;
}

@media screen and (min-width: 900px) {
  .footer-border {
    height: 1px;
    background-color: #585756;
    width: 100%;
    border-top: 1px solid #585756;
    border-bottom: 1px solid #2e2d2c;
  }
  #footer .social-icons {
    display: flex;
    justify-content: space-between;
  }
}
#footer .social-icons a i {
  font-size: 18px;
  height: 36px;
  width: 40px;
  text-align: center;
  line-height: 36px;
  color: var(--p-light-gray);
  border: 1px solid var(--p-border);
  transition: all 0.2s;
}
#footer .social-icons a:hover i {
  background-color: var(--p-light-gray);
  color: var(--p-border);
}
.footer-menu {
  padding-top: 40px;
}
.footer-menu .nav-item {
  border-right: 1px solid var(--p-light-gray);
  padding: 0 10px;
}
.footer-menu .nav-link {
  font-size: 0.9rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--p-light-gray);
  padding: 0 3px;
  position: relative;
}
.footer-menu .nav-item:last-child {
  border-right: 0;
}
.footer-menu .nav-link:hover {
  color: var(--p-light-gray);
}
.footer-menu .nav-link::before {
  content: "";
  height: 1px;
  width: 0%;
  position: absolute;
  left: 50%;
  transform: translate(-50%, 0);
  bottom: 0;
  background: var(--p-light-gray);
  opacity: 0;
  transition: cubic-bezier(0.82, 0.35, 0.62, 0.75) 0.2s;
}
.footer-menu .nav-link:hover::before {
  opacity: 1;
  width: 100%;
}

/* News letter form style start */
#footer-bottom {
  background: #e9d0d0;
  position: relative;
  z-index: 10;
  overflow: hidden;
}
.bird-bottom {
  position: absolute;
  left: 0;
  bottom: 0;
  z-index: -1;
}
.bird-bottom img {
  width: 500px;
  opacity: 0.15;
}
.bird-bottom-2 {
  position: absolute;
  right: 150px;
  bottom: 0;
  z-index: -1;
}
.bird-bottom-2 img {
  width: 300px;
  opacity: 0.1;
}
@media screen and (max-width: 559px) {
  .bird-bottom-2 {
    display: none;
  }
}
.form-control:focus {
  border-color: #0ca65c;
  outline: 0;
  box-shadow: 0 0 0 0.25rem rgba(12, 166, 92, 0.25);
}
#newsLetterForm input {
  height: 50px;
}
.nav-wrapper .container {
  position: relative;
}
.nav-illustration {
  position: absolute;
  right: 20px;
  top: 0;
}
.nav-illustration img {
  width: 70px;
}
/* Got top btn */
#go-top {
  display: inline-block;
  text-align: center;
  font-size: 1rem;
  line-height: 1rem;
  cursor: pointer;
  border-radius: 50%;
  height: 50px;
  width: 50px;
  color: var(--p-light-gray);
  background-color: var(--p-border);
  opacity: 0.75;
  position: fixed;
  right: 60px;
  z-index: 99999;
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
}
#go-top:hover {
  opacity: 1;
}
#go-top i {
  margin-top: 8px;
  font-size: 0.8rem;
  transition: all 0.5s;
}
#go-top:hover i {
  transform: translateY(3px);
}

#go-top span {
  display: block;
}

.go-up {
  bottom: 60px;
}
@media screen and (max-width: 992px) {
  .go-up {
    right: 30px !important;
    bottom: 40px !important;
  }
}
@media screen and (max-width: 767px) {
  .go-up {
    right: 20px !important;
    bottom: 40px !important;
  }
}

.go-down {
  bottom: -100px;
  display: none;
}
#footer-copyright {
  background: var(--p-color);
}
#license-id {
  text-transform: capitalize;
  font-weight: 700;
  font-size: 1rem;
}
#cta-placeholder {
  position: relative;
  width: 100%;
  min-height: 100px;
}
#cta {
  position: absolute;
  left: 0;
  top: -240px;
  height: 100%;
  width: 100%;
  z-index: 9999;
}
#cta-relative {
  background: var(--p-light-gray);
  padding: 50px 50px;
}
#cta-relative #cta {
  position: relative;
  left: 0;
  top: 0;
  height: 100%;
  width: 100%;
  z-index: 9999;
}
/* Cta area */
.cta-container {
  background: var(--p-color);
  padding: 20px 20px;
  border-radius: 25px;
}
.cta-inner {
  border-radius: 20px;
  background: var(--p-color);
  border: 1px solid var(--bs-white);
  padding: 50px 20px;
}
.cta-inner h2 {
  color: var(--bs-white);
}
.btn-big {
  font-size: 3rem;
  text-transform: uppercase;
  border-radius: 0;
  color: var(--p-color);
  padding: 20px 50px;
}
@media screen and (max-width: 1024px) {
  .cta-container {
    padding: 10px 10px;
    border-radius: 15px;
  }
  .cta-inner {
    border-radius: 15px;
    padding: 30px 10px;
  }
  #cta h2.display-1{
    font-size: 2rem !important;
  }
  .btn-big {
    margin-top: 25px;
    font-size: 1.5rem;
    padding: 10px 25px;
  }
}
@media screen and (max-width: 768px) {
  .btn-big {
    margin-top: 25px;
    display: inline-block;
    text-align: center;
    margin: 0 auto;
    font-size: 2rem;
    padding: 20px 25px;
  }
  .text-sm-center{
    text-align: center;
  }
}
@media screen and (max-width: 500px) {
  .text-sm-center{
    text-align: center;
  }
  #cta h2.display-1{
    font-size: 1rem !important;
    text-align: center;
  }
  .btn-big {
    margin-top: 25px;
    display: inline-block;
    text-align: center;
    margin: 0 auto;
    font-size: 1.2rem;
    padding: 10px 25px;
  }
}

#contact-overlay {
  position: fixed;
  z-index: 999;
  right: -23px;
  top: 50%;
  transform: rotate(90deg) translateY(-50%);
}
@media screen and (max-width: 900px) {
  #contact-overlay {
    display: none;
  }
}
