:root {
  --primary: #745020 !important;
  --secondary: #b6872b !important;
  --tertiary: #faf8f3 !important;
  --light: #fff3dc !important;
  --white: #fff !important;
}

.bg-primary {
  background-color: var(--primary) !important;
}

.bg-secondary {
  background-color: var(--secondary) !important;
}

.bg-light {
  background-color: var(--light) !important;
}

.text-primary {
  color: var(--primary) !important;
}

.text-secondary {
  color: var(--secondary) !important;
}

.text-light {
  color: var(--light) !important;
}

.text-white {
  color: var(--white) !important;
}

.text-body {
  color: #000 !important;
}

body {
  color: #000 !important;
}

p {
  font-size: 1.2rem !important;
  font-weight: 400;
  line-height: 1.5;
}

.border-primary {
  border-color: var(--secondary) !important;
}

.border-secondary {
  border-color: var(--primary) !important;
}

/*** Spinner Start ***/
#spinner {
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.8s ease-out, visibility 0s linear 0.5s;
  z-index: 99999;
}

#spinner.show {
  transition: opacity 0.8s ease-out, visibility 0s linear 0s;
  visibility: visible;
  opacity: 1;
}
/*** Spinner End ***/

/*** Common CSS Start ***/
.back-to-top {
  position: fixed;
  right: 30px;
  bottom: 30px;
  display: flex;
  width: 45px;
  height: 45px;
  align-items: center;
  justify-content: center;
  transition: 0.5s;
  z-index: 99;
}

a:hover {
  color: var(--secondary) !important;
  text-decoration: none;
}

h1,
h2,
h3,
.h1,
.h2,
.h3 {
  font-weight: 200;
  font-family: "Montserrat", sans-serif;
  color: var(--primary) !important;
}

h4,
h5,
h6,
.h4,
.h5 {
  font-weight: 600;
  font-family: "Montserrat", sans-serif;
  color: var(--primary) !important;
}

.p {
  font-size: 14px;
  font-family: "Montserrat", sans-serif;
  color: var(--secondary) !important;
}
.h6 {
  font-weight: 600;
  font-family: "Montserrat", sans-serif;
}

.display-1,
.display-2,
.display-3,
.display-4,
.display-5,
.display-6 {
  font-weight: 700;
  font-family: "Fredoka", sans-serif;
}

.display-4,
.display-5,
.display-6 {
  font-weight: 600;
  color: var(--primary) !important;
}

.custom a {
  text-decoration: none;
  color: var(--light) !important;
}

.wow,
.animated {
  animation-duration: 2s !important;
}
/*** Common CSS End ***/

/*** Button Start ***/
.btn {
  font-weight: 600;
  transition: 0.5s;
}

.btn-square {
  width: 32px;
  height: 32px;
}

.btn-sm-square {
  width: 34px;
  height: 34px;
}

.btn-md-square {
  width: 44px;
  height: 44px;
}

.btn-lg-square {
  width: 56px;
  height: 56px;
}

.btn-square,
.btn-sm-square,
.btn-md-square,
.btn-lg-square {
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: normal;
}

.btn.btn-primary {
  border: 0;
  background-color: var(--primary);
  color: var(--white);
}

.btn.btn-primary:hover {
  background: var(--secondary);
  color: var(--white) !important;
}

.btn.btn-primary:focus {
  box-shadow: 0 0 0 0.25rem #e8b65279 !important;
}

.btn.btn-secondary {
  border: 0;
  background-color: var(--secondary);
  color: var(--white);
}

.btn.btn-secondary:hover {
  background: var(--secondary);
  color: var(--white) !important;
}

.btn.btn-secondary:focus {
  box-shadow: 0 0 0 0.25rem #e8b65279 !important;
}

.btn-border-radius {
  border-radius: 25% 10%;
}

.btn-outline-primary {
  color: var(--primary);
  border-color: var(--primary);
}

.btn-outline-primary:hover {
  color: #fff;
  background-color: var(--secondary);
  border-color: var(--secondary);
}

.btn-outline-primary:focus,
.btn-outline-primary.focus {
  box-shadow: 0 0 0 0.2rem rgba(23, 162, 184, 0.5);
}

.btn-outline-primary.disabled,
.btn-outline-primary:disabled {
  color: var(--primary);
  background-color: transparent;
}

.btn-outline-primary:not(:disabled):not(.disabled):active,
.btn-outline-primary:not(:disabled):not(.disabled).active,
.show > .btn-outline-primary.dropdown-toggle {
  color: #fff;
  background-color: var(--secondary);
  border-color: var(--secondary);
}

.btn-outline-primary:not(:disabled):not(.disabled):active:focus,
.btn-outline-primary:not(:disabled):not(.disabled).active:focus,
.show > .btn-outline-primary.dropdown-toggle:focus {
  box-shadow: 0 0 0 0.2rem rgba(23, 162, 184, 0.5);
}

.img-border-radius {
  border-radius: 50% 20% / 10% 40%;
}

.title-border-radius {
  border-radius: 10% 30%;
}
/*** Button End ***/

/*** Topbar Start ***/
.topbar .top-info {
  font-size: medium;
  font-weight: 400;
  font-family: "Montserrat", sans-serif;
  letter-spacing: 1px;
  display: flex;
  align-items: center;
}

.topbar .top-link {
  display: flex;
  align-items: center;
  justify-content: center;
}

.topbar .top-link a {
  margin-right: 10px;
}

.topbar .top-link a:hover {
  background: var(--secondary) !important;
}

.topbar .top-link a:hover i {
  color: var(--primary) !important;
}
/*** Topbar End ***/

/*** Navbar Start ***/
.navbar {
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.navbar .navbar-nav .nav-link {
  padding: 10px 35px;
  font-size: 16px;
  font-weight: 600;
  transition: 0.5s;
}

.navbar-light .navbar-toggler {
  color: rgba(0, 0, 0, 0.55);
  border-color: rgba(0, 0, 0, 0.5) !important;
}

.navbar-light .navbar-nav .nav-link {
  color: var(--primary) !important;
}

.navbar .navbar-nav .nav-link:hover,
.navbar .navbar-nav .nav-link.active,
.fixed-top.bg-white .navbar .navbar-nav .nav-link:hover,
.fixed-top.bg-white .navbar .navbar-nav .nav-link.active {
  color: var(--secondary) !important;
}

.navbar .dropdown-toggle::after {
  border: none;
  content: "\f107";
  font-family: "Font Awesome 5 Free";
  font-weight: 700;
  vertical-align: middle;
  margin-left: 8px;
}

@media (min-width: 1200px) {
  .navbar .nav-item .dropdown-menu {
    display: block;
    visibility: hidden;
    top: 100%;
    font-weight: 400;
    font-family: "Fredoka", sans-serif;
    transform: rotateX(-75deg);
    transform-origin: 0% 0%;
    border: 0;
    transition: 0.5s;
    opacity: 0;
  }
}

.dropdown .dropdown-menu a:hover {
  background: var(--secondary);
  color: var(--primary);
}

.navbar .nav-item:hover .dropdown-menu {
  transform: rotateX(0deg);
  visibility: visible;
  background: var(--light) !important;
  border-radius: 10px !important;
  transition: 0.5s;
  opacity: 1;
}

/*** Navbar End ***/

/*** Hero Header ***/
.hero-header {
  /* background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.05)), url(../img/hero-img.jpg); */
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
}

.breadcrumb-item + .breadcrumb-item::before {
  float: left;
  padding-right: 0.5rem;
  color: var(--white) !important;
  content: var(--bs-breadcrumb-divider, "/")
    /* rtl: var(--bs-breadcrumb-divider, "/") */;
}
/*** Hero Header ***/

/*** service Start ***/
.service {
  background: var(--tertiary);
}

.service .service-item {
  box-shadow: 0 0 45px rgba(0, 0, 0, 0.1);
  width: 100%;
  height: 100%;
  border-radius: 50% 20% / 10% 40%;
  transition: 0.5s;
  position: relative;
}

.service-content::after {
  position: absolute;
  content: "";
  width: 0;
  height: 100%;
  top: 0;
  left: 0;
  right: auto;
  background: transparent;
  border-radius: 50% 20% / 10% 40%;
  transition: 0.5s;
}

.service-item:hover {
  border: 1px solid var(--secondary) !important;
}

.service-item:hover .service-content::after {
  background: var(--secondary);
  width: 100%;
  opacity: 1;
  z-index: 1;
}

.service-item .service-content .service-content-inner {
  position: relative;
  z-index: 2;
}

.service-item .service-content-inner i,
.service-item .service-content-inner p,
.service-item .service-content-inner h4 {
  transition: 0.5s;
}

.service-item:hover .service-content-inner i,
.service-item:hover .service-content-inner h4,
.service-item:hover .service-content-inner span,
.service-item:hover .service-content-inner hr,
.service-item:hover .service-content-inner p {
  border-color: var(--white) !important;
  color: var(--white) !important;
}

.service-item:hover img {
  filter: brightness(0) invert(1) !important;
}

/*** Service End ***/

/*** Events Start ***/

.events {
  background: var(--tertiary);
}

.events .events-item {
  width: 100%;
  /* height: 100%; */
  border-radius: 30%;
  position: relative;
}

.events .events-item .events-inner .events-rate {
  position: absolute;
  width: 120px;
  top: -20px;
  left: 50%;
  margin-left: -60px;
  border-radius: 10% / 50%;
}

.events .events-item .events-inner .events-img .event-overlay {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  transition: 0.5s;
  z-index: 1;
  opacity: 0;
}

.events .events-item .events-inner .events-img:hover .event-overlay {
  opacity: 1;
}

.events .events-item .events-img::after {
  position: absolute;
  content: "";
  width: 100%;
  height: 0;
  top: 0;
  left: 0;
  bottom: auto;
  background: rgba(255, 243, 220, 0.7);
  /* border-radius: 10px; */
  transition: 0.5s;
}

.events .events-item:hover .events-img::after {
  height: 100%;
  opacity: 1;
}

.events .events-item .events-text a.h4,
.events .events-item .events-img img {
  transition: 0.5s;
}

.events .events-item:hover .events-text a.h4 {
  color: var(--primary) !important;
}

.events .events-item:hover .events-img img {
  transform: scale(1.3);
}

/* new styles for events circle shape*/
/* .events .events-item {
  width: 50%; 
  aspect-ratio: 1; 
  border-radius: 50%; 
  overflow: hidden; 
  position: relative;
  margin: auto; 
}

.events .events-item .card-img-top {
  width: 100%;
  height: 100%;
  object-fit: cover; 
  border-radius: 50%; 
  transition: transform 0.5s ease;
}

.events .events-item:hover .card-img-top {
  transform: scale(1.1); 
}

.events .events-item .card-body {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: rgba(0, 0, 0, 0.5); 
  text-align: center;
  opacity: 0;
  transition: opacity 0.5s ease; 
  padding: 20px;
  border-radius: 50%;
}

.events .events-item:hover .card-body {
  opacity: 1;
} */
/*** Events End ***/

/*** Team Start ***/
.team .team-item {
  position: relative;
  width: 100%;
  height: 100%;
}

.team .team-item .team-icon {
  position: absolute;
  bottom: 120px;
  left: 50%;
  transform: translateX(-50%);
}

.team .team-item .team-icon a.share-link {
  opacity: 0;
  transition: 0.5s;
}

.team .team-item:hover .team-icon a.share-link {
  opacity: 1;
}

.team .team-item .team-content,
.team .team-item .team-content h4,
.team .team-item .team-content p {
  transition: 0.5s;
}

.team .team-item:hover .team-content {
  background: var(--primary) !important;
  border-radius: 0 0 10px 10px;
}

.team .team-item:hover .team-content h4 {
  color: var(--white) !important;
}

.team .team-item:hover .team-content p {
  color: var(--white) !important;
}
/*** Team end ***/

/*** Footer Start ***/
/* .footer {
  background: linear-gradient(rgba(255, 255, 255, 0.8), rgba(255, 255, 255, 1)),
    url(../img/background.jpg);
  background-position: top center;
  background-repeat: no-repeat;
  background-size: cover;
} */

.footer .footer-galary-img img {
  width: 100%;
  border-style: dotted;
  border-color: var(--primary);
  transition: 0.5s;
}

.footer .footer-galary-img img:hover {
  transform: scale(1.2);
}

.footer-item a.text-body:hover {
  color: var(--secondary) !important;
}

.follow-us-text {
  font-size: 1.5rem; /* Increase text size */
}

/* Add padding between the icons */
.footer-item .d-flex a {
  margin: 0 10px; /* Increase padding between icons */
}

.footer-contact {
  margin-left: -50px;
}

@media (max-width: 1024px) {
  .footer-contact {
    margin-left: -3px;
  }
}

@media (max-width: 1024px) {
  .email-text {
    white-space: normal;
    word-break: break-word;
  }
}

.logo {
  order: 0; /* Logo remains at the top */
}

.follow-us-content {
  order: 1; /* Follow Us content below logo by default */
}

@media (max-width: 768px) {
  .follow-us-content {
    order: 3; /* Move Follow Us content to the bottom */
  }
  .logo {
    order: 0; /* Logo always stays at the top */
  }
  .follow-us .footer-item {
    align-items: flex-start !important; /* Override align-items for smaller devices */
  }
}

/*** Footer End ***/

.gallery-img {
  width: 100%;
  height: 300px;
  object-fit: cover;
  display: block;
}

@media (max-width: 768px) {
  .gallery-img {
    height: 250px;
  }
}

@media (max-width: 576px) {
  .gallery-img {
    height: 200px;
  }
}

.equal-box {
  height: 100%;
  min-height: 145px;
  /* justify-content: center; */
  align-items: center;
}

.ftco-gallery {
  padding: 0;
}

.gallery {
  display: block;
  /* height: 350px; */
  position: relative;
  object-fit: cover;
}
.gallery .icon span {
  color: #fff;
}
.gallery:hover .icon,
.gallery:focus .icon {
  opacity: 1;
}

.no-gutters {
  margin-right: 0;
  margin-left: 0;
}
.no-gutters > .col,
.no-gutters > [class*="col-"] {
  padding-right: 0;
  padding-left: 0;
}

.card {
  width: 100%;
  height: 100%;
}

/* .card-body {
  height: 165px;
  border: 1px solid rgba(0, 0, 0, 0.125);
  border-color: var(--primary) !important;
  padding: 1rem 1rem;
  background-color: #fff;
  border-radius: 0 0 10px 10px;
  border-top: none;
} */

.contact .p {
  font-size: 18px !important;
}

@media (max-width: 768px) {
  .contact .p {
    font-size: 14px !important;
    text-align: left;
  }

  .contact-section {
    margin-left: -20px;
  }
}

/* .floating-square {
  position: relative;
  height: 300px;
  background: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(0, 0, 0, 0.125);
  border-color: var(--primary) !important;
  z-index: 10;
}

.circle-container {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  width: 50%;
  height: auto;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 15;
}

.circle-container img {
  width: 250px;
  height: 250px;
  border-radius: 50%;
  object-fit: cover;
} */

@media (max-width: 767px) {
  .team-container {
    padding: 2rem 1rem !important;
    max-width: 80% !important;
  }

  .events-container {
    padding: 2rem 1rem !important;
    max-width: 90% !important;
  }

  .service-container {
    padding: 2rem 2rem !important;
    /* max-width: 80% !important; */
  }

  .service-container .p-4 {
    padding: 1rem !important;
  }

  .team-img {
    width: 100% !important;
    height: auto !important;
    margin: 0 auto !important;
    object-fit: cover !important;
  }

  .team-detail-img {
    width: 250px !important;
    height: 250px !important;
    margin: 0 auto;
    object-fit: cover !important;
    border: 4px solid;
  }

  .circle-container img {
    width: 180px;
    height: auto;
  }
}

.floating-square-2 {
  position: relative;
  height: 300px;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10;
}

.circle-container-2 {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  width: 50%;
  height: auto;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 15;
}

.circle-container-2 img {
  width: 250px;
  height: 250px;
  border-radius: 50%;
  object-fit: cover;
}

.card-body-2 {
  height: 165px;
  padding: 1rem 1rem;
}

.activity-line {
  display: none;
}

@media (max-width: 425px) {
  .activity-line {
    display: block; 
    width: 75%;
    margin: 20px auto;
    border: 1px solid var(--primary) !important;
    border-top: none;
  }
}
