body{
  background-color: #ecd29c;
}

body::selection{
  color: #ecd29c;
  background-color: #702D0C;
}
/* Width and height of the scrollbar */
::-webkit-scrollbar {
  width: 10px;
  height: 10px;
}

/* Track (the background) */
::-webkit-scrollbar-track {
  background: #702d0c;
  border-radius: 10px;
}

/* Handle (the draggable part) */
::-webkit-scrollbar-thumb {
  background: #ecd29c;
  border-radius: 10px;
}    

/* ////////////////  scroll up -down /////////////// */

.scrollButtonContainer {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background-color: #702d0c;
  border: none;
  border-radius: 8px;
  width: 35px;
  height: 35px;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
  z-index: 1000;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s, visibility 0.3s;
}

.scrollButtonContainer.show {
  opacity: 1;
  visibility: visible;
}

/* Arrow Icons */
.arrow {
  border: solid #ecd29c;
  border-width: 0 3px 3px 0;
  display: inline-block;
  padding: 5px;
  transition: transform 0.2s;
}

.down {
  transform: rotate(45deg);
}

.up {
  transform: rotate(-135deg);
}


/* Center the loader */
#preloader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  background:#ecd29c;
  z-index: 9999;
}

/* Preloader container */
.preloader {
  display: inline-block;
  text-align: center;
  line-height: 86px;
  position: relative;
  padding: 0 48px;
  font-size: 48px;
  font-family: Arial, Helvetica, sans-serif;
  color: #702d0c;
}

/* Image size */
.preloader img {
  width: 70px;
}

/* Animation */
.preloader:before,
.preloader:after {
  content: "";
  display: block;
  width: 15px;
  height: 15px;
  background: currentColor;
  position: absolute;
  animation: load 0.7s infinite alternate ease-in-out;
  top: 0;
}

.preloader:after {
  top: auto;
  bottom: 0;
}

@keyframes load {
  0% {
    left: 0;
    height: 43px;
    width: 15px;
    transform: translateX(0);
  }
  50% {
    height: 10px;
    width: 40px;
  }
  100% {
    left: 100%;
    height: 43px;
    width: 15px;
    transform: translateX(-100%);
  }
}
/* Hide content initially */
#content {
  display: none;
}
/* /////////////////////// HEADER //////////////////////// */

    /* Base header — visible initially */
    .main-header {
      position: sticky;
      top: 0;
      width: 100%;
      height: 70px;
      z-index: 999;
      border: 1px solid #702D0C;
      background: #702D0C;
      color: #ecd29c;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 20px;
      box-shadow: none;
      transition: top 0.6s cubic-bezier(0.25, 0.8, 0.25, 1); /* Smoother transition */
    }

    /* Moves up briefly */
    .main-header.hidden {
      top: -70px;
    }

    /* Pops down and becomes sticky */
    .main-header.sticky {
      top: 0;
      box-shadow: 0 4px 10px rgba(112, 45, 12, 0.2);
    }


*,ul,li{
  padding: 0;
  margin: 0;
}
h1,h2,h3,h4,h5,h6,p{
  margin: 0;
  padding: 0;
  font-family: "Poppins", sans-serif;
}
.head-links ul {
  display: flex;
  gap: 30px;
  align-items: center;
}
section.main-header {
  background-color: #ecd29c;
  padding: 6px;
}
.logo img{
  width: 70px;
}

li {
  position: relative;
  display: inline-block;
  list-style-type: none;
  font-family: "Poppins", sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 16px;
}
li:active{
  font-weight: 600;
}
/* /////////////////////////Reduce offcanvas width/////////////////// */

.offcanvas.offcanvas-end {
  width: 60%; 
}


a {
  text-decoration: none;
  font-family: "Poppins", sans-serif;
  color: #702D0C;
  display: block;
}
.row.head-flex {
  align-items: center;
}
li.active{
  font-weight: 600;
}

li.contact{
  font-size: 16px;
  border: 2px solid #702d0c;
  background: #702d0c;
  height: 30px;
  width: 110px;
  border-radius: 9px;
  color: #ecd29c;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: 0.5s;

}
li.contact:hover{
  font-size: 16px;
  border: 2px solid #702d0c;
  background: #ecd29c;
  height: 30px;
  width: 110px;
  border: 1px solid #702d0c;
  border-radius: 9px;
  color: #702d0c;
  transition: 0.5s;
  display: flex;
  justify-content: center;
  align-items: center;
}
.head-links ul {
  display: flex;
  gap: 30px;
  justify-content: flex-end;
}

/* ////////////// Mobile-nav ///////////////////// */
/* section.main-header {
  background-color: #ecd29c;
  padding: 6px;
  position: fixed;
  width: 100%;
  z-index: 11;
  border: 1px solid #702d0c;
  box-shadow: 2px 1px 8px 1px black;
} */

section.mob-nav {
  background-color: #ecd29c;
  padding: 10px;
}
.mob-head-links {
  text-align: left;
}
.mob-canvas{
  text-align: right;
}
button.btn.btn-primary {
  background: #ecd29c;
  border: none;
}
.phone-menu {
  background-color: #552f20;
  height: 40px;
  border-radius: 6px;
  width: 40px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.menu img{
  width: 20px;
}

/* toggler border */

.mob-canvas .btn:focus, 
.mob-canvas .btn:active, 
.mob-canvas .btn:focus-visible {
  outline: none !important;
  box-shadow: none !important;
  border: none !important;
}


/* ////////////// banner ///////////////////// */

.banner{
  background-image: url('../images/banner.png');
  height: 70vh;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}
.banner::before{
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(112, 45, 12, 1);
  z-index: -1;
}
.main-banner{
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  height: 70vh;
}
.main-banner h3,h4{
  color: #ecd29c;
  font-size: 16px;
  font-weight: 600;
}
.main-banner h4 {
  margin-left: 126px;
  margin-top: 20px;
}

/* ////////////// intro ///////////////////// */

.intro{
  position: relative;
  background-color: #ecd29c;
  padding: 40px 0;
}

.line-1{
  position: absolute;
  bottom: 0;
  left: 0;
}
.line-2{
  position: absolute;
  bottom: 0;
  left: 260px;
}
.line-3{
  position: absolute;
  bottom: 0;
  left: 520px;
}
.intro-text h2{
  color: #381D0D;
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 20px;
}
.intro-text p {
  color: #381D0D;
  font-size: 16px;
  font-weight: 400;
  margin-bottom: 20px;
}

/* ////////////// founder ///////////////////// */

.founder{
  background-color: #702D0C;
  padding: 40px 0;
  position: relative;
}
.side-line-1 {
  position: absolute;
  left: 10px;
  top: 100px;
}
.side-line-2 {
  position: absolute;
  right: 10px;
  top: 100px;
}
.founder-text h2{
  color: #ecd29c;
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 20px;
}
.founder-text p{
  color: #ecd29c;
  font-size: 16px;
  font-weight: 400;
  margin-bottom: 30px;
}

/* ////////////// menu ///////////////////// */


.menu{
  padding: 40px 0;
  background-color: #ecd29c;
}
.menu h2{
  color: #381D0D;
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 20px;
}
.menu-border{
  height: 600px;
  width: 100%;
  border: 4px solid #702D0C;
  background-color: #ecd29c;
  border-radius: 32px;
}

/* ////////////// service ///////////////////// */


.service{
  padding: 40px 0;
  background-color: #ecd29c;
}
.service h2{
  color: #381D0D;
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 20px;
}


.box {
  width: 100%;
  height: 100%;
  background-color: #702d0c;
  border-radius: 6px;
  box-shadow: 2px 2px 6px 2px #5f5d5d;
  display: flex;
  align-items: stretch;
  margin-bottom: 20px;
  transition: 0.5s;
  flex-direction: column;
  padding: 40px 20px;
}
.box h4{
  margin: 20px 0;
}
.box{
  position: relative;
}
.box-right img{
  position: absolute;
  top: 10px;
  right: 10px;
}
.box-left img{
  position: absolute;
  bottom: 10px;
  left: 10px;
}
.box-line-1 img {
  position: absolute;
  top: 10px;
  left: 100px;
  opacity: 0.6;
}
.box-line-2 img{
  position: absolute;
  bottom: 10px;
  left: 100px;
  opacity: 0.6;

}
.box:hover{

  transform: translateY(-10px);

}
.box p {
  font-size: 16px;
  color: #ecd29c;
  font-weight: 300;
}
/* ////////////// excellence ///////////////////// */

.excellence h2{
  color: #381D0D;
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 20px;
}
.excellence{
  position: relative;
  padding: 40px 0;
  background-color: #ecd29c;
}
.excellence-text p{
  color: #702d0c;
}
.lotus-image {
  position: absolute;
  top: 60px;
  left: 42%;
}
.lotus-image img{
  width: 90%;
}

/* ////////////// blog ///////////////////// */
.blogs h2{
  color: #381D0D;
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 20px;
}
.blogs {
  position: relative;
  background-color: #ecd29c;
  padding: 80px 0;
}
.blog-image-flex{
  position: relative;
}
.blog-line-1 {
  position: absolute;
  top: -43px;
  left: 150px;
}

.blog-line-2 {
  position: absolute;
  top: -42px;
  left: 390px;
}

.blog-box {
  width: 100%;
  height: 220px;
  background-color: #702D0C;
  border-radius: 6px;
  box-shadow: 2px 2px 6px 2px #5f5d5d;
}

.blog-small-box {
  position: absolute;
  width: 150px;
  height: 190px;
  margin: 30px 15px;
  background-color: #ecd29c;
  margin-top: 15px;
  border-radius: 6px;
}
.blog-image-common{
  position: relative;
}
.blog-line-3 {
  position: absolute;
  right: 10px;
  bottom: -50px;
}
.blog-line-4 {
  position: absolute;
  right: 250px;
  bottom: -50px;
}


/* //////////////Testimonials///////////////// */


.testimonial{
  padding: 40px 0;
  background-color: #702D0C;
  position: relative;
}
.quote{
  position: relative;
}
.quote-image{
  text-align: center;
}
.quote h3 {
  margin-top: 40px;
  text-align: center;
  font-size: 14px;
  color: #702d0c;
  font-weight: 600;
}  
.quote h4 {
  text-align: center;
  margin-left: 130px;
  font-size: 14px;
  color: #702d0c;
}
.footer{
  background-color: #ecd29c;
  padding: 40px 0;
}
.footer-box {
  width: 100%;
  height: 200px;
  background-color: #ecd29c;
  border-radius: 22px;
  justify-content: flex-start;
  display: flex;
  align-items: center;
  padding: 0 40px;
}
.footer-box img{
    width: 100px;
}
.footer-text {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 6px 0;
  color: #ecd29c;
}
.end-footer{
  background-color: #702d0c;
  
}
.end-footer a{
  display: inline;
  font-weight: 600;
  color: #ecd29c;

}
.test-map{
  position: relative;
}
.test-box{
  position: relative;
}
.test-text h2{
  color: #ecd29c;
  margin-bottom: 40px;
}
.test-text p{
  position: absolute;
  top: 5px;
  left: 0;
}
.test-map img{
  width: 100%;
}
/* /////////////// Swipper ///////////// */
:root {
  --swiper-pagination-color: #ecd29c; /* Sets active bullet color */
}
.swiper-pagination-bullet-active {
  background: #ecd29c !important;
}

.carousel{
  background-color: #702d0c;
  padding: 80px 0;
}
/* box hover */
.blog-box {
  position: relative; /* Ensures borders are positioned correctly */
  border-radius: 22px;
  background-color: #fff;
  height: 100%;
  box-shadow: 0px 0px 0px rgba(0, 0, 0, 0);
  transition: background 0.5s ease-in-out, box-shadow 0.5s ease-in-out;
  overflow: hidden;
  padding: 0;
}

.blog-box:hover {
  box-shadow: 0px 8px 20px rgba(0, 0, 0, 0.2);
}

/* Borders setup */
.border {
  position: absolute;
  background: #ecd29c;
  opacity: 0;
}

/* Top Border */
.border.top {
  top: 0;
  left: 0;
  width: 0%;
  height: 4px;
  border-radius: 22px 22px 0 0;
}

/* Right Border */
.border.right {
  top: 0;
  right: 0;
  width: 4px;
  height: 0%;
}

/* Bottom Border */
.border.bottom {
  bottom: 0;
  right: 0;
  width: 0%;
  height: 4px;
  border-radius: 0 0 22px 22px;
}

/* Left Border */
.border.left {
  bottom: 0;
  left: 0;
  width: 4px;
  height: 0%;
}

/* Smooth travel animation */
.blog-box:hover .border.top {
  animation: border-top 0.5s linear forwards, reset-opacity 2s infinite;
}

.blog-box:hover .border.right {
  animation: border-right 0.5s linear 0.5s forwards, reset-opacity 2s infinite 0.5s;
}

.blog-box:hover .border.bottom {
  animation: border-bottom 0.5s linear 1s forwards, reset-opacity 2s infinite 1s;
}

.blog-box:hover .border.left {
  animation: border-left 0.5s linear 1.5s forwards, reset-opacity 2s infinite 1.5s;
}

/* Keyframes for border animation */
@keyframes border-top {
  0% { width: 0%; opacity: 1; }
  100% { width: 100%; opacity: 1; }
}

@keyframes border-right {
  0% { height: 0%; opacity: 1; }
  100% { height: 100%; opacity: 1; }
}

@keyframes border-bottom {
  0% { width: 0%; opacity: 1; }
  100% { width: 100%; opacity: 1; }
}

@keyframes border-left {
  0% { height: 0%; opacity: 1; }
  100% { height: 100%; opacity: 1; }
}

/* Hide the previous borders to create a continuous effect */
@keyframes reset-opacity {
  0% { opacity: 1; }
  49% { opacity: 1; }
  50%, 99% { opacity: 0; }
  100% { opacity: 1; }
}

.testimonial-box{
  position: relative;
  margin-bottom: 40px;
}

.testimonial-image img{
  width: 100%;
}
.testimonial-text p {
  color: #702d0c;
  font-size: 15px;
  width: 80%;

}


.testimonial-text {
  position: absolute;
  top: 74px;
  left: 71px;
  padding: 8px;
}






.testimonial-image{
  position: relative;
}


.testimonial-quote {
  position: absolute;
  top: 50px;
  right: -100px;
  width: 200px;
}

.testimonial-quote img {
  width: 25px;
}
.row.testimonial-row {
  padding-top: 60px;
}
.quotes{
  background-color: #ecd29c;
}

.about-timeline .timeline {
  position: relative;
  margin: 40px 0;
  padding-left: 30px;
}

.timeline-item {
  position: relative;
  margin-bottom: 50px;
}

.timeline-item::before {
  content: '';
  position: absolute;
  top: 12px;
  left: -20px;
  width: 12px;
  height: 12px;
  background: #0d47a1;
  border-radius: 50%;
  z-index: 2;
}

.timeline-content {
  background: #f8f9fa;
  padding: 20px;
  border-left: 3px solid #0d47a1;
  position: relative;
  border-radius: 6px;
}

.timeline-item.left .timeline-content {
  margin-left: 0;
}

.timeline-item.right .timeline-content {
  margin-left: 30px;
}

@media (max-width: 768px) {
  .timeline-item.right .timeline-content {
    margin-left: 0;
  }
}