﻿

/*--------------------------------------------------------------
# General
--------------------------------------------------------------*/
body {
  font-family: "Poppins", sans-serif;
  color: #444444;
}

a {
  text-decoration: none;
  color:#031760;
}

a:hover {
  color:#031760;
  text-decoration: none;
}
section#topbar a {
    color: white;
}

footer#footer a {
    color: white;
}
.about .content p.bold {
    font-weight: 600;
    color: #eb8f34;
}



h1, h2, h3, h4, h5, h6 {
      font-family: "Philosopher", sans-serif;

}
@media (min-width: 1200px){
.h2{font-family: "Philosopher", sans-serif;
    font-size: 24px;
    font-weight: 500;
    color: #00145f;
}

.h3, h3 {
    font-size: 24px;
    font-weight: 500;
    color: #f68303;
}

}
/*--------------------------------------------------------------
# Back to top button
--------------------------------------------------------------*/
.back-to-top {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  right: 15px;
  bottom: 15px;
  z-index: 996;
  background: #ff5f03;
  width: 40px;
  height: 40px;
  border-radius: 50px;
  transition: all 0.4s;    color: #fff;

}
.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:#00145f;
}
#topbar.topbar-scrolled {
  top: -50px;
}
#topbar em {
  color: #0077bf;
  line-height: 0;
}
#topbar em span {
  color: #fff;
  font-style: normal;
  padding-left: 5px;
}

/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/
#header {
  top: 50px;
  height: 70px;
  z-index: 997;
  transition: all 0.5s;
  padding: 10px 0;
  background: rgba(26, 24, 22, 0.85);
}
#header.header-transparent {
  background:#fff;
}
#header.header-scrolled {
  top: 0;
  background: rgb(255 255 255);
}
#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: 10px;
    margin: 0;
    margin-top: -33px;
    z-index: 1000;
    position: absolute;
    max-height: 115px;
    background: #fff;

}

/*--------------------------------------------------------------
# Book a table button Menu
--------------------------------------------------------------*/
.book-a-table-btn {
  background:linear-gradient(to right, #0077bf, #00145f);
  color: #fff;
  border-radius: 3px;
  margin: 0 0 0 20px;
  padding: 10px 25px;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 1px;
  transition: 0.3s;
  white-space: nowrap;
}
.book-a-table-btn:hover {
  background:linear-gradient(to right, #00145f, #0077bf);
  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: 15px;
  font-weight: 500;
  color: #000;
  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:#ff5f03;
    font-weight: 600;
}
.navbar .dropdown ul {
  display: block;
  position: absolute;
  left: 24px;
  top: calc(100% + 30px);
  margin: 0;
  padding: 10px 0;
  z-index: 99;
  opacity: 0;
  visibility: hidden;
  background: #fff;
  box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
  transition: 0.3s;
  border-radius: 4px;
}
.navbar .dropdown ul li {
  min-width: 200px;
}
.navbar .dropdown ul a {
  padding: 10px 20px;
  font-size: 14px;
  font-weight: 400;
  color: #433f39;
}
.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: #ffb03b;
}
.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:#005f73;
  font-size: 28px;
  cursor: pointer;
  display: none;
  line-height: 0;
  transition: 0.5s;
}

@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: 55px;
  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: rgba(12, 11, 10, 0.5);
  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: 0;
  left: 0;
  right: 0;
}
#hero .carousel-content {
  text-align: center;
}
#hero h2 {
  color: #fff;
  margin-bottom: 30px;
  font-size: 48px;
  font-weight: 700;
}
#hero h2 span {
  color: #ffb03b;
}
#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 #ffb03b;
}
#hero .btn-menu:hover, #hero .btn-book:hover {
  background: #ffb03b;
  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%;
  }
}

/*--------------------------------------------------------------
# Sections General
--------------------------------------------------------------*/
section {
  padding:40px 0;
}

.section-bg {
  background-color: white;
}

.section-title {
  text-align: center;
  padding-bottom: 30px;
}
.title-2 {
    margin: 15px 0 0 0;
    font-family: "Philosopher", sans-serif;
    font-size: 30px;
    font-weight: 500;
    color: #ebe8a1;
}
.section-title .title-2 span {
  color: #a3c908;
}
.section-title p {
  margin: 15px auto 0 auto;
  font-weight: 600;/* background: #026453; */
    color: #026453;
    padding: 20px;font-size: 16px;

}
@media (min-width: 1024px) {
  .section-title p {
    width: 71%;
  }
}

/*--------------------------------------------------------------
# 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: #fffaf3;
}
.about .content {
  padding: 0 80px;padding-top: 75px;    text-align: justify;

}
.about .content h1 {
  font-weight: 400;
  font-size: 85px;
    color: #0077bf;
    text-align: left;
}
.about .content h4 {
  font-size: 20px;
  font-weight: 700;
  margin-top: 5px;
}
.about .content p {
  font-size: 17px;
  color:#286664;
}
.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;
}
.about .content ul em {
  font-size: 20px;
  color: #ff5f03;
  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; */
    margin-top: 115px;

}
.about .play-btn {
  width: 94px;
  height: 94px;
  background: radial-gradient(#ff0018 50%, rgba(255, 176, 59, 0.4) 52%);
  border-radius: 50%;
  display: block;
  position: absolute;
  left: calc(50% - 47px);
  top: calc(50% - 47px);
  overflow: hidden;
}
.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);
}
.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;
  }
}


/*--------------------------------------------------------------
# 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;
  font-family: Arial, "Helvetica Neue", Helvetica, sans-serif;
}
.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;
  font-family: "Comic Neue", sans-serif;
  color: #948c81;
}

/*--------------------------------------------------------------
# Specials
--------------------------------------------------------------*/
.specials {
  overflow: hidden;background: #e5fdae;
}
.specials .nav-tabs {
  border: 0;
}
.specials .nav-link {
  border: 0;
  padding: 12px 15px 12px 0;
  transition: 0.3s;
  color: #433f39;
  border-radius: 0;
  border-right: 2px solid #e8e7e4;
  font-weight: 600;
  font-size: 15px;
}
.specials .nav-link:hover {
  color: #ffb03b;
}
.specials .nav-link.active {
 color: #026453;
    border-color: #a5c524;
}
.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: 600;
  margin-bottom: 20px;
  color: #433f39;
}
.specials .details p {
  color: #777777;
}
.specials .details p:last-child {
  margin-bottom: 0;
}
a.nav-link.active.show {
    background: #e3f791;
}
@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.webp) center center no-repeat;
  background-size: cover;
  position: relative;
}
.events::before {
  content: "";
  background-color: rgb(20 21 21 / 80%);
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
}

.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 h3 {
  font-weight: 600;
  font-size: 26px;
  color: #ffb03b;
}
.events .event-item .price {
  font-size: 26px;
  font-family: "Poppins", sans-serif;
  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: #ffb03b;
}

/*--------------------------------------------------------------
# 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
--------------------------------------------------------------*/

/*--------------------------------------------------------------
# Testimonials
--------------------------------------------------------------*/


/*--------------------------------------------------------------
# Contact
--------------------------------------------------------------*/
.contact .info-wrap {
  box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
  padding: 30px;
}
.contact .info {
  background: #fff;
}
.contact .info i {
  font-size: 20px;
  color: #ffb03b;
  float: left;
  width: 44px;
  height: 44px;
  background: #fff6e8;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50px;
  transition: all 0.3s ease-in-out;
}
.contact .info h4 {
  padding: 0 0 0 60px;
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 5px;
  color: #433f39;
  font-family: "Poppins", sans-serif;
}
.contact .info p {
  padding: 0 0 0 60px;
  margin-bottom: 0;
  font-size: 14px;
  color: #7a7368;
}
.contact .info:hover i {
  background: #ffb03b;
  color: #fff;
}
.contact .php-email-form {
  width: 100%;
  box-shadow: 0 0 24px 0 rgba(0, 0, 0, 0.12);
  padding: 30px;
  background: #fff;
}
.contact .php-email-form .form-group {
  padding-bottom: 8px;
}
.contact .php-email-form .error-message {
  display: none;
  color: #fff;
  background: #ed3c0d;
  text-align: center;
  padding: 15px;
  font-weight: 600;
}
.contact .php-email-form .sent-message {
  display: none;
  color: #fff;
  background: #18d26e;
  text-align: center;
  padding: 15px;
  font-weight: 600;
}
.contact .php-email-form .loading {
  display: none;
  background: #fff;
  text-align: center;
  padding: 15px;
}
.contact .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;
}
.contact .php-email-form input, .contact .php-email-form textarea {
  border-radius: 0;
  box-shadow: none;
  font-size: 14px;
}
.contact .php-email-form input {
  height: 44px;
}
.contact .php-email-form textarea {
  padding: 10px 12px;
}
.contact .php-email-form button[type=submit] {
  background: #ffb03b;
  border: 0;
  padding: 10px 24px;
  color: #fff;
  transition: 0.4s;
  border-radius: 50px;
}
.contact .php-email-form button[type=submit]:hover {
  background: #ffa012;
}
@-webkit-keyframes animate-loading {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
@keyframes animate-loading {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/

@media (min-width: 992px){
.col-md-1, .col-md-2, .col-md-3, .col-md-4, .col-md-5, .col-md-6, .col-md-7, .col-md-8, .col-md-9, .col-md-10, .col-md-11, .col-md-12 {
    float: left;
}}
@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;
}}

@media (min-width: 992px){
.col-sm-1, .col-sm-2, .col-sm-3, .col-sm-4, .col-sm-5, .col-sm-6, .col-sm-7, .col-sm-8, .col-sm-9, .col-sm-10, .col-sm-11, .col-sm-12 {
    float: left;
}}

#footer ul {
    list-style: none;
    padding: 0;
}
#footer {
  background: linear-gradient(to bottom, #00145f -32%, #00145f 100%);
  color: #fff;
  font-size: 18px;font-family: "Cormorant Infant", serif;
      font-weight: 600;
  padding: 30px 0;
}
.bullet li{display:block;font-size: 15px;line-height: 2em;}
.bullet li:before{content:"\f0da";font-family:'FontAwesome';font-size:12px;float:left;margin-top:1px;margin-left:-15px;color:#999}
#footer h3 {
  font-size: 36px;
  font-weight: 700;
  color: #a5c524;
  position: relative;
  padding: 0;
  /* margin: 0 0 15px 0; */
}

#footer .social-links {
  margin: 0 0 40px 0;
}
#footer .social-links a {
  font-size: 18px;
  display: inline-block;
  background:#ff5f03;
  color: #fff;
  line-height: 1;
  padding: 8px 0;
  margin-right: 4px;
  border-radius: 50%;
  text-align: center;
  width: 36px;
  height: 36px;
  transition: 0.3s;
}
#footer .social-links a:hover {
  background: #fff;color:#0077bf;
}
#footer .copyright {
  margin: 0 0 5px 0;text-align: center;
    
    padding: 15px;color: #ffffff;
}
}
#footer .credits {
  font-size: 13px;
}
..footer {
    background: #333;
    padding: 2em 0;
    font-weight: 500;
}
@media only screen and (max-width: 321px){
img.img-size {
    width: 20%;
    margin-top: -6%;
}

}
@media only screen and (max-width: 480px){
img.img-size {
    width: 20%;
    margin-top: -6%;
}
#header .logo img {
    padding: 0;
    margin: 0;
    margin-top: -33px;
    z-index: 1000;
    position: absolute;
}
.about .content h1 {
    font-weight: 400;
    font-size: 47px;
    color: #0077bf;
    text-align: left;
}
}
a.cgs2 {
    font-size: 18px;
    color: #eb8b30;
}

.agileits_reservation {
    z-index: 999;
    background:linear-gradient(to right, #00145f, #ffb90040);
    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: -11px;
}
.span1_of_1 {
    float: left;
    list-style: none;
    /* width: 30.9%; */
    padding-top: 10px;
}
label {
    display: inline-block;
    max-width: 100%;
    margin-bottom: 5px;
    font-weight: bold;
}
.agileits_reservation span.glyphicon {
    position: absolute;
    color: #555;
    font-size: 0.9em;
    top: 1.5em;
    left: 1.5em;
}
.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  30px 10px;
    outline: none;
    background: #ffffff;
    border: 1px solid #ccc;
}
.date_btn input[type="submit"]:hover {
    background: #ff5f03;
    color: #fff;
}
.date_btn input[type="submit"] {
    text-transform: capitalize;
    width: 100%;
    background: #ff5f03;
    color: #ffffff;
    padding: 12px 0;
    border: none;
    font-size: 1em;
    outline: none;
    font-weight: 600;
   
    letter-spacing: 4px;
    -webkit-transition: .5s all;
    -moz-transition: .5s all;
    transition: .5s all;
}
.date_btn {
    margin:0px 0 0;
}
.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;
}

.agileits_reservation em.bi {
    position: absolute;
    color: #555;
    font-size: 0.9em;
    top: 1.5em;
    left: 1.5em;
}
@media (max-width: 480px) {

.date_btn input[type="submit"] {
    text-transform: capitalize;
    width: 100%;
    background: #1d6554;
    color: #ffffff;
    padding: 12px 46px;
    border: none;
    font-size: 1em;
    outline: none;
    font-weight: 600;
    letter-spacing: 4px;
    -webkit-transition: .5s all;
    -moz-transition: .5s all;
    transition: .5s all;
}
.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 70px 10px;
    outline: none;
    background: #ffffff;
    border: 1px solid #ccc;
}
}
ul {
    list-style: none;
}
.well-sm {
    padding: 9px;
    border-radius: 3px;
}
.well {
    min-height: 20px;
    padding: 19px;
    margin-bottom: 20px;
    background-color:#1d6554;
    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%);
}
.gpdn{ padding-top:10px; color:#fff;}
.padd{ padding:10px;}
.h3, h3 {
    font-size: 22px;
}
.res{font-size:37px;
    color: #ffffff;
    font-family: 'Courgette', cursive;
    font-weight: 600;
    letter-spacing: 1px;}
	
	section#why-us {
    background: #026453;color: #fff;
}
h2.title-2 {
    color: #fff;
}
p.attraction-area {
    color: #fff;
}

p.amepara {
    color: #fff;
}
div#map {
    margin-top: 198px;
    margin-bottom: -121px;
}
.btn-primary {
    color: #fff;
    background-color: #a5c524;
    border-color: #1d6554;
}
.videoWrapper {
	position:relative;
	padding-bottom:54.25%;
	padding-top:25px;
	height:0
}
.videoWrapper iframe {
	position:absolute;
	top:0;
	left:0;
	width:100%;
	height:100%
}
.divider {
   border-left: 1px solid #94b4b4;
    
}
.title2 a {
    font-family: "Philosopher", sans-serif;
    font-size: 25px;
}.title2 {
    font-family: "Philosopher", sans-serif;
    font-size: 25px;
    font-weight: 600;
   
}
section#about-10 {
    background: #ffb90017;
}
 .about-10 .info-block .tag-label {
  display: inline-block;
  background-color: color-mix(in srgb, var(--accent-color), transparent 90%);
  color: var(--accent-color);
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  padding: 0px;
  border-radius: 4px;
  margin-bottom: 1.25rem;
}
.about-10 .info-block h2 {
  font-size: 2.125rem;
  font-weight: 800;
  line-height: 1.3;
  margin-bottom: 1.25rem;
  position: relative;
  padding-bottom: 1.25rem;
}
.about-10 .info-block h2::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 60px;
  height: 3px;
  background-color: var(--accent-color);
  border-radius: 2px;
}
@media (max-width: 576px) {
  .about-10 .info-block h2 {
    font-size: 1.75rem;
  }
}
.about-10 .info-block p {
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  margin-bottom: 1.5rem;
  line-height: 1.8;
}
.about-10 .highlight-points {
  margin-bottom: 2rem;
}
.about-10 .highlight-points .point-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 0.75rem 0;
  border-bottom: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
  transition: padding-left 0.3s ease;
}
.about-10 .highlight-points .point-item:last-child {
  border-bottom: none;
}
.about-10 .highlight-points .point-item:hover {
  padding-left: 0.5rem;
}
.about-10 .highlight-points .point-item:hover .point-number {
  color: var(--accent-color);
}
.about-10 .highlight-points .point-item .point-number {
  font-size: 1.5rem;
  font-weight: 800;
  color: color-mix(in srgb, var(--accent-color), transparent 60%);
  font-family: var(--heading-font);
  line-height: 1;
  min-width: 40px;
  transition: color 0.3s ease;
}
.about-10 .highlight-points .point-item .point-text h5 {
  font-size: 0.95rem;
  font-weight: 600;
  margin: 0;
  line-height: 1.5;
}
.about-10 .action-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 600;
  font-size: 1rem;
  color: var(--accent-color);
  border: 2px solid var(--accent-color);
  padding: 0.65rem 2rem;
  border-radius: 4px;
  transition: all 0.3s ease;
}
.about-10 .action-link i {
  transition: transform 0.3s ease;
}
.about-10 .action-link:hover {
  background-color: var(--accent-color);
  color: var(--contrast-color);
}
.about-10 .action-link:hover i {
  transform: translateX(4px);
}
.about-10 .gallery-grid .gallery-item {
  overflow: hidden;
  border-radius: 10px;
}
.about-10 .gallery-grid .gallery-item.tall {
  height: 100%;
}
.about-10 .gallery-grid .gallery-item.tall img {
  height: 100%;
  object-fit: cover;
}
.about-10 .gallery-grid .gallery-item img {
  width: 100%;
  border-radius: 10px;
  transition: transform 0.5s ease;
}
.about-10 .gallery-grid .gallery-item:hover img {
  transform: scale(1.05);
}
.about-10 .gallery-grid .experience-badge {
  background-color: #ff5f03;
    color: #fff;
  border-radius: 10px;
  padding: 1.5rem;
  text-align: center;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.about-10 .gallery-grid .experience-badge i {
  font-size: 2rem;
  margin-bottom: 0.5rem;
}
.about-10 .gallery-grid .experience-badge h4 {
  font-size: 2.25rem;
  font-weight: 800;
  margin: 0;
  color: var(--contrast-color);
}
.about-10 .gallery-grid .experience-badge span {
  font-size: 0.85rem;
  font-weight: 500;
  opacity: 0.9;
}
.about-10 .counter-box {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  background-color: var(--surface-color);
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
  border-radius: 10px;
  padding: 1.5rem;
  transition: all 0.3s ease;
}
.about-10 .counter-box:hover {
  box-shadow: 0 10px 30px color-mix(in srgb, var(--default-color), transparent 90%);
  transform: translateY(-3px);
}
.about-10 .counter-box i {
  font-size: 1.5rem;
  color: var(--accent-color);
  background-color: color-mix(in srgb, var(--accent-color), transparent 90%);
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  flex-shrink: 0;
}
.about-10 .counter-box h3 {
  font-size: 1.75rem;
  font-weight: 800;
  margin: 0;
  color: var(--accent-color);
}
.about-10 .counter-box p {
  margin: 0;
  font-size: 0.85rem;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  font-weight: 500;
} 
.section-title h2 {
  font-size: 37px;
    font-weight: 600;
  margin-bottom: 20px;
  padding-bottom: 20px;
  position: relative;
}
.section-title h2:before {
  content: "";
  position: absolute;
  display: block;
  width: 160px;
  height: 1px;
  background: color-mix(in srgb, #0077bf, transparent 60%);
  left: 0;
  right: 0;
  bottom: 1px;
  margin: auto;
}
.section-title h2::after {
  content: "";
  position: absolute;
  display: block;
  width: 60px;
  height: 3px;
  background: #ff5f03;
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
}
.container, .container-fluid, .container-lg, .container-md, .container-sm, .container-xl, .container-xxl {
    --bs-gutter-x: 1.5rem;
    --bs-gutter-y: 0;
    width: 100%;
    padding-right: calc(var(--bs-gutter-x) * .5);
    padding-left: calc(var(--bs-gutter-x) * .5);
    margin-right: auto;
    margin-left: auto;
}
.testimonials-section{
  position:relative;
  padding:45px 0;
  background:url('../img/review.webp') center center/cover no-repeat;
  overflow:hidden;
}

.testimonials-section .overlay{
  position:absolute;
  inset:0;
  background:rgba(0,0,0,0.55);
}

.testimonials-section .container{
  position:relative;
  z-index:2;
  max-width:1140px;
  margin:0 auto;
  padding:0 20px;
}

.section-title{
  text-align:center;
  color:#fff;
 
}

.section-title span{
  display:inline-block;
  font-size:14px;
  text-transform:uppercase;
  letter-spacing:2px;
  margin-bottom:8px;
  opacity:.9;
}

.section-title h2{
  font-size:38px;
  margin:0 0 12px;
  font-weight:700;
}

.section-title p{
  font-size:16px;
  max-width:650px;
  margin:0 auto;
  opacity:.9;
  line-height:1.7;
}

.testimonial-card{
  background:rgba(255,255,255,0.96);
  border-radius:18px;
  padding:40px 35px;
  text-align:center;
  max-width:780px;
  margin:0 auto 30px;
  box-shadow:0 12px 35px rgba(0,0,0,0.18);
  transition:all .3s ease;
}

.testimonial-card p{
  font-size:18px;
  line-height:1.9;
  color:#333;
  margin:0 0 20px;
  font-style:italic;
}

.testimonial-card h4{
  margin:0;
  font-size:18px;
  color:#111;
  font-weight:700;
}

.testimonial-slider .swiper-pagination-bullet{
  background:#fff;
  opacity:.7;
}

.testimonial-slider .swiper-pagination-bullet-active{
  opacity:1;
}

@media (max-width:768px){
  .testimonials-section{
    padding:70px 0;
  }

  .section-title h2{
    font-size:28px;
  }

  .testimonial-card{
    padding:28px 22px;
  }

  .testimonial-card p{
    font-size:16px;
    line-height:1.8;
  }
}
.tittle2 {
    font-family: 'Philosopher';
    color: #ffc107;
}
 .features .feature-item {
  padding: 48px 32px;
  text-align: center;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 92%);
  border-radius: 2px;
  transition: border-color 0.3s ease;
}
.features .feature-item:hover {
  border-color: color-mix(in srgb, var(--default-color), transparent 80%);
}
.features .feature-item:hover i {
  color: var(--accent-color);
}
.features .feature-item i {
  font-size: 1.75rem;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  margin-bottom: 1.5rem;
  display: inline-block;
  transition: color 0.3s ease;
}
.feature-item h5 {
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 1rem;
  color: var(--heading-color);
}
.feature-item p {
  font-size: 0.95rem;
  color: color-mix(in srgb, var(--default-color), transparent 35%);
  line-height: 1.7;
  margin-bottom: 0;
}
.highlight-block {
  padding: 32px 40px;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
  border-radius: 2px;
  max-width: 1000px;
    transition: border-color 0.3s ease;
    
    background: background: #ffb9001c;;
}
.highlight-block:hover {
  border-color: color-mix(in srgb, var(--default-color), transparent 80%);
}
.highlight-block a {
    color: #fff;
}
@media (max-width: 768px) {
.highlight-block {
    text-align: center;
  }
.highlight-block .row {
    flex-direction: column;
    gap: 1rem;
  }
}
.highlight-block em {
  font-size: 1.5rem;
  color: #fff;
}

 .cta-link {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.95rem;
  font-weight: 600;background: linear-gradient(to right, #ff5f03, #ffb900);
  color: #fff;
  border: 1px solid var(--accent-color);
  padding: 0.6rem 1.5rem;
  border-radius: 2px;
  transition: background-color 0.3s ease, color 0.3s ease;
  white-space: nowrap;
}
 .cta-link:hover {
  background-color: #fff;
  color: #fff;
} 

 .service-details .swiper-wrapper {
  height: auto !important;
}
.service-details .service-sidebar {
  position: sticky;
  top: 100px;
}
.service-details .service-sidebar .service-overview {
  background: #f9f5f5;
    border-radius: 8px;
    overflow: hidden;
    border: 1px solid color-mix(in srgb, #006ab1, #006ab136 90%);
  margin-bottom: 24px;
}
.service-details .service-sidebar .service-overview .overview-header {
  background: #006ab1;
    color: #fff;
  padding: 20px 24px;
  display: flex;
  align-items: center;
  gap: 12px;
}
.service-details .service-sidebar .service-overview .overview-header i {
  font-size: 24px;
}
.service-details .service-sidebar .service-overview .overview-header h3 {
  color: var(--contrast-color);
  margin: 0;
  font-size: 20px;
  font-weight: 600;
}
.service-details .service-sidebar .service-overview .overview-content {
  padding: 32px;
}
.service-details .service-sidebar .service-overview .overview-content h2 {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 16px;
  color: var(--heading-color);
}
.service-details .service-sidebar .service-overview .overview-content p {
  margin-bottom: 24px;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  font-size: 15px;
  line-height: 1.7;
}
.service-details .service-sidebar .service-overview .overview-content .cta-button .btn-get-started {
      display: inline-block;
    background: #ffb900;
    color: #006ab1;
  padding: 12px 24px;
  border-radius: 4px;
  font-weight: 600;
  transition: 0.3s;
  text-align: center;
  width: 100%;
}
.service-details .service-sidebar .service-overview .overview-content .cta-button .btn-get-started:hover {
  background: color-mix(in srgb, var(--accent-color), black 10%);
}
.service-details .service-sidebar .key-benefits {
  background: var(--surface-color);
  border-radius: 8px;
  padding: 32px;
  margin-bottom: 24px;
  border: 1px solid color-mix(in srgb, #006ab1, #006ab136 90%);
}
.service-details .service-sidebar .key-benefits h4 {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 20px;
  position: relative;
  padding-bottom: 16px;
}
.service-details .service-sidebar .key-benefits h4:after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 48px;
  height: 3px;
  background:#ff5f03;
}
.service-details .service-sidebar .key-benefits ul {
  padding-left: 0;
  list-style: none;
  margin: 0;
}
.service-details .service-sidebar .key-benefits ul li {
  display: flex;
  align-items: center;
  margin-bottom: 16px;
  color: color-mix(in srgb, #3b3934, transparent 15%);
  font-size: 15px;
}
.service-details .service-sidebar .key-benefits ul li:last-child {
  margin-bottom: 0;
}
.service-details .service-sidebar .key-benefits ul li i {
  color: #ffb900;
  font-size: 18px;
  margin-right: 12px;
  flex-shrink: 0;
}
.service-details .service-sidebar .contact-card {
  background: var(--surface-color);
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid color-mix(in srgb, #006ab1, #006ab136 90%);
}
.service-details .service-sidebar .contact-card .contact-header {
  background: #006ab1;
    color: #fff;
  padding: 20px 24px;
  display: flex;
  align-items: center;
  gap: 12px;
}
.service-details .service-sidebar .contact-card .contact-header i {
  font-size: 24px;
}
.service-details .service-sidebar .contact-card .contact-header h4 {
  color: var(--contrast-color);
  margin: 0;
  font-size: 20px;
  font-weight: 600;
}
.service-details .service-sidebar .contact-card .contact-info {
  padding: 32px;
}
.service-details .service-sidebar .contact-card .contact-info .info-row {
  display: flex;
  align-items: center;
  margin-bottom: 20px;
}
.service-details .service-sidebar .contact-card .contact-info .info-row:last-child {
  margin-bottom: 0;
}
.service-details .service-sidebar .contact-card .contact-info .info-row i {
  font-size: 20px;
  color: #002671;
  margin-right: 16px;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  background:color-mix(in srgb, #000, transparent 90%);
  border-radius: 50%;
  flex-shrink: 0;
}
.service-details .service-sidebar .contact-card .contact-info .info-row div span {
  display: block;
  font-size: 13px;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  margin-bottom: 4px;
}
.service-details .service-sidebar .contact-card .contact-info .info-row div p {
  margin: 0;
  font-weight: 600;
  color: var(--heading-color);
  font-size: 15px;
}
.service-details .service-content .image-gallery {
  margin-bottom: 40px;
}
.service-details .service-content .image-gallery .service-details-slider {
  border-radius: 8px;
  overflow: hidden;
}
.service-details .service-content .image-gallery .service-details-slider img {
  width: 100%;
  aspect-ratio: 16/9;
  object-fit: cover;
}
.service-details .service-content .image-gallery .service-details-slider .swiper-pagination {
  bottom: 20px;
}
.service-details .service-content .image-gallery .service-details-slider .swiper-pagination .swiper-pagination-bullet {
  width: 10px;
  height: 10px;
  background: #fff;
;
  opacity: 0.7;
  transition: all 0.3s ease;
}
.service-details .service-content .image-gallery .service-details-slider .swiper-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
  opacity: 1;
  width: 24px;
  border-radius: 5px;
}
.service-details .service-content .image-gallery .service-details-slider .swiper-button-next,
.service-details .service-content .image-gallery .service-details-slider .swiper-button-prev {
  width: 44px;
  height: 44px;
  background: #fff;
  border-radius: 50%;
  opacity: 0;
  transition: 0.3s;
}
.service-details .service-content .image-gallery .service-details-slider .swiper-button-next::after,
.service-details .service-content .image-gallery .service-details-slider .swiper-button-prev::after {
  font-size: 18px;
  color: var(--accent-color);
}
.service-details .service-content .image-gallery .service-details-slider .swiper-button-next:hover,
.service-details .service-content .image-gallery .service-details-slider .swiper-button-prev:hover {
  opacity: 1;
}
.service-details .service-content .image-gallery .service-details-slider:hover .swiper-button-next,
.service-details .service-content .image-gallery .service-details-slider:hover .swiper-button-prev {
  opacity: 0.8;
}
.service-details .service-content .section-header {
  margin-bottom: 24px;
}
.service-details .service-content .section-header h3 {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 12px; color:#0c0c0c;
}
.service-details .service-content .section-header .divider {
  width: 48px;
  height: 3px;
  background:#ff5f03;
}
.service-details .service-content .details-content {
  margin-bottom: 40px;
}
.service-details .service-content .details-content p {
  margin-bottom: 16px;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  line-height: 1.8;
  font-size: 15px;
}
.service-details .service-content .details-content p:last-child {
  margin-bottom: 0;
}
.service-details .service-content .service-features {
  margin-bottom: 40px;
}
.service-details .service-content .service-features .feature-card {
  background: #ded6d633;
    border-radius: 8px;
    padding: 24px;
    height: 100%;
    border: 1px solid
 color-mix(in srgb, #006ab1, #006ab136 90%);
  transition: all 0.3s ease;
}
.service-details .service-content .service-features .feature-card:hover {
  border-color: var(--accent-color);
}
.service-details .service-content .service-features .feature-card:hover .icon-wrapper {
  background: var(--accent-color);
}
.service-details .service-content .service-features .feature-card:hover .icon-wrapper i {
  color: var(--contrast-color);
}
.service-details .service-content .service-features .feature-card .icon-wrapper {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: color-mix(in srgb, var(--accent-color), transparent 90%);
  border-radius: 8px;
  margin-bottom: 16px;
  transition: 0.3s;
}
.service-details .service-content .service-features .feature-card .icon-wrapper i {
  font-size: 24px;
  color: var(--accent-color);
  transition: 0.3s;
}
.service-details .service-content .service-features .feature-card h4 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 8px;
}
.service-details .service-content .service-features .feature-card p {
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  margin-bottom: 0;
  font-size: 14px;
  line-height: 1.6;
}
.service-details .service-content .implementation-steps .step-container {
  position: relative;
}
.service-details .service-content .implementation-steps .step-container:before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 19px;
  width: 2px;
  background: color-mix(in srgb, #ffb900, #ffc1075e 80%);
}
.service-details .service-content .implementation-steps .step-container .step {
  display: flex;
  margin-bottom: 32px;
  position: relative;
}
.service-details .service-content .implementation-steps .step-container .step:last-child {
  margin-bottom: 0;
}
.service-details .service-content .implementation-steps .step-container .step .step-number {
  width: 40px;
  height: 40px;
  min-width: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
      background: #00145f;
    color: #fff;
  font-weight: 700;
  border-radius: 50%;
  margin-right: 20px;
  z-index: 2;
  font-size: 14px;
}
.service-details .service-content .implementation-steps .step-container .step .step-content {
  flex: 1;
}
.service-details .service-content .implementation-steps .step-container .step .step-content h4 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 8px;    color: #ff5f03;

}
.service-details .service-content .implementation-steps .step-container .step .step-content p {
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  margin-bottom: 0;
  font-size: 15px;
  line-height: 1.7;
}
@media (max-width: 991px) {
  .service-details .service-sidebar {
    position: relative;
    top: 0;
    margin-bottom: 40px;
  }
}
@media (max-width: 575px) {
  .service-details .service-sidebar .service-overview .overview-content,
  .service-details .service-sidebar .key-benefits,
  .service-details .service-sidebar .contact-card .contact-info {
    padding: 24px;
  }
  .service-details .service-content .section-header h3 {
    font-size: 20px;
  }
} 
.post-slider {
  padding: 80px 0;
  background: linear-gradient(135deg, #ccc, color-mix(in srgb, var(--accent-color), transparent 95%) 100%);
}
.post-slider .blog-posts-slider .swiper-wrapper {
  height: auto !important;
}
.post-slider .blog-posts-slider .swiper-pagination {
  position: relative;
  margin-top: 50px;
}
.post-slider .blog-posts-slider .swiper-pagination .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  background: color-mix(in srgb, #000, transparent 70%);
  opacity: 1;
  transition: all 0.3s ease;
}
.post-slider .blog-posts-slider .swiper-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
  background: #ff5f03;
  transform: scale(1.2);
}
.post-slider .blog-card {
  background: var(--surface-color);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 40px color-mix(in srgb, var(--default-color), transparent 90%);
  transition: all 0.4s ease;
  height: 100%;
  display: flex;
  flex-direction: column;
}
.post-slider .blog-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 60px color-mix(in srgb, var(--default-color), transparent 85%);
}
.post-slider .blog-image {
  position: relative;
  height: 280px;
  overflow: hidden;
}
.post-slider .blog-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}
.post-slider .blog-image .category-badge {
  position: absolute;
  top: 20px;
  left: 20px;
  background: #ffb900;
  color: #fff;
  padding: 8px 16px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  z-index: 2;
}
.post-slider .blog-image:hover img {
  transform: scale(1.05);
}
.post-slider .blog-content {
  padding: 30px;
  flex: 1;
  display: flex;
  flex-direction: column;
  background:#00145f;
}
@media (max-width: 768px) {
  .post-slider .blog-content {
    padding: 25px;
  }
}
.post-slider .author-info {
  display: flex;
  align-items: center;
  margin-bottom: 20px;
}
.post-slider .author-info .author-avatar {
  width: 45px;
  height: 45px;
  border-radius: 50%;
  object-fit: cover;
  margin-right: 15px;
  border: 3px solid color-mix(in srgb, var(--accent-color), transparent 80%);
}
.post-slider .author-info .author-details {
  display: flex;
  flex-direction: column;
}
.post-slider .author-info .author-details .author-name {
  font-weight: 600;
  color: var(--heading-color);
  font-size: 14px;
  margin-bottom: 2px;
}
.post-slider .author-info .author-details .publish-date {
  font-size: 13px;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
}
.post-slider h3 {
  font-size: 20px;
  font-weight: 700;
  line-height: 1.4;
  margin-bottom: 15px;
  color: var(--heading-color);
}
@media (max-width: 768px) {
  .post-slider h3 {
    font-size: 18px;
  }
}
.post-slider h3 a {
  color: #ffb900;
  transition: color 0.3s ease;
}
.post-slider h3 a:hover {
  color: var(--accent-color);
}
.post-slider p {
  font-size: 18px;
  line-height: 1.6;
  color:#ffffffc7;font-family: "Philosopher", sans-serif;
  margin-bottom: 25px;
  flex: 1;
}
.post-slider .blog-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 20px;
  border-top: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}
@media (max-width: 576px) {
  .post-slider .blog-footer {
    flex-direction: column;
    gap: 15px;
    align-items: flex-start;
  }
}
.post-slider .reading-time {
  display: flex;
  align-items: center;
  font-size: 13px;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
}
.post-slider .reading-time i {
  margin-right: 5px;
  font-size: 14px;
}
.post-slider .btn-read-more {
  display: inline-flex;
  align-items: center;
  background: linear-gradient(45deg, var(--accent-color), color-mix(in srgb, var(--accent-color), #000 10%));
  color: var(--contrast-color);
  padding: 10px 20px;
  border-radius: 25px;
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  transition: all 0.3s ease;
}
.post-slider .btn-read-more span {
  margin-right: 8px;
}
.post-slider .btn-read-more i {
  font-size: 12px;
  transition: transform 0.3s ease;
}
.post-slider .btn-read-more:hover {
  transform: translateX(5px);
  background: linear-gradient(45deg, color-mix(in srgb, var(--accent-color), #000 10%), var(--accent-color));
  color: var(--contrast-color);
}
.post-slider .btn-read-more:hover i {
  transform: translateX(3px);
}
@media (max-width: 576px) {
  .post-slider .btn-read-more {
    align-self: flex-end;
  }
}
/* Modal Styles */
    .modal {
        display: none; /* Hidden by default */
        position: fixed; /* Stay in place */
        z-index: 10000; /* Sit on top */
        left: 0;
        top: 0;
        width: 100%; /* Full width */
        height: 100%; /* Full height */
        overflow: auto; /* Enable scroll if needed */
        background-color: rgba(0,0,0,0.5); /* Black w/ opacity */
        justify-content: center;
        align-items: center;
    }

    .modal-content {
        background-color: #fefefe;
        margin: auto;
        padding: 40px;
        border: 1px solid #888;
        width: 80%;
        max-width: 800px;
        border-radius: 8px;
        position: relative;
        text-align: left;
    }

    .close-btn {
        color: #aaa;
        position: absolute;
        top: 15px;
        right: 25px;
        font-size: 35px;
        font-weight: bold;
        cursor: pointer;
    }

    .close-btn:hover,
    .close-btn:focus {
        color: black;
        text-decoration: none;
    }

    .modal-content ul {
        list-style: none;
        padding-left: 0;
    }

    .modal-content ul li {
        font-size: 18px;
        font-weight: 500;
        margin-bottom: 10px;
        padding-left: 30px;
        position: relative;
    }
    
    .modal-content .ri-check-double-line {
        color: #024d89;
        font-size: 24px;
        position: absolute;
        left: 0;
        top: 2px;
    }

    .modal-content h2 {
        text-align: center;
        margin-bottom: 20px;
    }

.att {
    color: #ff5f03;
}