﻿/*---------------------------------------------------------------

        Template Name: Kefi Cuisine - Authentic Greek Restaurant
        Description: Kefi Cuisine - Authentic Greek Restaurant Multiple Page Website Template
        Author: Lucid Themeslab
        Author URL: https://www.templatemonster.com/store/lucid_themeslab/
        Version: 2.0.0

    -----------------------------------------------------------------

        CSS INDEX
        ==================

        01.   Basic Styles 
        02.   Background-Color 
        03.   Text-Color 
        04.   Button Style
        05.   Form Style
        06.   Home Page Styles
        04,   About Area Sections/Page
        05.   Service Section/Page Styles
        06.   Menus Section/Page Styles
        07.   FAQ Page Styles
        08.   Blog Section/Page Styles
        09.   Contact Page Styles
        10.   Back to top Styles
     
----------------------------------------------------------------*/

@import url('https://fonts.googleapis.com/css2?family=Merriweather:ital,wght@0,300;0,400;0,700;0,900;1,300;1,400;1,700;1,900&family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap');

/* ==================
   Basic Styles 
================== */

[data-kefi-theme="kefi_light"] {

  --body-color: #FFFFFF;
  --primary-color: #af7c51;
  --secondary-color: #040c16;
  --secondary-overlay: 4, 12, 22;
  --alt-color: #fffaf6;
  --white-color: #ffffff;
  --form-color: #fcfcfc;
  --card-color: #ffffff;
  --dark-color:#191e25;
  --form-text-active: #000000;

  /* text-colors */
  --primary-text: #af7c51;
  --heading-text: #140b04;
  --para-text: #5B5B5B;
  --white-text: #ffffff;
  --form-text: #4F4F4F;
  --danger-text: #fa5050;
    /* Dark gradient variables */
  --offcanvas-header-bg: linear-gradient(135deg, #000000, #1a1a1a);
  --offcanvas-body-bg: linear-gradient(135deg, #2b2b2b, #4c4c4c);
  --box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1); 

  /* font family */
  --primaryfont: "Merriweather", serif;
  --secondaryfont: "Montserrat", serif;
}

[data-kefi-theme="kefi_dark"] {

  --body-color: #170d05;
  --primary-color: #af7c51;
  --secondary-color: #39200b;
  --secondary-overlay: 4, 12, 22;
  --alt-color: #36271a;
  --white-color: #ffffff;
  --form-color: #463121;
  --card-color: #432915;
  --dark-color:#1b1007;
  --form-text-active: #ffffff;

  /* text-colors */
  --primary-text: #af7c51;
  --heading-text: #e9e9e9;
  --para-text: #d6d6d6;
  --white-text: #ffffff;
  --form-text: #dfdfdf;
  --danger-text: #fa5050;
    /* Dark gradient variables */
  --offcanvas-header-bg: linear-gradient(135deg, #000000, #1a1a1a);
  --offcanvas-body-bg: linear-gradient(135deg, #2b2b2b, #4c4c4c);
  --box-shadow: 0 4px 6px rgba(0, 0, 0, 0.4);

  /* font family */
  --primaryfont: "Merriweather", serif;
  --secondaryfont: "Montserrat", serif;
}

* {
  box-sizing: border-box;
  font-family: var(--secondaryfont);
  word-break: break-word;
}

html {
  scroll-behavior: smooth;
}

a {
  color: inherit;
  text-decoration: none;
  box-shadow: none;
  outline: none;
}

a:hover {
  text-decoration: none;

}

.outer-section{
  overflow:hidden !important; 
  height: auto;
}

/* Background-Color*/

.body-color {
  background-color: var(--body-color) !important;
}

.primary-color {
  background-color: var(--primary-color) !important;
}

.primary-hover-color {
  background-color: var(--primary-hover-color) !important;
}

.secondary-color {
  background-color: var(--secondary-color) !important;
}

.secondary-overlay {
  background-color: var(--secondary-overlay) !important;
}

.alt-color {
  background-color: var(--alt-color) !important;
}

.white-color {
  background-color: var(--white-color) !important;
}

.form-color {
  background-color: var(--form-color) !important;
}

.card-color {
  background-color: var(--card-color) !important;
}

/* Text-Color*/

.primary-font {
  font-family: var(--primaryfont) !important;
}

.secondary-font {
  font-family: var(--secondaryfont) !important;
}

.primary-text {
  color: var(--primary-text);
}

.heading-text {
  color: var(--heading-text);
}

.para-text {
  color: var(--para-text);
}

.white-text {
  color: var(--white-text);
}

.form-text {
  color: var(--form-text);
}

.danger-text {
  color: var(--danger-text);
}

.border-primary {
  border-color: var(--primary-color)!important;
}

/* Button Style */

.default-btn {
  background: linear-gradient(to right, #b99d86 0%, #af7c51 100%);
  padding: 12px 25px;
  color: #fff;
  text-transform: uppercase;
  font-size: 15px;
  font-weight: 500;
  display: inline-block
}

.default-btn i {
  background-color: #af7c51;
  display: inline-block;
  width: 20px;
  height: 20px;
  text-align: center;
  line-height: 20px;
  font-size: 9px !important;
  border-radius: 50%;
  position: relative;
  top: -2px;
  margin-left: 7px
}

/* Form Style */
.form-control {
  height: 50px;
   color: var(--form-text);
  border: 1px solid #d4d4d4;
  background-color: rgba(0, 0, 0, 0);
  border-radius: 0;
  padding: 0;
  font-size: 15px;
  padding: 10px 20px;
  width: 100%
}

.form-control::placeholder {
  color: var(--form-text);
}

.form-control:focus {
  color: var(--form-text);
  background-color: rgba(0, 0, 0, 0);
  box-shadow: unset;
  outline: 0;
  border: 1px solid #af7c51;
}

span.error {
  color: var(--danger-text) !important;
  font-weight: 500;
  padding: 8px;
}

.form-control:hover:focus,
.form-control:focus {
  box-shadow: unset
}

textarea.form-control {
  height: auto;
  height: 250px
}
/* ==================
  Home Page Styles
================== */
.nav-link:hover,
.nav-link.active,
.nav-link:focus {
  color: var(--primary-color) !important;
  box-shadow: none;
}

.navbar-nav .nav-link {
  position: relative;
  padding-bottom: 5px;
  display: inline-block; /* Add this */
}

.navbar-nav .nav-link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 2px;
  background-color: var(--primary-color);
  transition: width 0.3s ease;
}

.navbar-nav .nav-link:hover::after,
.navbar-nav .nav-link.active::after {
  width: 100%;
}

@media (max-width: 991.98px) {
  .navbar .navbar-nav .nav-link {
    margin-left: 0;  
    margin-right: 0;
    margin-bottom: 15px; 
  }
}
  /* .navbar .navbar-nav {
      margin-top: 15px;
  } */

.header-main {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 10;
}

/* Navbar Sticky */
.header-main {
  position: fixed;  
  top: 0;
  left: 0;
  width: 100%;
  z-index: 999;    
  transition: background 0.3s ease, box-shadow 0.3s ease;
}

/* Add shadow on scroll */
.sticky {
  background: var(--secondary-color); 
  box-shadow: 0 4px 15px rgba(0,0,0,0.15);
}

.navbar-brand img {
  width: 180px;
}
@media (max-width:1200px) {
  .navbar-brand img {
    width: 140px;
  }
}

/* ==================
  Hero Banner Section Styles
================== */

/* Banner Slide Common */
.single-banner-slide {
  min-height: 900px;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-attachment: fixed;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 1;
  flex-direction: column;
}

/* Overlay */
.bg-overlay::before {
  content: "";
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: rgba(0,0,0,0.5);
  z-index: 2;
}

.bg-overlay > * {
  position: relative;
  z-index: 3;
}

/* Slide Backgrounds */
.item-bg_1 { background-image: url(../../assets/img/banner/1.webp); }
.item-bg_2 { background-image: url(../../assets/img/banner/2.webp); }
.item-bg_3 { background-image: url(../../assets/img/banner/3.webp); }

/* Banner Content */
.hero-slider-text {
  width: 100%;
  display: flex;
  /* justify-content: center; */
  align-items: center;
}

/* Responsive Heights */
@media (max-width: 992px) {
  .single-banner-slide { min-height: 550px; }
}

@media (max-width: 768px) {
  .single-banner-slide { min-height: 550px; }
}

@media (max-width: 480px) {
  .single-banner-slide { min-height: 550px; }
}

/* Swiper Pagination */
.swiper-pagination-bullet {
  width: 14px;
  height: 14px;
  background: #fff;
  opacity: 0.9;
  margin: 0 6px !important;
  border-radius: 50%;
  transition: all 0.3s ease-in-out;
  border: 2px solid var(--primary-color);
}
.swiper-pagination-bullet-active {
  width: 18px;
  height: 18px;
  background: var(--primary-color);
  border: 2px solid #fff;
  opacity: 1;
  box-shadow: 0 0 10px rgba(255, 204, 0, 0.8);
}

/* Responsive Text Sizes */
@media (max-width: 992px) {
  .banner-content h2 

  { 
    font-size: 50px;
   }

    .hero-slider-text{
    padding-top: 150px;
    padding-bottom: 30px;
  }
}
@media (max-width: 768px) {
  .banner-content h2 
  { 
    font-size: 30px;
   }

  .banner-content p 
  { 
    font-size: 14px; 
  }

  .hero-slider-text{
    padding-top: 100px;
    padding-bottom: 30px;
  }
}

 .banner-content{
  max-width: 850px;
}

/* ==================
   Service Area Sections
================== */
.service {
  padding: 20px;
  box-shadow: 0 0 20px 3px rgba(0, 0, 0, .05);
  background-color: var(--card-color);
  transition: all .5s;
}

.service .service-icon {
  position: relative;
  width: 80px;
  height: 80px;
  margin: 0 auto 36px;
  top: 8px;
}

.service .service-icon i {
  color: var(--primary-color);
  border-radius: 50%;
  width: 80px;
  height: 80px;
  display: inline-block;
  text-align: center;
  line-height: 80px;
  background: #fef0e6;
  z-index: 1;
  font-size: 35px;
  position: relative;
  transition: all .5s;
}

.service .service-icon i::after {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  margin: -7px;
  border: 2px dashed var(--primary-color);
  border-radius: 50%;
  z-index: -1;
  transition: .5s;
  animation: rotation 50s infinite linear;
  transition: all .5s;
}

.service:hover i {
  background-color: var(--primary-color);
  color: var(--white-color);
}

.service:hover i::after {
  border: 2px dashed var(--primary-color);
  animation: rotation 10s infinite linear
}

.service:hover {
  transform: translateY(-5px)
}

@keyframes rotation {
  from {
      transform: rotate(0deg)
  }

  to {
      transform: rotate(359deg)
  }
}

/* ==================
   About Area Sections/Page
================== */

.about-image {
    position: relative;
    text-align: right;
}

.about-image .store-img-two {
    position: absolute;
    top: 130px;
    left: 30px;
}


@media (max-width: 767px) {
  .about-image {
    text-align: center;
    padding: 0 15px; /* left-right spacing for safe area */
  }
  .about-image img {
    width: 100%;
    max-width: 350px;
  }
  .about-image .store-img-two {
    top: 60px;
    left: 55%;   /* thoda aur andar */
    transform: translateX(-50%);
    width: 70%;
    max-width: 250px;
  }
}


/* ==================
   Suitable Menu Sections
================== */
.suitable-menu {
  background: linear-gradient(0deg, rgba(var(--secondary-overlay), 0.8), rgba(var(--secondary-overlay), 0.7)),
  url(../img/bg/02.webp) no-repeat;
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
  height: 100%;
  position: relative;
  padding-top: 100px;
  background-attachment: fixed;
}

.suitable-menu::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 130px;
  opacity: 1;
  background-color:  var(--body-color);
}

.suitable-menu .section-title {
  margin: 0px auto 30px
}

/* ==================
   Delicious Menu Section Styles 
================== */
.delicious-menus-area {
  background: linear-gradient(0deg, rgba(var(--secondary-overlay), 0.8), rgba(var(--secondary-overlay), 0.7)),
  url(../img/bg/04.webp) no-repeat;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  background-attachment: fixed;
}

.delicious-menus-area .delicious-menu-wrap {
  background-color: var(--body-color);
}

@media only screen and (max-width: 767px) {
  .delicious-menu-wrap {
    padding: 20px;
  }
}

.section-title {
  max-width: 550px;
  margin: 0px auto 0px;
}

.single-delicious-menu {
  /* position: relative; */
  border: 1px dashed #b4b4b4;
  padding: 10px;
  margin-bottom: 30px;
  transition: all .5s;
} 
.single-delicious-menu img{
  height: 100%;
  max-height: 150px;
  object-fit: cover;
  object-position: center center;
}

/* ==================
   Special Offer Section Styles 
================== */
.single-speacial-Offers {
  transition: all .5s
}

.single-speacial-Offers .menu-img {
  position: relative
}

.single-speacial-Offers .menu-img .price {
  position: absolute;
  bottom: 20px;
  right: 20px;
  background-color: var(--primary-color);
  width: 60px;
  height: 60px;
  line-height:60px;
  color: var(--white-color);
  border-radius: 50%;
  font-size: 18px;
  text-align: center
}

.single-speacial-Offers .item-text {
  background-color: var(--card-color);
}

.item-text h4 {
  color: var(--heading-text);
  transition: 0.3s ease-in;
}

.item-text p {
  color: var(--para-text);
  transition: 0.3s ease-in;
}

.single-speacial-Offers .item-text h3 {
  margin-top: 10px;
}

.single-speacial-Offers:hover .item-text h3 a {
  color: var(--white-color);
}

.single-speacial-Offers:hover {
  transform: translateY(-5px);
}

.single-speacial-Offers:hover .item-text {
  background-color: var(--primary-color);
  transition: 0.3s ease-in;
}


.single-speacial-Offers:hover .item-text h4,
.single-speacial-Offers:hover .item-text p {
  color: var(--white-color);
}


/* ==================
   CTA Offer Section Styles 
================== */
.offer-area {
  background: linear-gradient(0deg, rgba(var(--secondary-overlay), 0.7), rgba(var(--secondary-overlay), 0.7)),
  url(../img/bg/03.webp) no-repeat;
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
  height: 100%;
  position: relative;
  padding-top: 100px;
  overflow: hidden;
  z-index: 1;
  background-attachment: fixed;
}

.offer-area .offer-title {
  margin-top: -7px
}

.offer-area .offer-title span {
  font-weight: 600;
  font-size: 15px;
  display: inline-block;
  margin-top: -9px
}

.offer-area .offer-title h2 {
  font-size: 35px;
  margin-top: 10px;
  margin-bottom: 30px
}

.offer-area .offer-title h2 span {
  color: var(--primary-color);
  font-size: 35px
}

.offer-area .offer-title .default-btn {
  margin-top: 20px
}

.offer-area .offer-title .default-btn-two {
  margin-top: 20px
}

.offer-logo {
  color: var(--white-color);
  border-radius: 50%;
  width: 220px;
  height: 220px;
  display: inline-block;
  text-align: center;
  line-height: 175px;
  background: linear-gradient(to right, #b99d86 0%, #af7c51 100%);
  z-index: 1;
  font-size: 35px;
  position: relative
}

.offer-logo::after {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  border: 2px dashed var(--primary-color);
  border-radius: 50%;
  z-index: -1;
  margin: -10px;
  transition: .5s;
  animation: rotation 50s infinite linear
}

.offer-logo p {
  font-size: 57px;
  font-weight: 700;
  margin-bottom: 0
}

.offer-logo span {
  font-size: 40px;
  position: absolute;
  top: 57px;
  left: 0;
  right: 0;
  font-weight: 600
}

/* ==================
   Our Suitable Menu Sections
================== */
.menu-item-wrap {
  background-color: var(--body-color);
  position: relative;
  padding-top: 40px;
  padding-bottom: 40px;
  box-shadow: var(--box-shadow);
  z-index: 1

}

.menu-item-wrap .owl-nav {
  position: absolute;
  top: -113px;
  right: 10px !important;
  margin: 0
}

.menu-item-wrap .owl-nav .owl-prev i {
  width: 40px;
  height: 40px;
  background: linear-gradient(to right, #b99d86 0%, #af7c51 100%);
  display: inline-block;
  text-align: center;
  line-height: 40px;
  font-size: 17px;
  color: var(--white-color);
}

.menu-item-wrap .owl-nav .owl-next i {
  width: 40px;
  height: 40px;
  background: linear-gradient(to right, #b99d86 0%, #af7c51 100%);
  display: inline-block;
  text-align: center;
  line-height: 40px;
  font-size: 17px;
  color:  var(--white-color);
}

.single-menu-item {
  padding: 30px;
  box-shadow: 0 0 20px 3px rgba(0, 0, 0, .05);
  margin-bottom: 30px;
  margin-top: 20px;
  margin-right: 15px;
  margin-left: 15px;
  background-color: var(--card-color);
}

@media only screen and (max-width: 767px) {
  .single-menu-item{
    margin-top: 50px;
    margin-bottom: 10px;
  }
  .menu-item-wrap {
    margin-bottom: 20px;
  }
}

.single-menu-item .menu-img {
  position: relative
}

.single-menu-item .menu-img .price {
  position: absolute;
  top: 20px;
  left: 20px;
  background-color: var(--primary-color);
  width: 60px;
  height: 60px;
  line-height: 60px;
  color: var(--white-color);
  border-radius: 50%;
  font-size: 18px;
  text-align: center
}

.single-menu-item .menu-img img {
  border-radius: 50%;
  border: 2px dashed var(--primary-color);
  padding: 5px
}

.single-menu-item .item-text {
  background-color: var(--card-color);
}

.single-menu-item .item-text h3 {
  margin-top: 20px;
  margin-bottom: 10px
}

.single-menu-item .item-text ul li {
  color: var(--primary-color);
  font-size: 16px;
  display: inline-block
}

.single-menu-item .item-text ul li i {
  color: var(--primary-color);
  margin-right: 5px
}

.single-menu-item .item-text ul li.quantity {
  margin-left: 5px;
  position: relative;
  top: 3px
}

.single-menu-item .item-text ul li.quantity input {
  overflow: visible;
  border: none;
  text-align: center;
  color: var(--primary-color);
  width: 30px
}

.single-menu-item .item-text ul li.quantity input:focus {
  box-shadow: none !important;
  border: none
}

.single-menu-item .item-text ul li.quantity .minus-btn {
  position: relative;
  z-index: 1;
  border: 1px solid;
  transition: all .5s;
  width: 37px;
  height: 37px;
  line-height: 37px;
  display: inline-block;
  cursor: pointer
}

.single-menu-item .item-text ul li.quantity .minus-btn:hover {
  background-color: var(--primary-color);
  border-color: var(--primary-color);
}

.single-menu-item .item-text ul li.quantity .minus-btn:hover i {
  color: var(--white-color);
}

.single-menu-item .item-text ul li.quantity .plus-btn {
  font-weight: 400;
  font-size: 10px;
  border: 1px solid;
  transition: all .5s;
  cursor: pointer;
  width: 37px;
  height: 37px;
  line-height: 37px;
  display: inline-block
}

.single-menu-item .item-text ul li.quantity .plus-btn i {
  margin-right: 0
}

.single-menu-item .item-text ul li.quantity .plus-btn:hover {
  background-color: var(--primary-color);
  border-color: var(--primary-color);
}

.single-menu-item .item-text ul li.quantity .plus-btn:hover i {
  color: var(--white-color);
}

/* ==================
   Our Suitable Menu Sections
================== */
.single-delicious-menu {
  position: relative;
  border: 1px dashed #b4b4b4;
  padding: 10px;
  margin-bottom: 30px;
  transition: all .5s
}

.single-delicious-menu .delicious-menu-text h3 {
  font-size: 16px;
  font-weight: 600;
}

.single-delicious-menu .delicious-menu-text p {
  margin-bottom: 0
}

.single-delicious-menu .delicious-menu-text span {
  font-weight: 600;
  font-size: 18px;
  display: inline-block
}

/* ==================
  Counter Sections
================== */
.conuter-area {
    text-align: center
}

.conuter-area .single-conuter {
    margin-bottom: 30px
}

.conuter-area .single-conuter.conuters {
    border-right: 2px dashed var(--primary-color);
}
@media only screen and (max-width: 767px) {
  .conuter-area .single-conuter.conuters{
   border:none!important;
  }
}
.conuter-area .single-conuter.conuters::before {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    height: 50px;
    border-right: 2px solid var(--primary-color);
    animation-duration: 3s;
    animation-timing-function: linear;
    animation-iteration-count: infinite;
    animation-name: MOVE-BG;
}

.conuter-area .single-conuter span {
    font-size: 70px;
    color: var(--primary-color);
    font-weight: 700;
    line-height: 1
}

.conuter-area .single-conuter p {
    line-height: 1;
    font-size: 18px;
    font-weight: 600;
    color: var(--para-text);
}

@-webkit-keyframes MOVE-BG {
    from {
        transform: translateY(0)
    }

    to {
        transform: translateY(88px)
    }
}

/* ==================
   Book Table Sections
================== */

.book-table{
  background: linear-gradient(0deg, rgba(var(--secondary-overlay), 0.8), rgba(var(--secondary-overlay), 0.7)),
  url(../img/bg/01.webp);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
  background-attachment: fixed;

}

.book-table .books-froms {
  max-width: 500px;
  margin-left: auto;
  margin-right: 65px
}

.book-table .contact-info {
  max-width: 500px;
  margin-right: auto;
  margin-left: 50px;
  position: relative;
  z-index: 1
}

@media only screen and (max-width: 767px) {
  .book-table .contact-info{
  padding-top: 30px;
  margin: auto;
  }
}
.book-table .contact-info h3 {
  font-size: 25px !important;
  color: var(--white-color);
  text-transform: uppercase;
  margin-bottom: 15px;
  margin-top: -5px
}

.book-table .contact-info p {
  color: var(--white-color);
  margin-bottom: 40px
}

.book-table .contact-info ul {
  border-bottom: 1px solid #4b4e49;
  padding-bottom: 20px;
  margin-bottom: 30px
}

.book-table .contact-info ul li {
  margin-bottom: 10px
}

.book-table .contact-info ul li a {
  font-size: 16px;
  font-weight: 500;
  color: var(--white-color);
  position: relative;
  padding-left: 30px
}

.book-table .contact-info ul li a i {
  position: absolute;
  top: 2px;
  left: 0
}

.book-table .contact-info ul li a:hover {
  color: var(--primary-color);
}

.book-table .contact-info ul li:last-child {
  margin-bottom: 0;
}

.book-table .contact-info span {
  font-size: 16px;
  font-weight: 600;
  color: var(--white-color);
  position: relative;
  padding-left: 30px;
  transition: all .5s;
  display: inline-block
}

.book-table .contact-info span i {
  position: absolute;
  top: 6px;
  left: 0;
  font-size: 19px
}

.book-table .contact-info span:hover {
  color: var(--primary-color);
}

.book-from .default-btn {
    display: block;
    width: 100%;
    text-transform: uppercase;
    cursor: pointer
}

/* --------- Base form control --------- */
.book-from .form-control {
  background: rgba(0,0,0,0.4);
  border: 1px solid var(--white-color);
  color:  #b6b6b6;
  padding: 14px 18px;
  font-size: 15px;
}

.book-from .form-control::placeholder,
.book-from select.form-control option[disabled] {
  color: #b6b6b6;
  opacity: 1;
}

/* Make select text same as inputs */
.book-from select.form-control {
  color:  #b6b6b6;
  appearance: none;
}

/* --------- Select-box container --------- */
.book-from .select-box {
  position: relative;
}
.book-from .select-box i.flaticon-avatar,
.book-from .select-box i.flaticon-phone-call,
.book-from .select-box i.flaticon-timetable,
.book-from .select-box i.flaticon-clock {
  position: absolute;
  left: 15px;
  top: 25px;
  transform: translateY(-50%);
  color: var(--white-color);
}

.book-from .select-box .form-control {
  padding-left: 45px;
}

.book-from .select-down::after {
  content: "\f107"; 
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  position: absolute;
  right: 15px;
  top: 25px;
  transform: translateY(-50%);
  pointer-events: none;
  color: var(--primary-color);
  font-size: 16px;
}


.book-from .form-control:focus {
  border-color: var(--primary-color);
  box-shadow: none;
}

.book-from .form-control,
.book-from .form-control::placeholder,
.book-from select.form-control,
.book-from select.form-control option[disabled] {
  color:  #b6b6b6;
  opacity: 1;
}

.book-from input[type="date"]:required:invalid {
  color:  #b6b6b6!important;      
}
.book-from input[type="date"]:focus:invalid {
  color:  #b6b6b6;
}

.book-from input[type="date"]:valid {
  color: #fff;                      
}


/* ======== Form Wrapper ======== */
.books-froms-wrap {
  padding: 40px;
  background: rgba(0, 0, 0, 0.65);
}

.book-from h3 {
  color: var(--text-light);
  margin-bottom: 25px;
  text-align: center;
  font-size: 1.8rem;
}

/* ======== Form Groups ======== */
.book-from .form-group {
  margin-bottom: 20px;
  position: relative;
}

.select-box {
  position: relative;
}

.select-box i {
  position: absolute;
  top: 50%;
  left: 14px;
  transform: translateY(-50%);
  font-size: 18px;
  color: var(--primary-color);
  pointer-events: none;
}
  
.book-from select.form-control option {
  background-color: var(--white-color);   
  color: #000;  
}

/*==================
   Our Talented Chef Sections
================== */
.our-talented-area .owl-nav .owl-prev i {
  width: 40px;
  height: 40px;
  background: linear-gradient(to right, #b99d86 0%, #af7c51 100%);
  display: inline-block;
  text-align: center;
  line-height: 40px;
  font-size: 17px;
  color: var(--white-color);
}

.our-talented-area .owl-nav .owl-next i {
  width: 40px;
  height: 40px;
  background: linear-gradient(to right, #b99d86 0%, #af7c51 100%);
  display: inline-block;
  text-align: center;
  line-height: 40px;
  font-size: 17px;
  color:  var(--white-color);
}

.our-talented-area .owl-nav {
  position: absolute;
  top: -73px;
  right: 0;
  margin: 0;
}

.single-talented {
  text-align: center;
  position: relative;
  transition: all .5s;
  margin-top: 50px;
}

.single-talented .talented-caption {
  background-color: var(--card-color);
  padding: 20px;
  position: absolute;
  bottom: 17px;
  left: 0;
  right: 0;
  max-width: 90%;
  width: 100%;
  margin: auto;
  transition: all .5s
}

.single-talented .talented-caption h3 {
  font-size: 18px;
  margin-bottom: 5px;
  transition: all .5s;
  color: var(--heading-text);
}

.single-talented .talented-caption span {
  font-size: 15px;
  display: inline-block;
  margin-bottom: 10px;
  color: var(--para-text);
  transition: all .5s
}

.single-talented .talented-caption ul li {
  display: inline-block;
  margin-bottom: 0;
  padding: 0 3px
}

.single-talented .talented-caption ul li a {
  width: 30px;
  height: 30px;
  line-height: 30px;
  font-size: 14px;
  border-radius: 50%;
  color: var(--heading-text);
  display: inline-block
}

.single-talented .talented-caption ul li a:hover {
  background-color:  var(--white-color);
  color: var(--primary-color);
}

.single-talented:hover {
  transform: translateY(-5px)
}

.single-talented:hover .talented-caption {
  background-color:  var(--primary-color);
}

.single-talented:hover .talented-caption a {
  background-color:  var(--white-color);
  color:  var(--primary-color);
}

.single-talented:hover .talented-caption h3 {
  color: var(--white-color);
}

.single-talented:hover .talented-caption span {
  color: var(--white-color);
}

.our-talented-area .owl-item.active.center .talented-caption {
  background: linear-gradient(to right, #b99d86 0%, #af7c51 100%);
}

.our-talented-area .owl-item.active.center .talented-caption a {
  background-color: var(--white-color);
  color:  var(--primary-color);
}

.our-talented-area .owl-item.active.center .talented-caption h3 {
  color:  var(--white-color);
}

.our-talented-area .owl-item.active.center .talented-caption span {
  color:  var(--white-color);
}

.our-talented-area .owl-nav {
  position: absolute;
  top: -113px;
  right: 0;
  margin: 0
}

.our-talented-area .owl-nav .owl-prev i {
  width: 40px;
  height: 40px;
  background: linear-gradient(to right, #b99d86 0%, #af7c51 100%);
  display: inline-block;
  text-align: center;
  line-height: 40px;
  font-size: 17px;
  color:  var(--white-color);
}

.our-talented-area .owl-nav .owl-next i {
  width: 40px;
  height: 40px;
  background: linear-gradient(to right, #b99d86 0%, #af7c51 100%);
  display: inline-block;
  text-align: center;
  line-height: 40px;
  font-size: 17px;
  color: var(--white-color);
}

/* ==================
   Feedback Sections
================== */
.testimonial-area {
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  width: 100%;
  height: 100%;
  text-align: center;
  position: relative;
  z-index: 1
}

.testimonial-area::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #000;
  opacity: .9;
  z-index: -1
}

.testimonial-area .owl-carousel .owl-item img {
  width: 80px;
  height: 80px;
  margin: auto;
  border-radius: 50%;
  border: 4px solid var(--primary-color);
  margin-bottom: 17px
}

.testimonial-area .testimonial-item{
  max-width: 800px;
  margin: 15px auto 0;
}

.testimonial-area .testimonials-item span {
  font-size: 13px;
  font-weight: 600;
  line-height: 1;
  display: block;
  margin-top: 9px
}

.testimonial-area .owl-theme .owl-nav {
  margin-top: 0;
}

.testimonial-area .owl-theme .owl-nav .owl-prev {
  position: absolute;
  top: 25%;
  left: 0;
  background-color: rgba(0, 0, 0, 0);
  width: 40px;
  height: 40px;
  border: 2px solid var(--primary-color) !important;
  border-radius: 50% !important;
  transition: all .5s
}

.testimonial-area .owl-theme .owl-nav .owl-prev:hover {
  background-color: var(--primary-color);
  border: 2px solid var(--primary-color) !important
}

.testimonial-area .owl-theme .owl-nav .owl-prev:hover i {
  color: var(--white-color);
}

.testimonial-area .owl-theme .owl-nav .owl-prev i {
  color: var(--primary-color);
  font-size: 18px;
  font-weight: 700;
}

.testimonial-area .owl-theme .owl-nav .owl-next {
  position: absolute;
  top: 25%;
  right: 0;
  background-color: rgba(0, 0, 0, 0);
  width: 40px;
  height: 40px;
  border: 2px solid var(--primary-color) !important;
  border-radius: 50% !important;
  transition: all .5s
}

.testimonial-area .owl-theme .owl-nav .owl-next:hover {
  background-color: var(--primary-color);
  border: 2px solid var(--primary-color) !important
}

.testimonial-area .owl-theme .owl-nav .owl-next:hover i {
  color: var(--white-color);
}

.testimonial-area .owl-theme .owl-nav .owl-next i {
  color: var(--primary-color);
  font-size: 18px;
  font-weight: 700
}

@media only screen and (max-width: 767px) {
  .testimonial-area .owl-theme .owl-nav .owl-prev {
      top: 0px;
      width: 35px;
      height: 35px;
  }
}

@media only screen and (max-width: 767px) {
  .testimonial-area .owl-theme .owl-nav .owl-next {
      top: 0px;
      width: 35px;
      height: 35px;
  }
}

/* ==================
   Gallery Sectiom
================== */
.our-gallery {
  overflow: hidden
}

.our-gallery .container-fluid {
  padding: 0
}

.our-gallery .single-gallery {
  margin-bottom: 30px;
  position: relative
}

.our-gallery .single-gallery .img-caption {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  justify-content: center;
  align-items: center;
  display: flex;
  opacity: 0;
  transition: all .5s
}


.our-gallery .single-gallery .img-caption  a {
  display: inline-block;
  width: 40px;
  height: 40px;
  border: 1px dashed var(--white-color);
  line-height: 40px;
  text-align: center;
  border-radius: 50%;
  margin: 0 12px;
  position: relative;
  transition: all .5s
}

.our-gallery .single-gallery .img-caption a i {
  font-size: 20px;
  color: var(--white-color);
}

.our-gallery .single-gallery .img-caption a:hover {
  background-color: var(--primary-color);
  border: 1px dashed var(--primary-color);
}

.our-gallery .single-gallery .img-caption::before {
  content: "";
  position: absolute;
  bottom: 0;
  right: 0;
  width: 0;
  height: 100%;
  background-color: var(--secondary-color);
  opacity: 0;
  visibility: hidden;
  -webkit-transition: .6s;
  transition: .6s
}

.our-gallery .single-gallery .img-caption:hover {
  opacity: 1
}

.our-gallery .single-gallery .img-caption:hover::before {
  opacity: .8;
  visibility: visible;
  width: 100%;
  right: auto;
  left: 0
}
.imagelightbox-arrow{
  width: 50px;
  height: 50px;
}
.imagelightbox-arrow:hover{
  background-color: var(--primary-color);
}
.imagelightbox-arrow-right::before {
  margin-left: 5px;
  margin-top: 6px
}

.imagelightbox-arrow-left::before {
  margin-right: 2px;
  margin-top: 6px
}

@media only screen and (min-width: 1824px) {
  .single-gallery img {
      width: 100%;
  }
}

@media only screen and (max-width: 767px) {
  .single-gallery img {
      width: 100%;
  }
}

/* ==================
   Blog Sections 
================== */
.single-blog {
  transition: all .5s;
  margin-bottom: 30px;
  background-color: var(--card-color);
}

@media only screen and (max-width: 767px) {
  .single-blog{
    margin-bottom: 0px;
  }
}

.single-blog:hover {
  transform: translateY(-5px);
  transition: all .5s;
}

.single-blog:hover h4 a {
  color: var(--primary-color);
  transition: all .5s;
}

.blog-text p i {
  color: var(--para-text);
}

.single-blog .blog-text h4{
  color: var(--heading-text);
}

.read-more {
  font-size: 15px;
  font-weight: 600;
  color: var(--primary-color);
  transition: all .5s;
  line-height: 1
}

.read-more i {
  font-size: 11px;
  transition: all .5s;
  display: inline-block;
  padding-left: 5px
}

.read-more:hover i {
  margin-left: 5px
}

.blog-img-short{
  min-width: 80px;
  height: 80px;
  object-fit: cover;
}

/* ==================
   Footer Sections 
================== */


 .search-field::placeholder {
  color: rgba(255, 255, 255, 0.8);
  transition: color 0.3s;
}

.search-field:focus {
  border-color: var(--primary-color);
  color: var(--white-color);
}

 .search-submit {
  border: none;
  outline: none;
  cursor: pointer;
  font-size: 15px;
  text-transform: capitalize;
  background: linear-gradient(to right, #b99d86 0%, #af7c51 100%);
  color: #fff;
  transition: all 0.3s ease;
  border-radius: 0;
}

/* Button hover */
.search-submit:hover:not(.disabled) {
  background: linear-gradient(to right, #af7c51 0%, #b99d86 100%);
}

/* Responsive adjustments */
@media (max-width: 576px) {
.search-field {
    padding-right: 110px; /* make room for button */
  }
  .search-submit {
    padding: 0 15px;
    font-size: 14px;
  }
}

.footer-area .single-widget .footer-menu {
  display: inline-block;
}

.footer-area .single-widget ul li {
  font-size: 15px;
  color: var(--white-color);
  font-weight: 500;
  margin-bottom: 8px;
}

.footer-area .single-widget ul li a {
  color: var(--white-color);
}

.footer-area .single-widget ul li a i {
  font-size: 11px;
  display: inline-block;
  margin-right: 3px;
}


.footer-area .single-widget ul li a i {
  font-size: 11px;
  display: inline-block;
  margin-right: 3px;
}

.footer-area .single-widget ul li a:hover {
  color: var(--primary-color);
  transition: all .5s;
}

.footer-area .single-widget h3 {
  font-family: "Barlow", sans-serif;
  font-weight: 700;
  font-size: 17px;
  margin-bottom: 15px;
  color: var(--white-color);
  border-bottom: 1px solid var(--primary-color);
  padding-bottom: 10px;
}

.footer-bottom {
  background-color: var(--dark-color);
}

.footer-bottom .social-list li a i {
  width: 35px;
  height: 35px;
  border: 1px dashed var(--primary-color);
  display: inline-block;
  text-align: center;
  line-height: 35px;
  border-radius: 50%;
  color: var(--primary-color);
  font-size: 12px;
  transition: all .5s;
}
.footer-bottom .social-list li a i:hover{
background-color: var(--primary-color);
color: var(--white-color);
}

/* ==================
   Go TO Top Sections 
================== */
.go-top-area .go-top {
  position: fixed;
  cursor: pointer;
  top: 0;
  right: 24px;
  color: var(--white-color);
  background-color: var(--primary-color);
  z-index: 4;
  width: 40px;
  text-align: center;
  height: 42px;
  line-height: 42px;
  opacity: 0;
  visibility: hidden;
  transition: .9s;
  border-right: 0
}

.go-top-area .go-top i {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: -2px;
  right: 0;
  margin: 0 auto;
  transition: .5s;
  font-size: 15px
}

.go-top-area .go-top i:last-child {
  opacity: 0;
  visibility: hidden;
  top: 60%
}

.go-top-area .go-top::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  background-color: var(--primary-color);
  opacity: 0;
  visibility: hidden;
  transition: .5s
}

.go-top-area .go-top:hover {
  color: var(--white-color);
}

.go-top-area .go-top:hover::before {
  opacity: 1;
  visibility: visible
}

.go-top-area .go-top:hover i:first-child {
  opacity: 0;
  top: 0;
  visibility: hidden
}

.go-top-area .go-top:hover i:last-child {
  opacity: 1;
  visibility: visible;
  top: 50%
}

.go-top-area .go-top:focus {
  color: var(--white-color);
}

.go-top-area .go-top:focus::before {
  opacity: 1;
  visibility: visible
}

.go-top-area .go-top:focus i:first-child {
  opacity: 0;
  top: 0;
  visibility: hidden
}

.go-top-area .go-top:focus i:last-child {
  opacity: 1;
  visibility: visible;
  top: 50%
}

.go-top-area .go-top.active {
  top: 98%;
  transform: translateY(-98%);
  opacity: 1;
  visibility: visible;
  border-radius: 0;
  right: 20px
}

.go-top-wrap {
  position: relative
}

.go-top-wrap .video-btn-wrap {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%
}

.go-top-wrap .go-top-play {
  position: absolute;
  top: 16px;
  left: 80px;
  text-transform: uppercase;
  width: 129px;
  line-height: 1
}

.go-top-wrap .go-top-play p {
  border-bottom: 1px solid var(--white-color);
  margin-bottom: 0
}

.go-top-btn {
  display: inline-block;
  width: 40px;
  height: 40px;
  line-height: 40px;
  text-align: center;
  color: var(--white-color);
  position: relative;
  top: 3px;
  z-index: 1;
  background: linear-gradient(to right, #b99d86 0%, #af7c51 100%);
}

.go-top-btn i {
  font-size: 20px;
  font-weight: 700;
  padding-left: 4px;
  color:var(--white-color);
}

.go-top-btn::after {
  z-index: -1;
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 40px;
  height: 40px;
  animation: ripple 1.6s ease-out infinite;
  opacity: 0;
  background: linear-gradient(to right, #b99d86 0%, #af7c51 100%);
}

.go-top-btn:hover {
  background-color: #121232;
  color: var(--white-color);
}

@-webkit-keyframes ripple {

  0%,
  35% {
      transform: scale(0);
      opacity: 1
  }

  50% {
      transform: scale(1.5);
      opacity: .8
  }

  100% {
      opacity: 0;
      transform: scale(2)
  }
}

/* ==================
   About Page
================== */
.page-title-area {
  position: relative;
  z-index: 1;
  padding-top: 160px;
  padding-bottom: 70px;
  background-color: var(--secondary-color);
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
  text-align: center
}
.item-bg-4{
  background: linear-gradient(0deg, rgba(var(--secondary-overlay), 0.9), rgba(var(--secondary-overlay), 0.7)),
  url(../img/bg/01.webp) no-repeat;
  background-size: cover;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-attachment: fixed;
}

.page-title-area .page-title-content h2 {
  margin-bottom: 0;
  color:  var(--white-color);
  font-size: 45px;
  font-weight: 700
}

.page-title-area .page-title-content ul {
  padding-left: 0;
  list-style-type: none;
  margin-top: 20px;
  margin-bottom: 0
}

.page-title-area .page-title-content ul li {
  display: inline-block;
  color:  var(--primary-color);
  position: relative;
  font-size: 16px
}

.page-title-area .page-title-content ul li i {
  font-size: 12px;
  margin: 0 10px
}

.page-title-area .page-title-content ul li a {
  color: #bab0b0
}

.page-title-area .page-title-content ul li a:hover {
  color: var(--primary-color);
}

/* ==================
   Menu Page
================== */
.menu-content {
  background-color: var(--card-color);
  box-shadow: var(--box-shadow);
  padding: 30px 30px 15px;
  margin-bottom: 30px
}

.menu-item {
  padding: 15px 10px;
  border: 1px dashed var(--primary-color);
  border-radius: 5px;
  transition: transform 0.3s, box-shadow 0.3s;
  background-color: var(--card-color);
}

.menu-item:hover {
  transform: scale(1.02);
  box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.1);
}

.item-title {
  font-size: 1rem;
  font-weight: bold;
  color: var(--heading-text);
  text-decoration: none;
  transition: color 0.3s ease-in-out;
}

.item-title:hover {
  color: var(--primary-color);
}

.item-desc {
  font-size: 0.8rem;
  margin-top: 5px;
  color: var(--para-text);
}

.item-price {
  font-size: 1rem;
  font-weight: bold;
  color: var(--primary-color);
  width: 50px;
}

.recipe-img {
  min-width: 50px;
  height: 50px;
}
 
.item-content {
    max-width: calc(100% - 150px);
  }

/* ==================
   Blog Page
================== */

/* .ptb-100 {
  padding-top: 100px;
  padding-bottom: 100px;
} */

.pagenavigation-area {
  text-align: center;
  margin: 20px auto 0;
  display: table;
}

.pagenavigation-area .page-item {
  padding: 0 8px 0;
}

.pagenavigation-area .page-link i {
  margin-right: -4px;
}

.pagenavigation-area .page-link.page-links i::before {
  margin-left: -4px;
}
.pagenavigation-area .page-item.active .page-link {
  z-index: 1;
  color:  var(--white-color);
  background-color: var(--primary-color);
  border-color: var(--primary-color);
}

.pagenavigation-area .page-link {
  color: var(--primary-color);
  background-color:  var(--card-color);
  box-shadow: var(--box-shadow);
  width: 40px;
  height: 40px;
  border: 1px solid  var(--card-color);
  line-height: 24px;
  transition: all .5s;
  font-weight: 700;
}

.pagenavigation-area .page-link:hover {
  color:  var(--white-color);
  background-color: var(--primary-color);
  border: 1px solid var(--primary-color);
}

.widget-area .widget:first-child {
  margin-top: 0;
}

.widget-area .widget {
  margin-top: 35px;
  box-shadow: 0px 0px 29px 0px rgba(102, 102, 102, .08);
  background-color: var(--card-color);
  padding: 25px;
}

.widget-area .widget_search form {
  position: relative;
}

.widget-area .widget_search form label {
  display: block;
  margin-bottom: 0;
}

.widget-area .widget_search form .screen-reader-text {
  display: none;
}

.widget-area .widget_search form .search-field {
  background-color: rgba(0, 0, 0, 0);
  height: 50px;
  padding: 6px 15px;
  border: 1px solid #eee;
  width: 100%;
  display: block;
  outline: 0;
  transition: .5s;
}

.widget-area .widget_search form button {
  position: absolute;
  right: 0;
  outline: 0;
  bottom: 0;
  height: 50px;
  width: 50px;
  border: none;
  color: #fff;
  background: linear-gradient(to right, #b99d86 0%, #af7c51 100%);
  transition: .5s;
}

 .widget-title{
  color: var(--heading-text);
 }

.widget-area .widget .widget-title {
  border-bottom: 1px solid #eee;
  padding-bottom: 10px;
  margin-bottom: 20px;
  text-transform: capitalize;
  position: relative;
  font-weight: 600;
  font-size: 20px;
}

.widget-area .widget .widget-title::before {
  content: "";
  position: absolute;
  background: linear-gradient(to right, #b99d86 0%, #af7c51 100%);
  bottom: -1px;
  left: 0;
  width: 50px;
  height: 1px;
}

.widget-area .widget_categories ul li {
  position: relative;
  margin-bottom: 12px;
  padding-left: 17px;
  font-size: 15px;
  font-weight: 600;
  color: var(--heading-text);
}

.widget-area .widget_categories ul li::before {
  background: linear-gradient(to right, #b99d86 0%, #af7c51 100%);
  position: absolute;
  height: 7px;
  width: 7px;
  content: "";
  left: 0;
  top: 7px;
}

.widget-area .widget_categories ul li a {
  display: inline-block;
}

.widget-area .tagcloud a:hover {
  background: var(--primary-color);
  color: var(--white-color);
  border-color: var(--primary-color);
  transition: 0.3s ease-in;
}

.widget-area .tagcloud a {
  display: inline-block;
  font-weight: 600;
  font-size: 14px !important;
  padding: 7px 10px;
  border: 1px dashed #eee;
  margin-top: 10px;
  margin-right: 10px;
  box-shadow: var(--box-shadow);
  color: var(--heading-text);
}

.blog-short-img img{
  max-width: 150px;
  object-fit: cover;
  width: 100%;
  object-fit: cover;
}

/* ==================
   Blog Page Details
================== */
.social li a {
  display: block;
  color: var(--primary-color);
  width: 32px;
  height: 32px;
  line-height: 32px;
  border-radius: 50%;
  background-color: #faf5f5;
  text-align: center;
  font-size: 14px;
  box-shadow: var(--box-shadow);
  background-color: var(--card-color);
}

 .social li a:hover {
  color: #fff;
  background-color: var(--primary-color);
  transition: 0.3s ease-in;
}

blockquote {
  overflow: hidden;
  background-color: var(--alt-color);
  padding: 50px !important;
  position: relative;
  text-align: center;
  z-index: 1;
  margin-bottom: 20px;
  margin-top: 20px
}

blockquote p {
  color: var(--primary-color);
  line-height: 1.6;
  margin-bottom: 0;
  font-style: italic;
  font-weight: 600;
  font-size: 18px !important
}

blockquote::before {
  color: var(--primary-color);
  content: "";
  position: absolute;
  left: 50px;
  top: -50px;
  z-index: -1;
  font-family: "Font Awesome 5 Free";
  font-size: 140px;
  font-weight: 900;
  opacity: 0.1;
}

blockquote::after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 3px;
  background-color: var(--primary-color);
  margin-top: 20px;
  margin-bottom: 20px
}

/* ==================
   Contact Page Details
================== */
.contact-area .contact-form form .form-control {
  background-color: var(--form-color);
  border: none;
  box-shadow: 0px 5px 28.5px 1.5px rgba(149, 152, 200, .2) !important;
  height: 57px;
  color: var(--form-text) !important;;
  border: 1px solid var(--white-color);
}

.contact-area .contact-form form .form-control:focus {
  border: 1px solid var(--primary-color);
}

.contact-area .contact-form form textarea.form-control {
  height: auto;
  padding-top: 15px
}

.contact-area .contact-info ul li {
  position: relative;
  padding-left: 95px;
  margin-bottom: 35px
}

.contact-area .contact-info ul li .icon {
  border: 1px dashed var(--primary-color);
  width: 75px;
  height: 75px;
  line-height: 75px;
  color: var(--white-color);
  border-radius: 50%;
  font-size: 25px;
  text-align: center;
  position: absolute;
  left: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  z-index: 1
}

.contact-area .contact-info ul li .icon::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  background: var(--primary-color);
  border-radius: 50%;
  margin: 6px;
  -webkit-box-shadow: 0 1px 3px 1px var(--primary-color);
  box-shadow: 0 1px 3px 1px var(--primary-color);
  z-index: -1
}

.contact-area .contact-info ul li a:hover {
  color: var(--primary-color);
}

/* ==================
   Blog Details Page
================== */
.blog-details-desc .article-content .entry-meta ul li {
  position: relative;
  display: inline-block;
  color: var(--primary-color);
  margin-right: 21px;
  font-size: 14px;
}

.blog-details-desc .article-content .entry-meta ul li::before {
  content: "";
  position: absolute;
  top: 11px;
  right: -15px;
  width: 6px;
  height: 1px;
  background: var(--primary-color);
}

.blog-details-desc .article-content .entry-meta ul li span {
  display: inline-block;
  color: var(--primary-color);
  font-weight: 500;
}

.comments-area {
  padding: 25px;
  margin-top: 30px;
  box-shadow: 0px 0px 29px 0px rgba(102, 102, 102, .08);
  background-color: var(--card-color);
}

.comments-area .comments-title {
  position: relative;
  margin-bottom: 30px;
  line-height: initial;
  font-size: 22px;
  font-weight: 600;
  color: var(--heading-text);
}

.comments-area .comments-title::before {
  content: "";
  height: 25px;
  width: 3px;
  left: -25px;
  position: absolute;
  background: var(--primary-color);
  top: 50%;
  transform: translateY(-50%)
}

.comments-area .comment-body {
  border-bottom: 1px solid #eee;
  padding-left: 65px;
  font-size: 14px;
  margin-bottom: 20px;
  padding-bottom: 20px
}

.comments-area .comment-body .reply a {
  border: 1px solid #ded9d9;
  color: var(--heading-text);
  display: inline-block;
  padding: 5px 20px;
  border-radius: 30px;
  text-transform: uppercase;
  position: relative;
  z-index: 1;
  font-size: 13px;
  font-weight: 600
}

.comments-area .comment-body .reply a:hover {
  color: var(--white-color);
  background-color: var(--primary-color);
  border-color: var(--primary-color);
  transition: 0.3s ease-in;
}

.comments-area .comment-author {
  font-size: 16px;
  margin-bottom: .4em;
  position: relative;
  z-index: 2
}

.comments-area .comment-author .avatar {
  height: 50px;
  left: -65px;
  position: absolute;
  width: 50px;
  border-radius: 50%
}

.comments-area .comment-author .fn {
  font-weight: 600;
  color: var(--primary-color);
}

/* accordion */

.accordion-item{
  margin: 0 0 20px;
  border-radius: 0px !important;
}

.accordion-button {
  background-color:var(--card-color);
  color: var(--heading-text);
  padding: 1rem;
  font-size: 1rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  box-shadow: none !important;
  outline: none !important; 
  box-shadow: 0px 5px 28.5px 1.5px rgba(149, 152, 200, .2) !important;
  border-radius: 0px !important;
}

.accordion-body {
  padding: 1rem;
  transition: all 0.3s ease;
  box-shadow: 0px 5px 28.5px 1.5px rgba(149, 152, 200, .2) !important;
  background-color: var(--card-color);
  color: var(--para-text);
}

.accordion-button:not(.collapsed){
  background-color:var(--primary-color) !important;
  background-image: unset !important;
  color: var(--white-color);
  box-shadow: 0px 5px 28.5px 1.5px rgba(149, 152, 200, .2) !important;
}

.accordion-button::after {
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  content: "\f068"; /* Minus icon */
  color: var(--white-color);  
  background-image: unset !important;  
  transform: unset !important;  
}

.accordion-button.collapsed::after {
  content: "\f067"; /* Plus icon */
  color: var(--secondary-color);
}

@media only screen and (min-width: 1400px) {
  .faq-wrap .accordion {
      width: calc(100% + 80px);
  }
}

.faq-contact-area .faq-contact-form {
  max-width: 750px;
  margin-left: auto;
  margin-right: auto
}

.faq-contact-area .faq-contact-form form .form-control {
  background-color: var(--form-color);
  border: none;
  box-shadow: 0px 5px 28.5px 1.5px rgba(149, 152, 200, .2) !important;
  height: 57px;
  border: 1px solid #ededed;
}

.faq-contact-area .faq-contact-form form .form-control:focus {
  border: 1px solid var(--primary-color)
}

.faq-contact-area .faq-contact-form form .form-group {
  margin-bottom: 30px
}

.faq-contact-area .faq-contact-form form .row {
  margin-left: -7px;
  margin-right: -7px
}

.faq-contact-area .faq-contact-form form .row .col-lg-12 {
  padding-left: 7px;
  padding-right: 7px
}

.faq-contact-area .faq-contact-form form .row .col-lg-6 {
  padding-left: 7px;
  padding-right: 7px
}

.faq-contact-area .faq-contact-form form textarea.form-control {
  height: auto;
  padding-top: 15px
}


.faq-image img {
    width: 100%;  
    max-height: 450px;       
    height: auto;        
    object-fit: cover;   
    border-radius: 10px;  
}

@media (max-width: 768px) {
    .faq-image img {
        max-height: 300px;  
        object-fit: contain; 
            border-radius: 10px;  
    }
}

.faq-image {
    border-radius: 10px; 
    overflow: hidden;     
}

.faq-image img {
    width: 100%;
    height: auto;
    object-fit: cover; 
}


/*** Service Start ***/
.service-bg{
  background: linear-gradient(0deg, rgba(var(--secondary-overlay), 0.8), rgba(var(--secondary-overlay), 0.7)), url(../img/bg/03.webp) no-repeat;
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
  height: 100%;
  position: relative;
  padding-top: 100px;
  background-attachment: fixed;
}
.service-bg::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 130px;
  opacity: 1;
  background-color: var(--body-color);
}
.service-item {
  position: relative;
  box-shadow: 0 0 45px rgba(0, 0, 0, .08);
  background-color: var(--card-color);
  border-radius: 10px;
}

.service-item::after {
  content: "";
  position: absolute;
  width: 0;
  height: 0;
  left: 0;
  bottom: 0;
  border-radius: 10px;
  background: var(--primary-color);
  transition: 0.5s;
  z-index: 1;
}

.service-item:hover::after {
  width: 100%;
  height: 100%;
}

.service-item:hover .service-content,
.service-item:hover .service-btn {
  position: relative;
  z-index: 2;
}

.service-item .service-content a{
  color: var(--heading-text);
}

.service-item .service-content p {
  color: var(--para-text);
}

.service-item .service-content a,
.service-item .service-content p {
  transition: 0.5s;
}

.service-item:hover .service-content a,
.service-item:hover .service-content p {
  color: var(--white-color) !important;
}

.service-item:hover .service-content{
  color: var(--bs-white);
} 

.service-item .service-btn {
  width: 80px;
  height: 80px;
  border-radius: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--primary-color);
  transition: 0.5s;
}

.service-item .service-btn i {
  transition: 0.5s;
}

.service-item:hover .service-btn {
  background: var(--bs-white);
}

.service-item:hover .service-btn i {
  transform: rotate(360deg);
  color: var(--primary-color) !important;
}
/*** Service End ***/

/*-- Service --*/

.service-area .service-content {
  text-align: center;
  padding: 32px 20px 30px;
  border-radius: 25px;
  transition: 0.5s all ease;
  position: relative;
  border: 1px dashed var(--primary-color);
  margin-bottom: 30px;
}
.service-area .service-content a {
  display: block;
}
.service-area .service-content:hover {
  background-color:  var(--primary-color) !important;
}
.service-area .service-content:hover .service-shape {
  opacity: 1;
}
.service-area .service-content:hover h3 {
  color: #ffffff;
}
.service-area .service-content:hover p {
  color: #ffffff;
}
.service-area .service-content img {
  margin-bottom: 20px;
  width: 80px !important;
  height: 80px;
  margin-left: auto;
  margin-right: auto;
  display: block;
}
.service-area .service-content .service-shape {
  position: absolute;
  top: 0;
  left: 0;
  transition: 0.5s all ease;
  opacity: 0;
  width: 100% !important;
  height: 100% !important;
  margin-bottom: 0;
}
.service-area .service-content h3 {
  font-weight: 700;
  font-size: 22px;
  margin-bottom: 15px;
  transition: 0.5s all ease;
  color: var(--heading-text);
}
.service-area .service-content p {
  margin-bottom: 0;
  transition: 0.5s all ease;
  color: var(--para-text);
}
.service-area .service-slider {
  margin-bottom: -9px;
}
.service-area .service-slider .center {
  background-color:  var(--primary-color) !important;
  border-radius: 25px;
}
.service-area .service-slider .center .service-shape {
  opacity: 1;
}
.service-area .service-slider .center h3 {
  color: #ffffff;
}
.service-area .service-slider .center p {
  color: #ffffff;
}

.service-area .service-item img {
  margin-bottom: 20px;
  width: 80px !important;
  height: 80px;
  margin-left: auto;
  margin-right: auto;
  display: block;
}

.service-wrap{
  background-color: var(--body-color);
    position: relative;
    padding-top: 90px;
    padding-bottom: 60px;
    box-shadow: var(--box-shadow);
    z-index: 1;
}

/*-- End Service --*/

.brand-img{
width: 40px;
border-radius: 50%;
}

@media screen and (max-width: 991px)  {
  .menu-item-wrap .owl-nav {
      top: -20px;
      right: 0;
      left: 0;
  }
}

@media screen and (max-width: 991px) {
.our-talented-area .owl-nav {
  top: -20px;
  right: 0;
  left: 0;
}
}

/*====================================
    preloader css
=====================================*/
.preloader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #ffffff;
  z-index: 555555;
}
.loader {
  display: block;
  position: relative;
  left: 50%;
  top: 50%;
  width: 150px;
  height: 150px;
  margin: -75px 0 0 -75px;
  border-radius: 50%;
  border: 3px solid transparent;
  border-top-color: var(--primary-color);
  -webkit-animation: spin 2s linear infinite;
  animation: spin 2s linear infinite;
}
.loader::before {
  content: "";
  position: absolute;
  top: 5px;
  left: 5px;
  right: 5px;
  bottom: 5px;
  border-radius: 50%;
  border: 3px solid transparent;
  border-top-color: var(--primary-color);
  -webkit-animation: spin 3s linear infinite;
  animation: spin 3s linear infinite;
}
.loader::after {
  content: "";
  position: absolute;
  top: 15px;
  left: 15px;
  right: 15px;
  bottom: 15px;
  border-radius: 50%;
  border: 3px solid transparent;
  border-top-color: var(--primary-color);
  -webkit-animation: spin 1.5s linear infinite;
  animation: spin 1.5s linear infinite;
}
@-webkit-keyframes spin {
  0% {
      -webkit-transform: rotate(0deg);
      -ms-transform: rotate(0deg);
      transform: rotate(0deg);
  }
  100% {
      -webkit-transform: rotate(360deg);
      -ms-transform: rotate(360deg);
      transform: rotate(360deg);
  }
}
@keyframes spin {
  0% {
      -webkit-transform: rotate(0deg);
      -ms-transform: rotate(0deg);
      transform: rotate(0deg);
  }
  100% {
      -webkit-transform: rotate(360deg);
      -ms-transform: rotate(360deg);
      transform: rotate(360deg);
  }
}

#search_Box .error:not(.form-control) {
  position: absolute;
  top: 100%;
}

 /* Shape Section Title */

.divider {
  display: flex;
  align-items: center;
  justify-content: center;
  width: fit-content;     

}

.line {
  width: 70px;  
  height: 2px;
  background-color: var(--primary-color);
}

.dot {
  width: 6px;
  height: 6px;
  background: var(--primary-color);
  border-radius: 50%;
}

.diamond {
  width: 10px;
  height: 10px;
  background: var(--primary-color);
  transform: rotate(45deg);
  margin: 0 6px; 
}

  .blog-card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
  }

  .blog-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 25px rgba(0, 0, 0, 0.1);
  }

  .blog-card img {
    transition: transform 0.3s ease;
  }

  .blog-card:hover img {
    transform: scale(1.05);
  }


.history-img-wrapper {
    position: relative;
    overflow: hidden;
    border-radius: 15px;
    box-shadow: 0 10px 20px rgba(0,0,0,0.15);
}

.history-img {
    width: 100%;
    height: auto;
    transition: transform 0.6s ease, filter 0.6s ease;
    display: block;
}

.history-img-wrapper:hover .history-img {
    transform: scale(1.08);
    filter: brightness(1.05);
}

.history-img-wrapper::after {
    content: "";
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: linear-gradient(135deg, rgba(0,0,0,0.2), rgba(0,0,0,0));
    opacity: 0;
    transition: opacity 0.6s ease;
}

.history-img-wrapper:hover::after {
    opacity: 1;
}

@media (max-width: 576px) {
    .history-img {
        height: 250px; 
        object-fit: cover;
        border-radius: 10px;
    }
}


.event-img-wrapper {
    position: relative;
    overflow: hidden;
    border-radius: 15px; 
    box-shadow: 0 10px 20px rgba(0,0,0,0.15);
}

.event-img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.6s ease, filter 0.6s ease;
}

.event-img-wrapper:hover .event-img {
    transform: scale(1.08);
    filter: brightness(1.05);
}

.event-img-wrapper::after {
    content: "";
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: linear-gradient(135deg, rgba(0,0,0,0.25), rgba(0,0,0,0));
    opacity: 0;
    transition: opacity 0.6s ease;
    border-radius: 15px;
}

.event-img-wrapper:hover::after {
    opacity: 1;
}

@media (max-width: 576px) {
    .event-img {
        /* height: 220px;  */
        object-fit: cover;
        border-radius: 10px;
    }
}


.discover-img-wrapper {
    position: relative;
    overflow: hidden;
    border-radius: 15px;
    box-shadow: 0 10px 20px rgba(0,0,0,0.15);
}

.discover-img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.6s ease, filter 0.6s ease;
}

.discover-img-wrapper:hover .discover-img {
    transform: scale(1.08);
    filter: brightness(1.05);
}

.discover-img-wrapper::after {
    content: "";
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: linear-gradient(135deg, rgba(0,0,0,0.25), rgba(0,0,0,0));
    opacity: 0;
    transition: opacity 0.6s ease;
    border-radius: 15px;
}

.discover-img-wrapper:hover::after {
    opacity: 1;
}


@media (max-width: 576px) {
    .discover-img {
        height: 230px; 
        object-fit: cover;
        border-radius: 10px;
    }
}


@media (max-width: 767px) {
  .offcanvas-header {
    background: var(--offcanvas-header-bg);
    color: #fff; 
  }

  .offcanvas-body {
    background: var(--offcanvas-body-bg);
    color: #ddd; 
  }
}


/* ===================== Switch Button Styles ===================== */
.switchbtn {
  position: fixed;
  top: 150px;
  right: 0;
  z-index: 2;
  background: var(--primary-color);
  color: #fff;
  border: none;
  border-radius: 5px 0 0 5px;
  width:50px;      
  height: 50px;    
  cursor: pointer;
  box-shadow: 0 4px 12px rgba(0,0,0,0.2);
  transition: background 0.3s ease-in-out;
  display: flex;
  align-items: center;
  justify-content: center;
}

.switchbtn:hover{
   background: var(--secondary-color);

}

/* Icon inside button */
.switchbtn i {
  font-size: 20px;
  transition: transform 0.5s ease, color 0.5s ease;
}

/* Icon hover effect */
.switchbtn:hover i {    
  transform: rotate(360deg) scale(1.2); 
  color: #ffeb3b; 
}


.switchbtn:active i {
  transform: scale(0.9) rotate(-20deg); 
  color: #ffc107;
}

/* Mobile adjustments */
@media (max-width: 768px) {
  .switchbtn {
    top: 120px;
    width: 50px;
    height: 50px;
  }

  .switchbtn i {
    font-size: 1.4rem;
  }
}

.btn:first-child:active{
  background-color: var(--primary-color);
  border-color: var(--primary-color);
}

hr {
  border: none;
  height: 1px;
  background: var(--para-text)
}

.btn-primary{
  background-color: var(--primary-color);
  border-color: var(--primary-color);
  box-shadow: none;
}

.btn:focus-visible{
  outline-color: var(--primary-color);
    background-color: var(--primary-color);
  border-color: var(--primary-color);
  box-shadow: none;
}


input[type="date"]::-webkit-calendar-picker-indicator {
    background: none;
    color: transparent;
    opacity: 0;
    cursor: pointer;
}


@media (max-width: 991px) {
.about-image .store-img-two {
    position: absolute;
    top: 100px;
    left: 50px;
}
}


@media (max-width: 768px) {
.about-image .store-img-two {
    position: absolute;
    top: 150px;
    left: 160px;
}
}

@media (max-width: 470px) {
.about-image .store-img-two {
    position: absolute;
    top: 160px;
    left: 160px;
}
}

@media (max-width: 430px) {
    .about-image .store-img-two
 {
        position: absolute;
        top: 140px;
        left: 120px;
    }
}


@media (max-width: 500px) {
  .service-item .d-flex {
    flex-direction: column;   
    align-items: flex-start;  
    text-align: left;
  }

  .service-item .ps-4,
  .service-item .pe-4 {
    padding: 0 !important;
    margin: 0 0 15px 0;
  }

  .service-item .service-btn {
    order: 1;
  }

  .service-item .service-content {
    order: 2;
    width: 100%;
  }
}

@media (max-width: 390px) {
    .about-image .store-img-two {
        position: absolute;
        top: 107px;
        left: 115px;
    }
}

.default-btn .connect{
  font-size: 18px!important;
  background-color: unset;
}

#subscribe_Id .error:not(.form-control) {
    position: absolute;
    top: 100%;
}
/* =========================
   Flatpickr Custom Theme
   ========================= */
 
/* Month & Weekday Headers */
.flatpickr-months .flatpickr-month,
.flatpickr-current-month .flatpickr-monthDropdown-months .flatpickr-monthDropdown-month {
  background-color: var(--secondary-color);
  color: var(--white-color);
}
 
.flatpickr-weekdays {
  background-color: var(--primary-color);
  color: var(--white-color) !important;
}
 
.flatpickr-weekday {
  color: var(--white-color) !important;
}
 
/* Calendar Body */
.flatpickr-innerContainer {
  background-color: var(--secondary-color);
  color: var(--white-color);
}
 
/* Days */
.flatpickr-day {
  color: var(--white-color);
}
 
.flatpickr-day:hover,
.flatpickr-day:focus,
.flatpickr-day.inRange,
.flatpickr-day.prevMonthDay.inRange,
.flatpickr-day.nextMonthDay.inRange,
.flatpickr-day.prevMonthDay:hover,
.flatpickr-day.nextMonthDay:hover,
.flatpickr-day.prevMonthDay:focus,
.flatpickr-day.nextMonthDay:focus {
  cursor: pointer;
  outline: 0;
  border-color: var(--primary-color);
  background: var(--primary-color);
  color: #fff;
}
 
.flatpickr-day.selected {
  background: var(--primary-color);
  border-color: var(--primary-color);
  box-shadow: none;
  color: #fff;
}
 
.flatpickr-day.today {
  border-color: var(--white-color);
  color: var(--white-color);
}
 
.flatpickr-day.today:hover,
.flatpickr-day.today:focus {
  border-color: var(--primary-color);
  background: var(--primary-color);
  color: #fff;
}
 
.flatpickr-day.flatpickr-disabled,
.flatpickr-day.flatpickr-disable {
  cursor: not-allowed;
  color: rgba(174, 174, 174, 0.45);
}
 
/* Month Navigation Arrows */
.flatpickr-months .flatpickr-next-month,
.flatpickr-months .flatpickr-prev-month {
  user-select: none;
  cursor: pointer;
  position: absolute;
  top: 0;
  height: 34px;
  padding: 10px;
  z-index: 3;
}
 
.flatpickr-months .flatpickr-next-month svg path,
.flatpickr-months .flatpickr-prev-month svg path {
  transition: fill 0.1s;
  fill: var(--white-color);
}
 
/* Year Input Arrows */
.flatpickr-current-month .numInputWrapper span.arrowUp:after {
  border-bottom-color: rgba(255, 255, 255, 0.9);
}
 
.flatpickr-current-month .numInputWrapper span.arrowDown:after {
  border-top-color: rgba(255, 255, 255, 0.9);
}
 
.numInputWrapper span {
  border: 1px solid rgba(180, 180, 180, 0.79);
}
.alertmsg{
  z-index: 99999;
}