
/*--------------------------------------------------------------
# General
--------------------------------------------------------------*/
body {
  font-family: "Poppins", sans-serif;
  color: #444444;
}


a {
  text-decoration: none;
  color: #ffffff;
}

a:hover {
  color: #ffc56e;
  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: 170px;
    z-index: 996;
    background: #509e2f;
  width: 40px;
  height: 40px;
  border-radius: 50px;
  transition: all 0.4s;
}
.back-to-top i {
  font-size: 28px;
  color: #fff;
  line-height: 0;
}
.back-to-top:hover {
  background: #ffc064;
  color: #fff;
}
.back-to-top.active {
  visibility: visible;
  opacity: 1;
}

/*--------------------------------------------------------------
# Top Bar
--------------------------------------------------------------*/
#topbar {
  padding: 0;
  font-size: 15px;
  height: 50px;
  transition: all 0.5s;
  background: rgba(26, 24, 22, 0.8);
  z-index: 996;
  color: rgba(255, 255, 255, 0.7);
}
#topbar.topbar-transparent {
  background: #00000057;
}
#topbar.topbar-scrolled {
  top: -50px;
}
#topbar em {
  color: #ffffff;
  line-height: 0;
}
#topbar em span {
  color: #fff;
  font-style: normal;
  padding-left: 5px;
}
.nav-tabs .nav-item.show .nav-link, .nav-tabs .nav-link.active {
    color: #495057;
/*     background-color: #fbf1f2;
 */    border-color: #dee2e6 #dee2e6 #fff;
}
/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/
#header {
  top: 50px;
  height: 70px;
  z-index: 997;
  transition: all 0.5s;
  padding: 10px 0;
 
}
#header.header-transparent {
     background-image: linear-gradient(to bottom,#ffffff 29%,#509e2f42 192%);

}
#header.header-scrolled {
  top: 0;
  background-image: linear-gradient(to bottom,#ffffff -11%,#165e6cf5 177%);
}
a.nav-link.scrolled {
    color: #fff;
}

#header .logo h1 {
  font-size: 28px;
  margin: 0;
  line-height: 1;
  font-weight: 400;
  letter-spacing: 3px;
}
#header .logo h1 a, #header .logo h1 a:hover {
  color: #fff;
  text-decoration: none;
}
#header .logo img {
 padding: 0;
    margin: 0;
    margin-top: -35px;
    z-index: 1000;
    position: absolute;

}
@media only screen and (max-width: 480px){
.logo img {
    width: 108px;
}}

@media only screen and (max-width: 1024px){
.logo img {
    width: 108px;
}}

.container-fluid.ada {
    background: #0d2241;
    color: #fff;
    text-align: center;
    padding: 10px 10px;
}
/*--------------------------------------------------------------
# Book a table button Menu
--------------------------------------------------------------*/
.book-a-table-btn {
  background: #509e2f;
  color: #fff;
  border-radius: 50px;
  margin: 0 0 0 20px;
  padding: 8px 25px;
  font-size: 18px;
  font-weight: 600;
  letter-spacing: 1px;
  transition: 0.3s;
  white-space: nowrap;   

}
.book-a-table-btn:hover {
  background: #165e6c;
  color: #fff;
}
@media (max-width: 992px) {
  .book-a-table-btn {
    margin: 0 15px 0 0;
    padding: 8px 20px;
    letter-spacing: 1px;
  }
}

/*--------------------------------------------------------------
# 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 a, .navbar a:focus {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 0 10px 24px;
  font-size:19px;
  font-weight: 500;
  color: black;
  white-space: nowrap;
  transition: 0.3s;     

}




.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:#509e2f;     font-weight: 600;

}
.navbar .dropdown ul {
  display: block;
  position: absolute;
  left: 24px;
  top: calc(100% + 30px);
  margin: 0;
  padding: 0px 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;
  font-weight: 400;
  color: #433f39;     border-bottom: 1px solid #509e2f;

}
.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: #509e2f;
}
.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%;
  }
}

/**
* Mobile Navigation 
*/
.mobile-nav-toggle {
  color: #509e2f;
    font-size: 35px;
    cursor: pointer;
    display: none;
    line-height: 0;
    transition: 0.5s;
    font-weight: 700;
}

@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(39, 37, 34, 0.9);
  transition: 0.3s;
  z-index: 0;
}
.navbar-mobile .mobile-nav-toggle {
  position: absolute;
  top: 15px;
  right: 15px;
}
.navbar-mobile ul {
  display: block;
  position: absolute;
  top: 130px;
  right: 15px;
  bottom: 15px;
  left: 15px;
  padding: 10px 0;
  border-radius: 8px;
  background-color: #fff;
  overflow-y: auto;
  transition: 0.3s;
}
.navbar-mobile a, .navbar-mobile a:focus {
  padding: 10px 20px;
  font-size: 15px;
  color: #433f39;
}
.navbar-mobile a:hover, .navbar-mobile .active, .navbar-mobile li:hover > a {
  color: #ffb03b;
}
.navbar-mobile .getstarted, .navbar-mobile .getstarted:focus {
  margin: 15px;
}
.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: #ffb03b;
}
.navbar-mobile .dropdown > .dropdown-active {
  display: block;
}

/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
#hero {
  width: 100%;
  height: 100vh;
  background-color: rgba(39, 37, 34, 0.8);
  overflow: hidden;
  padding: 0;
}
#hero .carousel-item {
  width: 100%;
  height: 100vh;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
#hero .carousel-item::before {
  content: "";
  /* background-color: #4444443d; */
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
}
#hero .carousel-container {
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  bottom: 0;
  top: 380px;
  left: 0;
  right: 0;
}
#hero .carousel-content {
  text-align: center;
}
#hero h2 {
  color: #fff;
  margin-bottom: 30px;
  font-size: 48px;
  font-weight: 700;background: #50724257;
    padding: 10px;
}
#hero h2 span {
  color: #ffffff;
}
#hero p {
  width: 80%;
  -webkit-animation-delay: 0.4s;
  animation-delay: 0.4s;
  margin: 0 auto 30px auto;
  color: #fff;
}
#hero .carousel-inner .carousel-item {
  transition-property: opacity;
  background-position: center top;
}
#hero .carousel-inner .carousel-item,
#hero .carousel-inner .active.carousel-item-start,
#hero .carousel-inner .active.carousel-item-end {
  opacity: 0;
}
#hero .carousel-inner .active,
#hero .carousel-inner .carousel-item-next.carousel-item-start,
#hero .carousel-inner .carousel-item-prev.carousel-item-end {
  opacity: 1;
  transition: 0.5s;
}
#hero .carousel-inner .carousel-item-next,
#hero .carousel-inner .carousel-item-prev,
#hero .carousel-inner .active.carousel-item-start,
#hero .carousel-inner .active.carousel-item-end {
  left: 0;
  transform: translate3d(0, 0, 0);
}
#hero .carousel-control-next-icon, #hero .carousel-control-prev-icon {
  background: none;
  font-size: 30px;
  line-height: 0;
  width: auto;
  height: auto;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 50px;
  transition: 0.3s;
  color: rgba(255, 255, 255, 0.5);
  width: 54px;
  height: 54px;
  display: flex;
  align-items: center;
  justify-content: center;
}
#hero .carousel-control-next-icon:hover, #hero .carousel-control-prev-icon:hover {
  background: rgba(255, 255, 255, 0.3);
  color: rgba(255, 255, 255, 0.8);
}
#hero .carousel-indicators li {
  cursor: pointer;
}
#hero .btn-menu, #hero .btn-book {
  font-weight: 600;
  font-size: 13px;
  letter-spacing: 1px;
  text-transform: uppercase;
  display: inline-block;
  padding: 12px 30px;
  border-radius: 50px;
  transition: 0.5s;
  line-height: 1;
  margin: 0 10px;
  -webkit-animation-delay: 0.8s;
  animation-delay: 0.8s;
  color: #fff;
  border: 2px solid #509e2f;
}
#hero .btn-menu:hover, #hero .btn-book:hover {
  background: #509e2f;
  color: #fff;
}
@media (max-width: 768px) {
  #hero h2 {
    font-size: 28px;
  }
}
@media (min-width: 1024px) {
  #hero p {
    width: 50%;
  }
  #hero .carousel-control-prev, #hero .carousel-control-next {
    width: 5%;
  }
}


/*--------------------------------------------------------------
# Cta
--------------------------------------------------------------*/
.cta {
  background: linear-gradient(rgb(2 2 2 / 36%), rgb(0 0 0 / 60%)), url(../img/internet.jpg) fixed center center;
  background-size: cover;
  padding: 60px 0;
}

.cta h4 {
  color: #165e6c;
  font-size: 28px;
  font-weight: 700;   

}

.cta p {
  color: #fff;    text-align: center;

}

.cta .cta-btn {
 
  text-transform: uppercase;
  font-weight: 600;
  font-size: 15px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 8px 28px;
  border-radius: 25px;
  transition: 0.5s;
  margin-top: 10px;
  border: 2px solid #fff;
  color: #fff;    background: #305c4c;

}

.cta .cta-btn:hover {
  background: #f5ae36;
  border: 2px solid #009970;
}
.bg {
    background: #fff;    padding: 20px;

}
.ctalist {
    color: #509e2f;
    font-size: 20px;
    border-bottom: 2px solid #ccc;
    padding: 10px 10px;
}

/*--------------------------------------------------------------
# Cta
--------------------------------------------------------------*/
.ct {
  background: linear-gradient(rgb(2 2 2 / 36%), rgb(0 0 0 / 60%)), url(../img/Accessibility.jpg) fixed center center;
  background-size: cover;
  padding: 60px 0;
}

.ct h4 {
  color: #165e6c;
  font-size: 28px;
  font-weight: 700;   

}

.ct p {
  color: #fff;    text-align: center;

}

.ct .ct-btn {
  text-transform: uppercase;
  font-weight: 600;
  font-size: 15px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 8px 28px;
  border-radius: 25px;
  transition: 0.5s;
  margin-top: 10px;
  border: 2px solid #fff;
  color: #fff;    background: #305c4c;

}

.ct .ct-btn:hover {
  background: #f5ae36;
  border: 2px solid #009970;
}
.bg {
    background:#ffffff;    padding: 20px;

}
.ctalist {
    color: #509e2f;
    font-size: 20px;
    border-bottom: 2px solid #ccc;
    padding: 10px 10px;
}
.title3 {
    text-align: center;
    color: #fff;
    font-size: 45px;
    
}

/*--------------------------------------------------------------
# Sections General
--------------------------------------------------------------*/
section {
  padding: 40px 0;
}

.section-bg {
  background-color: #e1e1e126;
}

.section-title {
  text-align: center;
  padding-bottom: 30px;
}
.section-title h2 {
  margin: 15px 0 0 0;
  font-size: 50px;
  font-weight: 400;
    color: #5f5950;
    letter-spacing: 1px;
}
.section-title h2 span {
  color: #102642;
}
.section-title p {
  margin: 15px auto 0 auto;
  font-weight: 300;
}
@media (min-width: 1024px) {
  .section-title p {
    width: 50%;
  }
}

/*--------------------------------------------------------------
# Breadcrumbs
--------------------------------------------------------------*/
.breadcrumbs {
  padding: 20px 0;
  background-color: #f2f1ef;
  min-height: 40px;
  margin-top: 120px;
}
@media (max-width: 992px) {
  .breadcrumbs {
    margin-top: 70px;
  }
}
.breadcrumbs h2 {
  font-size: 24px;
  font-weight: 300;
  margin: 0;
}
@media (max-width: 992px) {
  .breadcrumbs h2 {
    margin: 0 0 10px 0;
  }
}
.breadcrumbs ol {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  padding: 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: #6c757d;
  content: "/";
}
@media (max-width: 768px) {
  .breadcrumbs .d-flex {
    display: block !important;
  }
  .breadcrumbs ol {
    display: block;
  }
  .breadcrumbs ol li {
    display: inline-block;
  }
}

/*--------------------------------------------------------------
# About
--------------------------------------------------------------*/
.about {
  background: #ffffff;
}
.about .content {
  padding: 0 80px;
}
.about .content h1 {
  font-weight: 400;
  font-size: 47px;
  color: #509e2f;
    letter-spacing: 0px;
}
.about .content h4 {
  font-size: 20px;
  font-weight: 700;
  margin-top: 5px;
}
.about .content p {
  font-size: 15px;
  color: #848484;    text-align: justify;

}
.about .content ul {
  list-style: none;
  padding: 0;
}
.about .content ul li + li {
  margin-top: 15px;
}
.about .content ul li {
  position: relative;
  padding-left: 26px;    color: #165e6c;

}
.about .content ul i {
  font-size: 20px;
  color: #509e2f;
  position: absolute;
  left: 0;
  top: 2px;
}
.about .content p:last-child {
  margin-bottom: 0;
}
.about .video-box {
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
  min-height: 400px;
  position: relative;
}
.about .play-btn {
  width: 94px;
  height: 94px;
  background: radial-gradient(#509e2f 50%, #165e6c 52%);
  border-radius: 50%;
  display: block;
  position: absolute;
  left: calc(50% - 47px);
  top: calc(50% - 47px);
  overflow: hidden;
}
.about .play-btn:hover{
  
  background: #509e2f;

}
.about .play-btn::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translateX(-40%) translateY(-50%);
  width: 0;
  height: 0;
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
  border-left: 15px solid #fff;
  z-index: 100;
  transition: all 400ms cubic-bezier(0.55, 0.055, 0.675, 0.19);background: #509e2f;
}
.about .play-btn::before {
  content: "";
  position: absolute;
  width: 120px;
  height: 120px;
  -webkit-animation-delay: 0s;
  animation-delay: 0s;
  -webkit-animation: pulsate-btn 2s;
  animation: pulsate-btn 2s;
  -webkit-animation-direction: forwards;
  animation-direction: forwards;
  -webkit-animation-iteration-count: infinite;
  animation-iteration-count: infinite;
  -webkit-animation-timing-function: steps;
  animation-timing-function: steps;
  opacity: 1;
  border-radius: 50%;
  border: 5px solid rgba(255, 176, 59, 0.7);
  top: -15%;
  left: -15%;
  background: rgba(198, 16, 0, 0);
}
.about .play-btn:hover::after {
  border-left: 15px solid #ffb03b;
  transform: scale(20);
}
.about .play-btn:hover::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translateX(-40%) translateY(-50%);
  width: 0;
  height: 0;
  border: none;
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
  border-left: 15px solid #fff;
  z-index: 200;
  -webkit-animation: none;
  animation: none;
  border-radius: 0;
}
@media (max-width: 1024px) {
  .about .content, .about .accordion-list {
    padding-left: 0;
    padding-right: 0;
  }
}
@media (max-width: 992px) {
  .about .content {
    padding-top: 30px;
  }
  .about .accordion-list {
    padding-bottom: 30px;
  }
}

@-webkit-keyframes pulsate-btn {
  0% {
    transform: scale(0.6, 0.6);
    opacity: 1;
  }
  100% {
    transform: scale(1, 1);
    opacity: 0;
  }
}

@keyframes pulsate-btn {
  0% {
    transform: scale(0.6, 0.6);
    opacity: 1;
  }
  100% {
    transform: scale(1, 1);
    opacity: 0;
  }
}
section#about a {
    color: #509e2f;
}
section#about a.button {
    color: #fff;
}
dl, ol, ul {
    margin-top: 0;
    margin-bottom: 1rem;
    list-style: none;
	    padding-left: 0rem;

}
/*--------------------------------------------------------------
# Whu Us
--------------------------------------------------------------*/
   section#why-us {
    background:#b4e0aa30;
}
.why-us .bx {
  padding: 20px 30px;
  box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
  transition: all ease-in-out 0.3s;
  height: 100%;     background: #fff;

}
.why-us .bx span {
  display: block;
  font-size: 28px;
  font-weight: 700;
  color: #ffcf88;
}
.why-us .bx h4 {
  font-size: 23px;
  font-weight: 600;
  padding: 0;
  margin: 20px 0;
  color: #165e6c;
}
.why-us .bx p {
  color: #9c9999;
    font-size: 15px;
    margin: 0;
    padding: 0;
    line-height: 2em;
}
.why-us .bx:hover {
  background: #155b69;
  padding: 30px 30px 70px 30px;
  box-shadow: 10px 15px 30px rgba(0, 0, 0, 0.18);
}
.why-us .bx:hover span, .why-us .bx:hover h4, .why-us .bx:hover p {
  color: #fff;
}

/*--------------------------------------------------------------
# Menu Section
--------------------------------------------------------------*/
.menu #menu-flters {
  padding: 0;
  margin: 0 auto 0 auto;
  list-style: none;
  text-align: center;
  border-radius: 50px;
}
.menu #menu-flters li {
  cursor: pointer;
  display: inline-block;
  padding: 8px 16px 10px 16px;
  font-size: 14px;
  font-weight: 500;
  line-height: 1;
  color: #444444;
  margin: 0 3px 10px 3px;
  transition: all ease-in-out 0.3s;
  background: #fff;
  border: 2px solid #ffb03b;
  border-radius: 50px;
}
.menu #menu-flters li:hover, .menu #menu-flters li.filter-active {
  color: #fff;
  background: #ffb03b;
}
.menu #menu-flters li:last-child {
  margin-right: 0;
}
.menu .menu-content {
  margin-top: 30px;
  overflow: hidden;
  display: flex;
  justify-content: space-between;
  position: relative;
}
.menu .menu-content::after {
  content: "......................................................................" "...................................................................." "....................................................................";
  position: absolute;
  left: 20px;
  right: 0;
  top: -4px;
  z-index: 1;
  color: #dad8d4;
}
.menu .menu-content a {
  padding-right: 10px;
  background: #fff;
  position: relative;
  z-index: 3;
  font-weight: 700;
  color: #ff9b08;
}
.menu .menu-content span {
  background: #fff;
  position: relative;
  z-index: 3;
  padding: 0 10px;
  font-weight: 600;
}
.menu .menu-ingredients {
  font-style: italic;
  font-size: 14px;
  color: #948c81;
}

/*--------------------------------------------------------------
# Specials
--------------------------------------------------------------*/
.specials {
  overflow: hidden;    background: #509e2f1c;


}

.specials .nav-tabs {
  border: 0;
}
.specials .nav-link {
  border: 0;
  padding: 12px 15px 12px 10px;
  transition: 0.3s;
  color: #433f39;
  border-radius: 0;
  border-right: 2px solid #e8e7e4;
  font-weight: 600;
  font-size: 15px;
}
.specials .nav-link:hover {
  color: #509e2f;
}
.specials .nav-link.active {
  color: #509e2f;
    border-color: #165e6c;
}
.specials .tab-pane.active {
  -webkit-animation: fadeIn 0.5s ease-out;
  animation: fadeIn 0.5s ease-out;
}
.specials .details h3 {
  font-size: 26px;
  font-weight: 400;
  margin-bottom: 20px;
  color: #165e6c;
    letter-spacing: 2px;
}
.specials .details p {
  color: #777777;
}
.specials .details p:last-child {
  margin-bottom: 0;
}
@media (max-width: 992px) {
  .specials .nav-link {
    border: 0;
    padding: 15px;
  }
  .specials .nav-link.active {
    color: #fff;
    background: #ffb03b;
  }
}

/*--------------------------------------------------------------
# Events
--------------------------------------------------------------*/
.events {
  background: url(../img/events-bg.jpg) center center no-repeat;
  background-size: cover;
  position: relative;
}
.events::before {
  content: "";
  /* background-color: rgba(12, 11, 10, 0.8); */
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
}
p.fntclr {
    color: #5c5858;
}
.events .section-title h2 {
  color: #fff;
}
.events .container {
  position: relative;
}
@media (min-width: 1024px) {
  .events {
    background-attachment: fixed;
  }
}
.events .events-carousel {
  background: rgba(255, 255, 255, 0.08);
  padding: 30px;
}
.events .event-item {
  color: #fff;
}
.events .event-item .eventtag {
  font-weight: 600;
    font-size: 35px;
    color: #132942;


}
.events .event-item .price {
  font-size: 26px;
  font-weight: 700;
  margin-bottom: 15px;
}
.events .event-item .price span {
  border-bottom: 2px solid #ffb03b;
}
.events .event-item ul {
  list-style: none;
  padding: 0;
}
.events .event-item ul li {
  padding-bottom: 10px;
}
.events .event-item ul i {
  font-size: 20px;
  padding-right: 4px;
  color: #ffb03b;
}
.events .event-item p:last-child {
  margin-bottom: 0;
}
.events .swiper-pagination {
  margin-top: 20px;
  position: relative;
}
.events .swiper-pagination .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  background-color: rgba(255, 255, 255, 0.5);
  opacity: 1;
}
.events .swiper-pagination .swiper-pagination-bullet-active {
  background-color: #509e2f;
}

/*--------------------------------------------------------------
# Book A Table
--------------------------------------------------------------*/
.book-a-table .php-email-form {
  width: 100%;
  box-shadow: 0 0 24px 0 rgba(0, 0, 0, 0.12);
  padding: 30px;
  background: #fff;
}
.book-a-table .php-email-form .form-group {
  padding-bottom: 8px;
}
.book-a-table .php-email-form .validate {
  display: none;
  color: red;
  margin: 0 0 15px 0;
  font-weight: 400;
  font-size: 13px;
}
.book-a-table .php-email-form .error-message {
  display: none;
  color: #fff;
  background: #ed3c0d;
  text-align: left;
  padding: 15px;
  font-weight: 600;
}
.book-a-table .php-email-form .error-message br + br {
  margin-top: 25px;
}
.book-a-table .php-email-form .sent-message {
  display: none;
  color: #fff;
  background: #18d26e;
  text-align: center;
  padding: 15px;
  font-weight: 600;
}
.book-a-table .php-email-form .loading {
  display: none;
  background: #fff;
  text-align: center;
  padding: 15px;
}
.book-a-table .php-email-form .loading:before {
  content: "";
  display: inline-block;
  border-radius: 50%;
  width: 24px;
  height: 24px;
  margin: 0 10px -6px 0;
  border: 3px solid #18d26e;
  border-top-color: #eee;
  -webkit-animation: animate-loading 1s linear infinite;
  animation: animate-loading 1s linear infinite;
}
.book-a-table .php-email-form input, .book-a-table .php-email-form textarea {
  border-radius: 0;
  box-shadow: none;
  font-size: 14px;
}
.book-a-table .php-email-form input {
  height: 44px;
}
.book-a-table .php-email-form textarea {
  padding: 10px 12px;
}
.book-a-table .php-email-form button[type=submit] {
  background: #ffb03b;
  border: 0;
  padding: 10px 24px;
  color: #fff;
  transition: 0.4s;
  border-radius: 50px;
}
.book-a-table .php-email-form button[type=submit]:hover {
  background: #ffa012;
}

/*--------------------------------------------------------------
# Gallery
--------------------------------------------------------------*/
.gallery {
  padding-bottom: 0;
}
.gallery .gallery-item {
  overflow: hidden;
  border-right: 3px solid #fff;
  border-bottom: 3px solid #fff;
}
.gallery .gallery-item img {
  transition: all ease-in-out 0.4s;
}
.gallery .gallery-item:hover img {
  transform: scale(1.1);
}

/*--------------------------------------------------------------
# Chefs
--------------------------------------------------------------*/
.chefs {
  background: url("../img/about-bg2.jpg") center center no-repeat;
  background-size: cover;
  padding: 60px 0;
  position: relative;
}
.chefs::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  background: rgb(255 255 255 / 62%);
  z-index: 9;
}
.chefs .container {
  position: relative;
  z-index: 10;
}
.chefs .member {
  text-align: center;
  margin-bottom: 80px;
  position: relative;
}
.chefs .member .pic {
  overflow: hidden;
}
.chefs .member .member-info {
  position: absolute;
  bottom: -119px;
  left: 20px;
  right: 20px;
  background: #fff;
  padding: 20px 0;
  color: #433f39;
  box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  transition: max-height 0.5s ease-in-out;
}
.chefs .member h4 {
  font-weight: 500;
  margin-bottom: 10px;
  font-size: 30px;
    color: #155c69;
  position: relative;
  padding-bottom: 10px;
  
}
.chefs .member h4::after {
  content: "";
  position: absolute;
  display: block;
  width: 50px;
  height: 1px;
  background: #ffcf88;
  bottom: 0;
  left: calc(50% - 25px);
}
.chefs .member span {
  font-style: italic;
  display: block;
  font-size: 13px;
}
.chefs .member .social {
  margin-top: 15px;
}
.chefs .member .social a {
  transition: color 0.3s;
  color: #7a7368;
}
.chefs .member .social a:hover {
  color: #ffb03b;
}
.chefs .member .social i {
  font-size: 16px;
  margin: 0 2px;
}
@media (max-width: 992px) {
  .chefs .member {
    margin-bottom: 110px;
  }
}
@media (min-width: 1024px) {
  .chefs {
    background-attachment: fixed;
  }
}


@-webkit-keyframes animate-loading {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
@keyframes animate-loading {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/
#footer {
  background:#639219;
  padding: 0 0 30px 0;
  color: #eee;
  font-size:16px;
}
#footer a{
  
  color: #fff;
  
} 
#footer .footer-top {
      background: linear-gradient(rgb(8 27 64), rgb(8 29 65));
  padding: 60px 0 30px 0;
}

#footer .footer-top .footer-info {
  margin-bottom: 30px;
}

#footer .footer-top .footer-info h3 {
  font-size: 34px;
  margin: 0 0 20px 0;
  padding: 2px 0 2px 10px;
  line-height: 1;
  font-weight: 700;
  letter-spacing: 3px;
  border-left: 4px solid #18d26e;
}

#footer .footer-top .footer-info p {
  font-size: 14px;
  line-height: 24px;
  margin-bottom: 0;
  color: #eee;
}

#footer .footer-top .social-links a {
  display: inline-block;
  background: #6d7a92;
  color: #eee;
  line-height: 1;
  margin-right: 4px;
  border-radius: 50%;
  width: 36px;
  height: 36px;
  transition: 0.3s;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

#footer .footer-top .social-links a i {
  line-height: 0;
  font-size: 16px;
}

#footer .footer-top .social-links a:hover {
  background: #333;
  color: #fff;
}

#footer .footer-top .title5 {
  font-size: 24px;
    font-weight: 400;
    color: #fff;
    text-transform: capitalize;
    position: relative;
    padding-bottom: 12px;      


}

#footer .footer-top .title5::before,
#footer .footer-top .title5::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  height: 2px;
}

#footer .footer-top .title5::before {
  right: 0;
  background: #165e6c;
}

#footer .footer-top .title5::after {
  background: #509e2f;
  width: 60px;
}

#footer .footer-top .footer-links {
  margin-bottom: 30px;
}

#footer .footer-top .footer-links ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

#footer .footer-top .footer-links ul i {
  padding-right: 8px;
  color: #ddd;
}

#footer .footer-top .footer-links ul li {
  border-bottom: 1px solid #333;
  padding: 10px 0;
}

#footer .footer-top .footer-links ul li:first-child {
  padding-top: 0;
}

#footer .footer-top .footer-links ul a {
  color: #eee;
}

#footer .footer-top .footer-links ul a:hover {
  color: #509e2f;
}

#footer .footer-top .footer-contact {
  margin-bottom: 30px;
}

#footer .footer-top .footer-contact p {
  line-height: 26px;
}

#footer .footer-top .footer-newsletter {
  margin-bottom: 30px;
}

#footer .footer-top .footer-newsletter input[type=email] {
  border: 0;
  padding: 6px 8px;
  width: 65%;
}

#footer .footer-top .footer-newsletter input[type=submit] {
  background: #18d26e;
  border: 0;
  width: 35%;
  padding: 6px 0;
  text-align: center;
  color: #fff;
  transition: 0.3s;
  cursor: pointer;
}

#footer .footer-top .footer-newsletter input[type=submit]:hover {
  background: #13a456;
}

#footer .copyright {
  text-align: center;
  padding-top: 30px;
}

#footer .credits {
  text-align: center;
  font-size: 15px;
  color: #ddd;
}

@media (min-width: 992px){
.col-lg-6 {
    flex: 0 0 auto;
    width: 50%;
    float: left;
}}

.image {
    border-radius: 300px 300px 300px 0px; border: 20px solid #d8f5aa;

}
.fst-italic {
    font-style: italic!important;
    color: #000;
}
.button {
  padding: 10px 25px;
    font-size: 19px;
    text-align: center;
    cursor: pointer;
    outline: none;
    color: #fff;
    background-color: #509e2f;
    border: none;
    border-radius: 15px;
    box-shadow: 0 7px #999;

}

.button:hover {background-color: #165e6c}

.button:active {
  background-color: #3e8e41;
  box-shadow: 0 5px #666;
  transform: translateY(4px);
}


/* Features Section - Home Page
------------------------------*/
.features .features-item {
  color: rgba(var(--default-color-rgb), 0.8);
}

.features .features-item+.features-item {
  margin-top: 100px;
}

@media (max-width: 768px) {
  .features .features-item+.features-item {
    margin-top: 40px;
  }
}

.features .features-item h3 {
  font-weight: 400;
    font-size: 35px;
    color: #165e6c;
}


.features .features-item .btn-get-started {
  background-color: #509e2f;
    color: #fff;
    padding: 8px 20px 8px 20px;
    border-radius: 4px;
    font-size: 18px;
}

.features .features-item .btn-get-started:hover {
  background-color: #165e6c;
}

.features .features-item ul {
  list-style: none;
  padding: 0;
}

.features .features-item ul li {
  padding-bottom: 10px;
  display: flex;
  align-items: flex-start;
}

.features .features-item ul li:last-child {
  padding-bottom: 0;
}

.features .features-item ul i {
  font-size: 20px;
  padding-right: 4px;
  color: var(--accent-color);
}

.features .features-item img {
  border: 6px solid var(--background-color);
  box-shadow: 0 15px 30px -10px rgb(22 93 106);
}

.features .features-item .features-img-bg {
  position: relative;
  min-height: 500px;
}

@media (max-width: 640px) {
  .features .features-item .features-img-bg {
    min-height: 300px;
  }
}

.features .features-item .features-img-bg img {
  /* position: absolute; */ 
    inset: 0;
    display: block;
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    border-radius: 100% 100% 100% 100%;

}

.features .features-item .image-stack {
  display: grid;
  position: relative;
  grid-template-columns: repeat(12, 1fr);
}

.features .features-item .image-stack .stack-back {
  grid-column: 4/-1;
  grid-row: 1;
  width: 100%;
  z-index: 1;
}

.features .features-item .image-stack .stack-front {
  grid-row: 1;
  grid-column: 1/span 8;
  margin-top: 20%;
  width: 100%;
  z-index: 2;
}

@-webkit-keyframes animate-loading {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
@keyframes animate-loading {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}


.evnt {
    background: #f7fff2;
	
}
.text-effect{
    color: #e84385;
        

    font-size: 100px;
    font-weight: 600;
    
    letter-spacing: 2px;
    animation: animate 1.2s infinite ease-in;
}
@keyframes animate{
    0%, 100%{ text-shadow: 3px 0 #fff, 10px 0 #ccc; }
    25%{ text-shadow: 0 3px #fff, 0 10px #ccc; }
    50%{ text-shadow: -3px 0 #fff, -10px 0 #ccc; }
    75%{ text-shadow: 0 -3px #fff, 0 -10px #ccc; }
}
@media only screen and (max-width: 990px){
    .text-effect{ font-size: 90px; }
}
@media only screen and (max-width: 767px){
    .text-effect{ font-size: 70px; }
}
@media only screen and (max-width: 576px){
    .text-effect{ font-size: 50px; }
}
@media only screen and (max-width: 479px){
    .text-effect{
        font-size: 40px;
        line-height: 50px;
    }
}
/*--------------------------------------------------------------
# Services
--------------------------------------------------------------*/
.services .icon-box {
  text-align: center;
  padding: 40px 20px;
  transition: all ease-in-out 0.3s;
  
}
.icon-box.br {
    border: 1px solid #ccc;
}
.services .icon-box .icon {
  margin: 0 auto;
  width: 64px;
  height: 64px;
  border-radius: 50px;
  /* border: 1px solid #009970;  */
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  transition: ease-in-out 0.3s;
  color: #009970;
}

.services .icon-box .icon i {
  font-size: 28px;
}

.services .icon-box .srvc {
  font-weight: 700;
  margin-bottom: 15px;
  font-size: 19px; color: #165e6c;
    transition: ease-in-out 0.3s;
}



.services .icon-box p {
  font-size: 15px;
    margin-bottom: 0;
    text-align: center;
}

.services .icon-box:hover {
  border-color: #fff;
  box-shadow: 0px 0 25px 0 rgba(0, 0, 0, 0.1);    background: #fff;

}

.services .icon-box:hover h4 a {
  color: #009970;
}

.services .icon-box:hover .icon {
  color: #fff;
 /*  background: #009970; */
}
.col-md-2.end {
    float: inline-end;
}
.srvc {
    font-weight: 700;
    margin-bottom: 15px;
    font-size: 19px;
    color: #165e6c;
    transition: ease-in-out 0.3s;

}
.content.hvr a {
    color: #509e2f;
}
.title2 {
    color: #509e2f;
    font-size: 22px;
}

.about .cont {
    background-color: #f6f9ff;
    padding: 40px;
}
.container-fluid.tp {
    margin-top: 140px;
}
.well {
    min-height: 20px;
    padding: 19px;
    margin-bottom: 20px;
    background-color: #165e6c;
    border: 1px solid #e3e3e3;
    border-radius: 4px;
    -webkit-box-shadow: inset 0 1px 1px rgb(0 0 0 / 5%);
    box-shadow: inset 0 1px 1px rgb(0 0 0 / 5%);
}
@media (min-width: 992px){
.col-lg-1, .col-lg-2, .col-lg-3, .col-lg-4, .col-lg-5, .col-lg-6, .col-lg-7, .col-lg-8, .col-lg-9, .col-lg-10, .col-lg-11, .col-lg-12 {
    float: left;
}}

.col-xs-1, .col-sm-1, .col-md-1, .col-lg-1, .col-xs-2, .col-sm-2, .col-md-2, .col-lg-2, .col-xs-3, .col-sm-3, .col-md-3, .col-lg-3, .col-xs-4, .col-sm-4, .col-md-4, .col-lg-4, .col-xs-5, .col-sm-5, .col-md-5, .col-lg-5, .col-xs-6, .col-sm-6, .col-md-6, .col-lg-6, .col-xs-7, .col-sm-7, .col-md-7, .col-lg-7, .col-xs-8, .col-sm-8, .col-md-8, .col-lg-8, .col-xs-9, .col-sm-9, .col-md-9, .col-lg-9, .col-xs-10, .col-sm-10, .col-md-10, .col-lg-10, .col-xs-11, .col-sm-11, .col-md-11, .col-lg-11, .col-xs-12, .col-sm-12, .col-md-12, .col-lg-12 {
    position: relative;
    min-height: 1px;
    padding-right: 15px;
    padding-left: 15px;
}
.p-d {
    padding-right: 0px;
    padding-left: 0px;
}
.gpdn {
    padding-top: 10px;
    color: #fff!important;
}
.btn-primary {
    
    background-color: #ffffff;
    border-color: #145966;
}
.btn-primary:hover {
    
    background-color: #ffffff;
    border-color: #145966;
}
.title4 {
    color: #165e6c;
    font-size: 22px;

}
.agileits_reservation {
    z-index: 999;
    background-image: linear-gradient(to bottom, #172c40 16%, #193041 68%);
    padding: 1em;
    /* -webkit-box-shadow: 0px 1px 8px 0px rgb(24 24 23 / 42%); */
    /* -moz-box-shadow: 0px 1px 8px 0px rgba(24, 24, 23, 0.42); */
    /* box-shadow: 0px 1px 8px 0px rgb(24 24 23 / 42%); */
    margin-top: 5px;
}
.agileits_reservation input[type="text"], select#adult, select#children, select#selrooms, .phone_email1 input[type="email"] {
    width: 100%;
    color: #1d6554;
    font-size: 15px;
    padding: 10px 22px 10px;
    outline: none;
    background: #ffffff;
    border: 1px solid #ccc;box-shadow: 0px 1px 8px 0px rgb(24 24 23 / 42%);
}
.date_btn input[type="submit"]:hover {
    background: #ffffff;
    color: #050505;
}
.date_btn input[type="submit"] {
    text-transform: uppercase;
    width: 100%;
    background: #509e2f;
    color: #fff;
    padding: 10px 0;
    border: none;
    font-size: 1em;
    outline: none;
    font-weight: 600;
    -webkit-transition: .5s all;
    -moz-transition: .5s all;
    transition: .5s all;
}
.date_btn input:hover[type="submit"] {
    background: #099;
 
}
.agileits_reservation em.bi {
    position: absolute;
    color: #555;
    font-size: 0.9em;
    margin-top: 14px;
    margin-left: 5px;
}
.container-fluid.content {
    padding: 50px 0;
    background-color: #f4f4f4;
}



.info-box {
    background: #fff;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    margin-bottom: 20px;
}

.title {
    font-size: 24px;
    font-weight: bold;
    color: #4CAF50;
    margin-bottom: 20px;
}

.form-bg {
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
}

.header {
    background-color: #4CAF50;
    color: #fff;
    padding: 15px;
    font-size: 24px;
    font-weight: bold;
    border-radius: 10px 10px 0 0;
}

.form-horizontal {
    background: #fff;
    padding: 30px;
    border-radius: 10px;
}

.heading {
    color: #4CAF50;
    font-weight: bold;
}

.form-group label {
    color: #333;
    font-weight: 600;
    margin-bottom: 5px;
}

.form-group input, .form-group textarea {
    border-radius: 5px;
    border: 1px solid #ddd;
    padding: 10px;
    width: 100%;
}

.btn-primary {
    background-color: #4CAF50;
    border: none;
    padding: 10px 20px;
    border-radius: 5px;
    font-size: 16px;
    font-weight: bold;
    width: 100%;
    transition: background-color 0.3s ease;
}

.btn-primary:hover {
    background-color: #45a049;
}

.map-responsive {
    overflow: hidden;
    padding-bottom: 56.25%;
    position: relative;
    height: 0;
    border-radius: 10px;
}

.map-responsive iframe {
    left: 0;
    top: 0;
    height: 100%;
    width: 100%;
    position: absolute;
    border-radius: 10px;
}

@media (max-width: 768px) {
    .form-bg {
        padding: 20px;
    }
    h1 {
        font-size: 28px;
    }
    .header {
        font-size: 20px;
    }
}
/* Adjusted margin-top to ensure no overlap with header */
.slider {
    position: relative;
    max-width: 100%;
    height: auto; /* Change from fixed height to auto */
    margin-top: 120px; /* Increase this value to ensure the header doesn't overlap */
    overflow: hidden;
    z-index: 1; /* Ensure slider is below header */
}

/* Adjusting the header's z-index to be above the slider */
header {
    position: fixed; /* Make sure header stays on top */
    top: 0;
    left: 0;
    width: 100%;
    z-index: 2; /* Higher z-index to ensure it stays above the slider */
}

/* Rest of your CSS remains the same */
.slides {
    position: relative;
    display: flex;
    flex-wrap: nowrap;
    width: 100%;
    transition: transform 1s ease-in-out;
}

.slide {
    min-width: 100%;
    opacity: 0;
    height: auto; /* Change from fixed height to auto */
    transition: opacity 0.5s ease-in-out, transform 0.5s ease-in-out;
    position: absolute;
    top: 0;
    left: 0;
    display: flex;
    align-items: center;
    justify-content: left;
    flex-direction: column; /* Ensure content stacks vertically on smaller screens */
}

.slide img {
    width: 100%;
    height: auto; /* Maintain aspect ratio */
    object-fit: cover;
    vertical-align: top;
}

.slide.active {
    opacity: 1;
    transform: scale(1);
    position: relative;
}

.slider-buttons {
    position: absolute;
    top: 50%;
    width: 100%;
    display: flex;
    justify-content: space-between;
    transform: translateY(-50%);
}

.slider-button {
    background-color: rgba(0, 0, 0, 0.5);
    border: none;
    color: white;
    font-size: 18px;
    padding: 10px;
    cursor: pointer;
    transition: background-color 0.3s;
    margin-top: 50px;
}

.slider-button:hover {
    background-color: rgba(0, 0, 0, 0.7);
}

.slider-indicators {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
}

.indicator {
    width: 12px;
    height: 12px;
    background-color: rgba(255, 255, 255, 0.5);
    border-radius: 50%;
    cursor: pointer;
    transition: background-color 0.3s;
    position: relative;
}

.indicator.active {
    background-color: #FF6F61;
}

.indicator:hover {
    background-color: #FF7F50;
}

.indicator:hover .preview-image {
    display: block;
}

.preview-image {
    display: none;
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    width: 85px;
    height: 58px;
    object-fit: cover;
    border-radius: 5px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
    z-index: 10;
}

.slide-title {
    position: absolute;
    bottom: 20px;
    left: 20px;
    color: white;
    background-color: rgba(0, 0, 0, 0.6);
    padding: 10px 20px;
    border-radius: 5px;
    font-size: 18px; /* Reduce font size for smaller screens */
    font-weight: 700;
    text-align: center;
}

/* Media queries for responsiveness */
@media (max-width: 768px) {
    .slide-title {
        font-size: 16px; /* Further reduce font size */
        padding: 8px 16px;
    }
    
    .slider-buttons {
        margin-top: -25px; /* Remove extra margin on smaller screens */
    }
    
    .slider-button {
        padding: 8px;
        font-size: 16px;
    }
}

@media (min-width: 820px) and (max-width: 1180px) {
    .agileits_reservation_grid {
      display: flex;
      flex-wrap: wrap;
      justify-content: space-between;
      padding: 20px;
      max-width: 720px;
      margin: 0 auto;
    }

    .agileits_reservation_grid .book_date {
      width: 48%;
      margin-bottom: 15px;
    }

    .agileits_reservation_grid .date_btn {
      width: 100%;
      margin-bottom: 0;
    }

    input.date, select {
      width: 100%;
      padding: 10px;
      font-size: 16px;
      margin-top: 5px;
    }

    input[type="submit"] {
      width: 100%;
      padding: 15px;
      font-size: 18px;
      background-color: #28a745;
      color: #fff;
      border: none;
      cursor: pointer;
      transition: background-color 0.3s;
    }

    input[type="submit"]:hover {
      background-color: #218838;
    }
  }
  
  
  
  
  
  
  
  
  
  
  
  .contact-card {
  background: #ffffff;
  border-left: 5px solid #007bff;
  transition: 0.3s ease;
}

.contact-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.15);
}

.contact-section .map-wrapper iframe {
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}







.location-card {
  border-left: 5px solid #007bff;
  transition: 0.3s ease;
}

.location-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.1);
}

.directions-form input.form-control {
  border-radius: 8px;
  padding: 10px;
}

.directions-form button.btn {
  font-weight: 600;
  padding: 10px;
}

.map-wrapper iframe {
  border-radius: 12px;
}








/* Bigger and bolder FAQ icons */
.accordion-button i {
  font-size: 1.5rem;
  margin-right: 12px;
  min-width: 30px;
}

/* Highlight phone numbers inside accordion answers */
.accordion-body a[href^="tel:"] {
  color: #007bff;
  text-decoration: underline;
  font-weight: 500;
}

.accordion-body a[href^="tel:"]:hover {
  color: #0056b3;
  text-decoration: none;
}

/* Optional animation */
.accordion-collapse {
  transition: all 0.3s ease-in-out;
}







.sitemap-section {
    background: #f9f9f9;
    padding: 60px 20px;
}

.sitemap-section h2 {
    font-size: 36px;
    font-weight: 700;
    color: #222;
    text-align: center;
    margin-bottom: 40px;
}

.sitemap-wrapper {
    background: linear-gradient(to right, #6bc5f8, #5cb4f3);
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    justify-content: center;
}

.sitemap-box {
    background: #fff;
    padding: 35px 50px;
    border-radius: 10px;
    width: 48%; /* 2 columns big */
    min-height: 320px;
}

.sitemap-box ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.sitemap-box ul li {
    margin-bottom: 22px;
}

.sitemap-box ul li a {
    font-size: 22px;
    font-weight: 600;
    color: #333;
    text-decoration: none;
    display: flex;
    align-items: center;
    padding: 12px 16px;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.sitemap-box ul li a:hover {
    background: #eaf3ff;
    color: #007bff;
}

.sitemap-box ul li a i {
    color: orange;
    font-size: 24px;
    margin-right: 12px;
}

/* Responsive */
@media (max-width: 768px) {
    .sitemap-box {
        width: 100%;
    }
}
