/**
* Template Name: Yummy
* Template URL: https://bootstrapmade.com/yummy-bootstrap-restaurant-website-template/
* Updated: Aug 07 2024 with Bootstrap v5.3.3
* Author: BootstrapMade.com
* License: https://bootstrapmade.com/license/
*/

/*--------------------------------------------------------------
# Font & Color Variables
# Help: https://bootstrapmade.com/color-system/
--------------------------------------------------------------*/
/* Fonts */
:root {
  --default-font: "Roboto", system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", "Liberation Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
  --heading-font: "Amatic SC", sans-serif;
  --nav-font: "Inter", sans-serif;
}

/* Global Colors - The following color variables are used throughout the website. Updating them here will change the color scheme of the entire website */
:root {
  --background-color: #ffffff;
  /* Background color for the entire website, including individual sections */
  --default-color: #212529;
  /* Default color used for the majority of the text content across the entire website */
  --heading-color: #37373f;
  /* Color for headings, subheadings and title throughout the website */
  --accent-color: #ce1212;
  /* Accent color that represents your brand on the website. It's used for buttons, links, and other elements that need to stand out */
  --surface-color: #ffffff;
  /* The surface color is used as a background of boxed elements within sections, such as cards, icon boxes, or other elements that require a visual separation from the global background. */
  --contrast-color: #ffffff;
  /* Contrast color for text, ensuring readability against backgrounds of accent, heading, or default colors. */
}

/* Nav Menu Colors - The following color variables are used specifically for the navigation menu. They are separate from the global colors to allow for more customization options */
:root {
  --nav-color: #7f7f90;
  /* The default color of the main navmenu links */
  --nav-hover-color: #ce1212;
  /* Applied to main navmenu links when they are hovered over or active */
  --nav-mobile-background-color: #ffffff;
  /* Used as the background color for mobile navigation menu */
  --nav-dropdown-background-color: #ffffff;
  /* Used as the background color for dropdown items that appear when hovering over primary navigation items */
  --nav-dropdown-color: #7f7f90;
  /* Used for navigation links of the dropdown items in the navigation menu. */
  --nav-dropdown-hover-color: #ce1212;
  /* Similar to --nav-hover-color, this color is applied to dropdown navigation links when they are hovered over. */
}

/* Color Presets - These classes override global colors when applied to any section or element, providing reuse of the sam color scheme. */

.light-background {
  --background-color: #f2f2f2;
  --surface-color: #ffffff;
}

.dark-background {
  --background-color: #1f1f24;
  --default-color: #ffffff;
  --heading-color: #ffffff;
  --surface-color: #37373f;
  --contrast-color: #ffffff;
}

/* Smooth scroll */
:root {
  scroll-behavior: smooth;
}

/*--------------------------------------------------------------
# General Styling & Shared Classes
--------------------------------------------------------------*/
body {
  color: var(--default-color);
  background-color: var(--background-color);
  font-family: var(--default-font);
}

a {
  color: var(--accent-color);
  text-decoration: none;
  transition: 0.3s;
}

a:hover {
  color: color-mix(in srgb, var(--accent-color), transparent 25%);
  text-decoration: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  color: var(--heading-color);
  /* font-family: var(--heading-font); */
}

/* Pulsating Play Button
------------------------------*/
.pulsating-play-btn {
  width: 94px;
  height: 94px;
  background: radial-gradient(#056b39 50%, color-mix(in srgb, #056b39, transparent 75%) 52%);
  border-radius: 50%;
  display: block;
  position: relative;
  overflow: hidden;
}

.pulsating-play-btn:before {
  content: "";
  position: absolute;
  width: 120px;
  height: 120px;
  animation-delay: 0s;
  animation: pulsate-play-btn 1s;
  animation-direction: forwards;
  animation-iteration-count: infinite;
  animation-timing-function: steps;
  opacity: 1;
  border-radius: 50%;
  border: 3px solid color-mix(in srgb, #056b39, transparent 30%);
  top: -15%;
  left: -15%;
  background: rgba(198, 16, 0, 0);
}

.pulsating-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);
}

.pulsating-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;
  animation: none;
  border-radius: 0;
}

.pulsating-play-btn:hover:after {
  border-left: 15px solid rgb(0, 0, 0);
  transform: scale(20);
}

@keyframes pulsate-play-btn {
  0% {
    transform: scale(0.6, 0.6);
    opacity: 1;
  }

  100% {
    transform: scale(1, 1);
    opacity: 0;
  }
}

/* PHP Email Form Messages
------------------------------*/
.php-email-form .error-message {
  display: none;
  background: #df1529;
  color: #ffffff;
  text-align: left;
  padding: 15px;
  margin-bottom: 24px;
  font-weight: 600;
}

.php-email-form .sent-message {
  display: none;
  color: #ffffff;
  background: #059652;
  text-align: center;
  padding: 15px;
  margin-bottom: 24px;
  font-weight: 600;
}

.php-email-form .loading {
  display: none;
  background: var(--surface-color);
  text-align: center;
  padding: 15px;
  margin-bottom: 24px;
}

.php-email-form .loading:before {
  content: "";
  display: inline-block;
  border-radius: 50%;
  width: 24px;
  height: 24px;
  margin: 0 10px -6px 0;
  border: 3px solid var(--accent-color);
  border-top-color: var(--surface-color);
  animation: php-email-form-loading 1s linear infinite;
}

@keyframes php-email-form-loading {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

/*--------------------------------------------------------------
# Global Header
--------------------------------------------------------------*/
/* ===========================
   Header Styling
=========================== */

.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  color: var(--default-color);
  background-color: var(--background-color);
  padding: 16px 0;
  transition: all 0.4s ease;
  z-index: 9999;
  /* make sure it stays above everything */
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.05);
}

/* Logo Section */
.header .logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}

.header .logo img {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  object-fit: cover;
}

.header .logo span {
  font-size: 20px;
  font-weight: 700;
  color: var(--heading-color);
  font-family: var(--default-font);
  transition: color 0.3s;
}

.header .logo span:hover {
  color: rgb(80, 80, 80);
}

/* Navigation Links */
.navmenu ul {
  display: flex;
  align-items: center;
  gap: 30px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.navmenu a {
  font-size: 15px;
  color: var(--default-color);
  font-weight: 500;
  text-decoration: none;
  transition: color 0.3s;
}

.navmenu a:hover,
.navmenu a.active {
  color: #056b39;
}

/* Order Now Button */
.header .btn-getstarted,
.header .btn-getstarted:focus {
  color: var(--contrast-color);
  background: #056b39;
  font-size: 15px;
  padding: 8px 15px;
  border-radius: 8px;
  transition: all 0.3s ease;
  text-decoration: none;
  font-family: 'Poppins', sans-serif;

}

.header .btn-getstarted:hover,
.header .btn-getstarted:focus:hover {
  background: color-mix(in srgb, rgb(88, 88, 88), transparent 15%);
  transform: scale(1.05);
}

.header .btn-getstarted img {
  position: relative;
  right: 10px;
}

/* Responsive Layout */
@media (max-width: 1200px) {
  .header .container {
    flex-wrap: wrap;
    justify-content: space-between;
  }

  .navmenu ul {
    display: none;
    flex-direction: column;
    background: var(--background-color);
    width: 100%;
    padding: 15px 0;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  }

  .navmenu.active ul {
    display: flex;
  }

  /* .header .btn-getstarted { margin-top: 10px; } */
  .header .logo span {
    font-size: 16px;
    font-weight: 700;
    color: var(--heading-color);
    font-family: var(--default-font);
    transition: color 0.3s;
  }
}


/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/
/* Desktop Navigation */
@media (min-width: 1200px) {
  .navmenu {
    padding: 0;
  }

  .navmenu ul {
    margin: 0;
    padding: 0;
    display: flex;
    list-style: none;
    align-items: center;
  }

  .navmenu li {
    position: relative;
  }

  .navmenu>ul>li {
    white-space: nowrap;
    padding: 15px 14px;
  }

  .navmenu>ul>li:last-child {
    padding-right: 0;
  }

  .navmenu a,
  .navmenu a:focus {
    color: var(--nav-color);
    font-size: 15px;
    padding: 0 2px;
    font-family: var(--nav-font);
    font-weight: 500;
    display: flex;
    align-items: center;
    justify-content: space-between;
    white-space: nowrap;
    transition: 0.3s;
    position: relative;
  }

  .navmenu a i,
  .navmenu a:focus i {
    font-size: 12px;
    line-height: 0;
    margin-left: 5px;
    transition: 0.3s;
  }

  .navmenu>ul>li>a:before {
    content: "";
    position: absolute;
    height: 2px;
    bottom: -6px;
    left: 0;
    background-color: #056b39;
    visibility: hidden;
    width: 0px;
    transition: all 0.3s ease-in-out 0s;
  }

  .navmenu a:hover:before,
  .navmenu li:hover>a:before,
  .navmenu .active:before {
    visibility: visible;
    width: 100%;
  }

  .navmenu li:hover>a,
  .navmenu .active,
  .navmenu .active:focus {
    color: color-mix(in srgb, var(--nav-color) 80%, #056b39 50%);
  }

  .navmenu .dropdown ul {
    margin: 0;
    padding: 10px 0;
    background: var(--nav-dropdown-background-color);
    display: block;
    position: absolute;
    visibility: hidden;
    left: 14px;
    top: 130%;
    opacity: 0;
    transition: 0.3s;
    border-radius: 4px;
    z-index: 99;
    box-shadow: 0px 0px 30px rgba(0, 0, 0, 0.1);
  }

  .navmenu .dropdown ul li {
    min-width: 200px;
  }

  .navmenu .dropdown ul a {
    padding: 10px 20px;
    font-size: 15px;
    text-transform: none;
    color: var(--nav-dropdown-color);
  }

  .navmenu .dropdown ul a i {
    font-size: 12px;
  }

  .navmenu .dropdown ul a:hover,
  .navmenu .dropdown ul .active:hover,
  .navmenu .dropdown ul li:hover>a {
    color: var(--nav-dropdown-hover-color);
  }

  .navmenu .dropdown:hover>ul {
    opacity: 1;
    top: 100%;
    visibility: visible;
  }

  .navmenu .dropdown .dropdown ul {
    top: 0;
    left: -90%;
    visibility: hidden;
  }

  .navmenu .dropdown .dropdown:hover>ul {
    opacity: 1;
    top: 0;
    left: -100%;
    visibility: visible;
  }
}

/* Mobile Navigation */
@media (max-width: 1199px) {
  .mobile-nav-toggle {
    color: var(--nav-color);
    font-size: 28px;
    line-height: 0;
    margin-right: 10px;
    cursor: pointer;
    transition: color 0.3s;
  }

  .navmenu {
    padding: 0;
    z-index: 9997;
    position: relative;
    left: 133px;
  }

  .header .btn-getstarted,
  .header .btn-getstarted:focus {
    color: var(--contrast-color);
    background: var(--accent-color);
    font-size: 15px;
    padding: 8px 28px;
    border-radius: 50px;
    transition: all 0.3s ease;
    text-decoration: none;
    position: relative;
    right: 43px;
  }

  .navmenu ul {
    display: none;
    list-style: none;
    position: absolute;
    inset: 60px 20px 20px 20px;
    padding: 10px 0;
    margin: 0;
    border-radius: 6px;
    background-color: var(--nav-mobile-background-color);
    border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
    box-shadow: none;
    overflow-y: auto;
    transition: 0.3s;
    z-index: 9998;
  }

  .navmenu a,
  .navmenu a:focus {
    color: var(--nav-dropdown-color);
    padding: 10px 20px;
    font-family: var(--nav-font);
    font-size: 17px;
    font-weight: 500;
    display: flex;
    align-items: center;
    justify-content: space-between;
    white-space: nowrap;
    transition: 0.3s;
  }

  .navmenu a i,
  .navmenu a:focus i {
    font-size: 12px;
    line-height: 0;
    margin-left: 5px;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: 0.3s;
    background-color: color-mix(in srgb, var(--accent-color), transparent 90%);
  }

  .navmenu a i:hover,
  .navmenu a:focus i:hover {
    background-color: var(--accent-color);
    color: var(--contrast-color);
  }

  .navmenu a:hover,
  .navmenu .active,
  .navmenu .active:focus {
    color: var(--nav-dropdown-hover-color);
  }

  .navmenu .active i,
  .navmenu .active:focus i {
    background-color: var(--accent-color);
    color: var(--contrast-color);
    transform: rotate(180deg);
  }

  .navmenu .dropdown ul {
    position: static;
    display: none;
    z-index: 99;
    padding: 10px 0;
    margin: 10px 20px;
    background-color: var(--nav-dropdown-background-color);
    transition: all 0.5s ease-in-out;
  }

  .navmenu .dropdown ul ul {
    background-color: rgba(33, 37, 41, 0.1);
  }

  .navmenu .dropdown>.dropdown-active {
    display: block;
    background-color: rgba(33, 37, 41, 0.03);
  }

  .mobile-nav-active {
    overflow: hidden;
  }

  .mobile-nav-active .mobile-nav-toggle {
    color: #fff;
    position: absolute;
    font-size: 32px;
    top: 15px;
    right: 15px;
    margin-right: 0;
    z-index: 9999;
  }

  .mobile-nav-active .navmenu {
    position: fixed;
    overflow: hidden;
    inset: 0;
    background: rgba(33, 37, 41, 0.8);
    transition: 0.3s;
  }

  .mobile-nav-active .navmenu>ul {
    display: block;
  }
}






/* Mobile Navigation - Smaller Devices */
@media (max-width: 767px) {
  .mobile-nav-toggle {
    color: var(--nav-color);
    font-size: 37px;
    line-height: 0;
    margin-right: 8px;
    cursor: pointer;
    transition: color 0.3s;
    z-index: 99999;
  }

  .navmenu {
    padding: 0;
    z-index: 99999;
    position: relative;
    left: 110px;
    /* adjust to fit smaller screens */
  }

  .header .btn-getstarted,
  .header .btn-getstarted:focus {
    color: var(--contrast-color);
    background: #056b39;
    font-size: 14px;
    padding: 6px 15px;
    border-radius: 4px;
    transition: all 0.3s ease;
    text-decoration: none;
    position: relative;
    right: 40px;
  }

  .navmenu ul {
    display: none;
    list-style: none;
    position: absolute;
    inset: 60px 10px 10px 0px;
    padding: 8px 0;
    margin: 0;
    border-radius: 6px;
    background-color: var(--nav-mobile-background-color);
    border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
    box-shadow: none;
    overflow-y: auto;
    transition: 0.3s;
    z-index: 9998;
  }

  .navmenu a,
  .navmenu a:focus {
    color: var(--nav-dropdown-color);
    padding: 8px 15px;
    font-family: var(--nav-font);
    font-size: 16px;
    font-weight: 500;
    display: flex;
    align-items: center;
    justify-content: space-between;
    white-space: nowrap;
    transition: 0.3s;
  }

  .navmenu a i,
  .navmenu a:focus i {
    font-size: 11px;
    line-height: 0;
    margin-left: 4px;
    width: 28px;
    height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: 0.3s;
    background-color: color-mix(in srgb, var(--accent-color), transparent 90%);
  }

  .navmenu a i:hover,
  .navmenu a:focus i:hover {
    background-color: var(--accent-color);
    color: var(--contrast-color);
  }

  .navmenu a:hover,
  .navmenu .active,
  .navmenu .active:focus {
    color: var(--nav-dropdown-hover-color);
  }

  .navmenu .active i,
  .navmenu .active:focus i {
    background-color: var(--accent-color);
    color: var(--contrast-color);
    transform: rotate(180deg);
  }

  .navmenu .dropdown ul {
    position: static;
    display: none;
    z-index: 99;
    padding: 8px 0;
    margin: 8px 15px;
    background-color: var(--nav-dropdown-background-color);
    transition: all 0.5s ease-in-out;
  }

  .navmenu .dropdown ul ul {
    background-color: rgba(33, 37, 41, 0.05);
  }

  .navmenu .dropdown>.dropdown-active {
    display: block;
    background-color: rgba(33, 37, 41, 0.03);
  }

  .mobile-nav-active {
    overflow: hidden;
  }

  .mobile-nav-active .mobile-nav-toggle {
    color: #fff;
    position: absolute;
    font-size: 30px;
    top: 12px;
    right: 12px;
    margin-right: 0;
    z-index: 9999;
  }

  .mobile-nav-active .navmenu {
    position: fixed;
    overflow: hidden;
    inset: 0;
    background: rgba(33, 37, 41, 0.9);
    transition: 0.3s;
  }

  .mobile-nav-active .navmenu>ul {
    display: block;
  }
}

/*--------------------------------------------------------------
# Global Footer
--------------------------------------------------------------*/
.footer {
  --heading-font: var(--default-font);
  color: var(--default-color);
  background-color: #056b39;
  font-size: 14px;
  padding: 40px 0;
  position: relative;
}

.footer .icon {
  color: var(--accent-color);
  margin-right: 15px;
  font-size: 24px;
  line-height: 0;
}

.footer h4 {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 15px;
}

.footer .address p {
  margin-bottom: 0px;
}

.footer .social-links a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 33px;

  font-size: 16px;
  color: color-mix(in srgb, var(--default-color), transparent 50%);
  margin-right: 18px;
  transition: 0.3s;
}

.footer .social-links a:hover {
  color: var(--accent-color);
  border-color: var(--accent-color);
}

.footer .copyright {
  padding-top: 20px;
  border-top: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}

.footer .copyright p {
  margin-bottom: 0;
}

.footer .credits {
  margin-top: 5px;
  font-size: 13px;
}

/*--------------------------------------------------------------
# Preloader
--------------------------------------------------------------*/
#preloader {
  position: fixed;
  inset: 0;
  z-index: 9999;
  overflow: hidden;
  background-color: var(--background-color);
  transition: all 0.6s ease-out;
  width: 100%;
  height: 100vh;
}

#preloader:before,
#preloader:after {
  content: "";
  position: absolute;
  border: 4px solid #056b39;
  border-radius: 50%;
  animation: animate-preloader 2s cubic-bezier(0, 0.2, 0.8, 1) infinite;
}

#preloader:after {
  animation-delay: -0.5s;
}

@keyframes animate-preloader {
  0% {
    width: 10px;
    height: 10px;
    top: calc(50% - 5px);
    left: calc(50% - 5px);
    opacity: 1;
  }

  100% {
    width: 72px;
    height: 72px;
    top: calc(50% - 36px);
    left: calc(50% - 36px);
    opacity: 0;
  }
}

/*--------------------------------------------------------------
# Scroll Top Button
--------------------------------------------------------------*/
.scroll-top {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  right: 15px;
  bottom: -15px;
  z-index: 99999;
  background-color: var(--accent-color);
  width: 44px;
  height: 44px;
  border-radius: 50px;
  transition: all 0.4s;
}

.scroll-top i {
  font-size: 24px;
  color: var(--contrast-color);
  line-height: 0;
}

.scroll-top:hover {
  background-color: color-mix(in srgb, var(--accent-color), transparent 20%);
  color: var(--contrast-color);
}

.scroll-top.active {
  visibility: visible;
  opacity: 1;
  bottom: 15px;
}

/*--------------------------------------------------------------
# Disable aos animation delay on mobile devices
--------------------------------------------------------------*/
@media screen and (max-width: 768px) {
  [data-aos-delay] {
    transition-delay: 0 !important;
  }
}

/*--------------------------------------------------------------
# Global Page Titles & Breadcrumbs
--------------------------------------------------------------*/
.page-title {
  --background-color: color-mix(in srgb, var(--default-color), transparent 96%);
  color: var(--default-color);
  background-color: var(--background-color);
  padding: 120px 0;
  text-align: center;
  position: relative;
}

.page-title h1 {
  font-size: 42px;
  font-weight: 400;
  margin-bottom: 10px;
  font-family: var(--default-font);
}

.page-title .breadcrumbs ol {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  justify-content: center;
  padding: 0;
  margin: 0;
  font-size: 16px;
  font-weight: 400;
}

.page-title .breadcrumbs ol li+li {
  padding-left: 10px;
}

.page-title .breadcrumbs ol li+li::before {
  content: "/";
  display: inline-block;
  padding-right: 10px;
  color: color-mix(in srgb, var(--default-color), transparent 70%);
}

/*--------------------------------------------------------------
# Global Sections
--------------------------------------------------------------*/
section,
.section {
  color: var(--default-color);
  background-color: var(--background-color);
  padding: 25px 0;
  scroll-margin-top: 92px;
  overflow: clip;
}

@media (max-width: 1199px) {

  section,
  .section {
    scroll-margin-top: 56px;
  }
}

/*--------------------------------------------------------------
# Global Section Titles
--------------------------------------------------------------*/
.section-title {
  text-align: center;
  padding-bottom: 30px;
  position: relative;
}

.section-title h2 {
  font-size: 13px;
  letter-spacing: 1px;
  font-weight: 400;
  padding: 0;
  margin: 0;
  color: color-mix(in srgb, var(--default-color), transparent 50%);
  display: inline-block;
  text-transform: uppercase;
  font-family: var(--default-font);
}

.section-title p {
  color: #636363;
  margin: 5px 0 0 0;
  font-family: 'Poppins', sans-serif;
  font-size: 2rem;
  font-weight: 600;
  letter-spacing: 0.5px;
  text-transform: capitalize;
}

.section-title p .description-title {
  color:#056b39;
}


/* ===============================
   HERO SECTION
================================= */
/* HERO BASE */
#hero {
  padding: 0;
  margin-top: 80px;
  /* for sticky header */
}

/* Carousel full width */
#heroCarousel,
#heroCarousel .carousel-inner,
#heroCarousel .carousel-item {
  width: 100%;
}

/* Image wrapper */
.hero-picture {
  display: block;
  width: 100%;
}

/* DESKTOP IMAGE */
.hero-img {
  width: 100%;
  object-fit: cover;
  display: block;
}

/* Indicators */
#heroCarousel .carousel-indicators {
  bottom: 5px;
}

#heroCarousel .carousel-indicators button {
  width: 9px;
  height: 0px;
  border-radius: 60%;
  background: #ccc;
  opacity: 1;
  border-top: 4px solid transparent;
  border-bottom: 6px solid transparent;
}

#heroCarousel .carousel-indicators .active {
  background: #000000;
}

/* MOBILE */
@media (max-width: 768px) {
  #hero {
    margin-top: 70px;
  }

  .hero-img {
    height: auto;
    /* natural mobile image height */
    /* max-height: 320px; */
  }

  #heroCarousel .carousel-indicators {
    bottom: 10px;
  }
}

/*--------------------------------------------------------------
# About Section
--------------------------------------------------------------*/
.about h3 {
  font-weight: 700;
  font-size: 28px;
  margin-bottom: 20px;
}

.about .book-a-table {
  text-align: center;
  padding: 22px;
  top: 13px;
  position: relative;
  background: #34495e;
}

.about .book-a-table h3 {
  font-family: var(--default-font);
  margin: 0 0 0 0;
  font-size: 24px;
  color: white;
}

.about .book-a-table p {
  color: var(--accent-color);
  font-weight: 500;
  font-size: 13px;
  position: relative;
  color: white;
  margin: 0;
  top: 17px;
}

.about .fst-italic {
  color: color-mix(in srgb, var(--default-color), var(--contrast-color) 50%);
}

.about .content ul {
  list-style: none;
  padding: 0;
}

.about .content ul li {
  padding: 0 0 10px 30px;
  position: relative;
}

.about .content ul i {
  position: absolute;
  font-size: 20px;
  left: 0;
  top: -3px;
  color: var(--accent-color);
}

.about .content p:last-child {
  margin-bottom: 0;
}

.about .pulsating-play-btn {
  position: absolute;
  left: calc(50% - 47px);
  top: calc(50% - 47px);
}

/* About Read More */
.about-para {
  max-height: 180px;
  /* initial visible height */
  overflow: hidden;
  transition: max-height 0.4s ease;
  position: relative;
  line-height: 1.7;
}

.about-para.expanded {
  max-height: 260px;
  /* expanded height */
  overflow-y: auto;
  padding-right: 8px;
}

/* Scrollbar (optional clean look) */
.about-para::-webkit-scrollbar {
  width: 5px;
}

.about-para::-webkit-scrollbar-thumb {
  background: #ccc;
  border-radius: 10px;
}

/* Read more button */
.read-more-btn {
  border: none;
  background: none;
  color: #3a3a3a;
  font-weight: 500;
  margin-top: 8px;
  cursor: pointer;
  padding: 0;
}

/* Mobile tweaks */
@media (max-width: 768px) {
  .about-para {
    max-height: 170px;
  }

  .about-para.expanded {
    max-height: 220px;
  }
}

.about .container {
  margin-bottom: 0px;
}

/*--------------------------------------------------------------
# Why Us Section
--------------------------------------------------------------*/
.why-us .why-box {
  color: var(--contrast-color);
  background: var(--accent-color);
  padding: 30px;
}

.why-us .why-box h3 {
  color: var(--contrast-color);
  font-family: var(--default-font);
  font-weight: 700;
  font-size: 34px;
  margin-bottom: 30px;
}

.why-us .why-box p {
  margin-bottom: 30px;
}

.why-us .why-box .more-btn {
  display: inline-block;
  background: color-mix(in srgb, var(--contrast-color), transparent 85%);
  padding: 8px 40px 10px 40px;
  color: var(--contrast-color);
  transition: all ease-in-out 0.4s;
  border-radius: 50px;
}

.why-us .why-box .more-btn i {
  font-size: 14px;
}

.why-us .why-box .more-btn:hover {
  color: var(--accent-color);
  background: var(--surface-color);
}

.why-us .icon-box {
  background-color: var(--surface-color);
  text-align: center;
  padding: 40px 30px;
  width: 100%;
  height: 100%;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}

.why-us .icon-box i {
  color: var(--accent-color);
  font-size: 32px;
  margin-bottom: 30px;
  background: color-mix(in srgb, var(--accent-color), transparent 95%);
  border-radius: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 72px;
  height: 72px;
  transition: 0.3s;
}


.why-us .icon-box h4 {
  font-size: 20px;
  font-weight: 500;
  margin: 0 0 30px 0;
  font-family: var(--default-font);
}

.why-us .icon-box p {
  font-size: 15px;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
}

.why-us .icon-box:hover i {
  color: var(--contrast-color);
  background: var(--accent-color);
}


.icon-box {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

/* Normal image */
.icon-box img {
  width: 80px;
  height: 80px;
  border-radius: 45px;
  object-fit: fill;
  transition: opacity 0.3s ease-in-out;
}

/* Hover image overlay */
.icon-box::after {
  content: "";
  position: absolute;
  top: 42px;
  /* adjust vertically if needed */
  width: 80px;
  height: 80px;
  border-radius: 45px;
  background: url("../img/Rice_white.svg") no-repeat center/cover;
  opacity: 0;
  transition: opacity 0.3s ease-in-out;
}

/* Hover effect */
.icon-box:hover img {
  opacity: 0;
}

.icon-box:hover::after {
  opacity: 1;
}

/* icon1 */

.icon1 {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

/* Normal image */
.icon1 img {
  width: 80px;
  height: 80px;
  border-radius: 45px;
  object-fit: fill;
  transition: opacity 0.3s ease-in-out;
}

/* Hover image overlay */
.icon1::after {
  content: "";
  position: absolute;
  top: 42px;
  /* perfectly overlaps the image */
  width: 80px;
  height: 80px;
  border-radius: 45px;
  background: url("../img/chicken_white\ \(3\).svg") no-repeat center/cover;
  opacity: 0;
  transition: opacity 0.3s ease-in-out;
}

/* Hover effect */
.icon1:hover img {
  opacity: 0;
}

.icon1:hover::after {
  opacity: 1;
}

/* icon2 */
.icon2 {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

/* Normal image */
.icon2 img {
  width: 80px;
  height: 80px;
  border-radius: 45px;
  object-fit: fill;
  transition: opacity 0.3s ease-in-out;
}

/* Hover image overlay */
.icon2::after {
  content: "";
  position: absolute;
  top: 42px;
  /* perfectly overlaps the image */
  width: 80px;
  height: 80px;
  border-radius: 45px;
  background: url("../img/serving_with_white.svg") no-repeat center/cover;
  opacity: 0;
  transition: opacity 0.3s ease-in-out;
}

/* Hover effect */
.icon2:hover img {
  opacity: 0;
}

.icon2:hover::after {
  opacity: 1;
}

/*--------------------------------------------------------------
# Stats Section
--------------------------------------------------------------*/
.stats {
  position: relative;
  padding: 120px 0;
}

.stats img {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}

.stats:before {
  content: "";
  background: color-mix(in srgb, var(--background-color), transparent 40%);
  position: absolute;
  inset: 0;
  z-index: 2;
}

.stats .container {
  position: relative;
  z-index: 3;
}

.stats .stats-item {
  padding: 30px;
  width: 100%;
}

.stats .stats-item span {
  font-size: 48px;
  display: block;
  color: var(--default-color);
  font-weight: 700;
}

.stats .stats-item p {
  padding: 0;
  margin: 0;
  font-size: 16px;
  font-weight: 700;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
}

/*--------------------------------------------------------------
# Menu Section
--------------------------------------------------------------*/
.menu .nav-tabs {
  border: 0;
}

.menu .nav-link {
  background-color: var(--background-color);
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  margin: 0 15px;
  padding: 10px 5px;
  transition: 0.3s;
  border-radius: 0;
  cursor: pointer;
  height: 100%;
  border: 0;
  position: relative;
  bottom: 27px;
  border-bottom: 2px solid color-mix(in srgb, var(--default-color), transparent 80%);
}

@media (max-width: 575px) {
  .menu .nav-link {
    margin: 0 10px;
    padding: 10px 0;
    position: relative;
    bottom: 16px;
  }
}

.menu .nav-link i {
  padding-right: 15px;
  font-size: 48px;
}

.menu .nav-link h4 {
  font-size: 18px;
  font-weight: 400;
  margin: 0;
  font-family: var(--default-font);
}

@media (max-width: 575px) {
  .menu .nav-link h4 {
    font-size: 16px;
  }
}

.menu .nav-link:hover {
  color: var(--accent-color);
  border-color: var(--accent-color);
}

.menu .nav-link.active {
  background-color: var(--background-color);
  color: var(--accent-color);
  border-color: var(--accent-color);
}

.menu .tab-content .tab-header {
  padding: 30px 0;
}

.menu .tab-content .tab-header p {
  font-size: 14px;
  text-transform: uppercase;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  margin-bottom: 0;
}

.menu .tab-content .tab-header h3 {
  font-size: 48px;
  font-weight: 700;
  color: var(--accent-color);
}

.menu .tab-content .menu-item {
  text-align-last: center;
}

.menu .tab-content .menu-item .menu-img {
    padding: 0 20px;
    margin-bottom: 33px;

}

.menu .tab-content .menu-item h4 {
  font-size: 22px;
  font-weight: 400;
  margin-bottom: 5px;
  font-family: var(--default-font);
}

.menu .tab-content .menu-item .ingredients {
  font-family: var(--nav-font);
  color: color-mix(in srgb, var(--default-color), transparent 50%);
  margin-bottom: 5px;
}

.menu .tab-content .menu-item .price {
  font-size: 24px;
  font-weight: 700;
  color: var(--accent-color);
}

/* Import the professional font */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600&display=swap');

/*--------------------------------------------------------------
# Testimonials Section (Clean, Uniform Font)
--------------------------------------------------------------*/
.testimonials {
  font-family: 'Poppins', sans-serif;

  background-color: #f9fafc;
  padding: 30px 0;
}

.testimonials .testimonial-item {
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 4px 25px rgba(0, 0, 0, 0.08);
  padding: 35px 30px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.testimonials .testimonial-item:hover {
  transform: translateY(-6px);
  box-shadow: 0 8px 35px rgba(0, 0, 0, 0.12);
}

.testimonials .testimonial-content {
  border-left: 3px solid #056b39;
  padding-left: 25px;
}

.testimonials .testimonial-item .testimonial-img {
  border-radius: 50%;
  border: 4px solid #fff;
  width: 90px;
  height: 90px;
  object-fit: cover;
  margin: 0 auto 15px auto;
  display: block;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.testimonials .testimonial-item h3 {
  font-size: 1.15rem;
  color: #222;
  font-weight: 600;
  margin: 10px 0 5px 0;
  letter-spacing: 0.3px;
  font-family: 'Poppins', sans-serif;

}

.testimonials .testimonial-item h4 {
  font-size: 0.9rem;
  color: #6c757d;
  margin-bottom: 10px;
  font-weight: 500;
  font-family: 'Poppins', sans-serif;

}

.testimonials .testimonial-item p {
  font-size: 0.95rem;
  line-height: 1.7;
  color: #444;
  font-style: normal;
  margin-bottom: 15px;
}

.testimonials .testimonial-item .stars a {
  position: relative;
  bottom: 21px;
  right: 17px;
}

.testimonials .testimonial-item .quote-icon-left,
.testimonials .testimonial-item .quote-icon-right {
  color: rgba(76, 99, 255, 0.4);
  font-size: 22px;
  line-height: 0;
}

.testimonials .testimonial-item .quote-icon-left {
  display: inline-block;
  left: -5px;
  position: relative;
}

.testimonials .testimonial-item .quote-icon-right {
  display: inline-block;
  right: -5px;
  position: relative;
  top: 10px;
  transform: scale(-1, -1);
}

.testimonials .swiper-pagination {
  margin-top: 35px;
  position: relative;
}

.testimonials .swiper-pagination .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  background-color: rgba(0, 0, 0, 0.15);
  opacity: 1;
}

.testimonials .swiper-pagination .swiper-pagination-bullet-active {
  background-color: #056b39;
}

/*--------------------------------------------------------------
# Events Section
--------------------------------------------------------------*/
.events .container-fluid {
  padding: 0;
}

.events .event-item {
  background-size: cover;
  background-position: cente;
  min-height: 600px;
  padding: 30px;
}

@media (max-width: 575px) {
  .events .event-item {
    min-height: 500px;
  }
}

.events .event-item:before {
  content: "";
  background: rgba(0, 0, 0, 0.6);
  position: absolute;
  inset: 0;
}

.events .event-item h3 {
  font-size: 24px;
  font-weight: 700;
  /* text-decoration: underline var(--accent-color); */
  /* margin-bottom: 5px; */
  color: #ffffff;
  position: relative;
  font-family: 'Poppins', sans-serif;

}

.events .event-item .price {
  color: #ffffff;
  /* border-bottom: 2px solid var(--accent-color); */
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 15px;
  position: relative;
}

.events .event-item .description {
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.8);
  position: relative;
}

.events .swiper-wrapper {
  height: auto;
}

.events .swiper-pagination {
  margin-top: 20px;
  position: relative;
}

.events .swiper-pagination .swiper-pagination-bullet {
  width: 10px;
  height: 10px;
  background-color: color-mix(in srgb, var(--default-color), transparent 85%);
  opacity: 1;
}

.events .swiper-pagination .swiper-pagination-bullet-active {
  background-color: var(--accent-color);
}

/*--------------------------------------------------------------
# Chefs Section
--------------------------------------------------------------*/
/* Team Member Box */
.team-member-box {
  background-color: #fff;
  border-radius: 1rem;
  /* big rounded card */
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
  padding: 2rem;
  display: flex;
  align-items: center;
  gap: 2rem;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.team-member-box:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.18);
}

/* Member Image */
.team-member-box .member-img {
  position: relative;
  width: 220px;
  /* image width */
  flex-shrink: 0;
}

.Founder-tit {
  position: relative;
  bottom: 28px;
}

.team-member-box .member-img img {
  width: 100%;
  height: auto;
  border-radius: 1rem;
  object-fit: cover;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.15);
}

/* Social Icons on Image */
.team-member-box .social {
  position: absolute;
  bottom: 10px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 10px;
}

.team-member-box .social a {
  color: #444;
  font-size: 1rem;
  transition: all 0.3s ease;
}

.team-member-box .social a:hover {
  color: #4c63ff;
  /* accent color */
  transform: scale(1.2);
}

/* Member Info */
.team-member-box .member-info h4 {
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: 1.5rem;
  margin-bottom: 0.3rem;
}

.team-member-box .member-info span {
  font-size: 0.95rem;
  color: #6c757d;
  display: block;
  margin-bottom: 1rem;
}

.team-member-box .member-info p {
  font-family: 'Poppins', sans-serif;
  font-size: 1rem;
  line-height: 1.7;
  color: #555;
}

/* Responsive for smaller screens */
@media (max-width: 991px) {
  .team-member-box {
    flex-direction: column;
    text-align: center;
    gap: 1.5rem;
  }

  .team-member-box .member-img {
    width: 180px;
  }

  .team-member-box .social {
    bottom: 0;
  }
}


/*--------------------------------------------------------------
# Book A Table Section
--------------------------------------------------------------*/
.book-a-table .reservation-img {
  min-height: 500px;
  background-size: cover;
  background-position: center;
}

.book-a-table .reservation-form-bg {
  background: color-mix(in srgb, var(--default-color), transparent 97%);
}

.book-a-table .php-email-form {
  padding: 30px;
}

@media (max-width: 575px) {
  .book-a-table .php-email-form {
    padding: 20px;
  }
}

.book-a-table .php-email-form input[type=text],
.book-a-table .php-email-form input[type=email],
.book-a-table .php-email-form input[type=number],
.book-a-table .php-email-form input[type=date],
.book-a-table .php-email-form input[type=time],
.book-a-table .php-email-form textarea {
  font-size: 14px;
  padding: 10px 15px;
  box-shadow: none;
  border-radius: 0;
  color: var(--default-color);
  background-color: color-mix(in srgb, var(--background-color), transparent 20%);
  border-color: color-mix(in srgb, var(--default-color), transparent 80%);
}

.book-a-table .php-email-form input[type=text]:focus,
.book-a-table .php-email-form input[type=email]:focus,
.book-a-table .php-email-form input[type=number]:focus,
.book-a-table .php-email-form input[type=date]:focus,
.book-a-table .php-email-form input[type=time]:focus,
.book-a-table .php-email-form textarea:focus {
  border-color: var(--accent-color);
}

.book-a-table .php-email-form input[type=text]::placeholder,
.book-a-table .php-email-form input[type=email]::placeholder,
.book-a-table .php-email-form input[type=number]::placeholder,
.book-a-table .php-email-form input[type=date]::placeholder,
.book-a-table .php-email-form input[type=time]::placeholder,
.book-a-table .php-email-form textarea::placeholder {
  color: color-mix(in srgb, var(--default-color), transparent 70%);
}

.book-a-table .php-email-form button[type=submit] {
  color: var(--contrast-color);
  background: var(--accent-color);
  border: 0;
  padding: 14px 60px;
  transition: 0.4s;
  border-radius: 4px;
}

.book-a-table .php-email-form button[type=submit]:hover {
  background: color-mix(in srgb, var(--accent-color), transparent 20%);
}

/*--------------------------------------------------------------
# Gallery Section
--------------------------------------------------------------*/
.gallery {
  overflow: hidden;
}

.gallery .swiper-wrapper {
  height: auto;
}

.gallery .swiper-pagination {
  margin-top: 20px;
  position: relative;
}

.gallery .swiper-pagination .swiper-pagination-bullet {
  background-color: color-mix(in srgb, var(--default-color), transparent 85%);
  border: 0;
  width: 12px;
  height: 12px;
  opacity: 1;
}

.gallery .swiper-pagination .swiper-pagination-bullet-active {
  background-color: #056b39;
  opacity: 1;
}

.gallery .swiper-slide-active {
  text-align: center;
}

@media (min-width: 992px) {
  .gallery .swiper-wrapper {
    padding: 40px 0;
  }

  .gallery .swiper-slide-active {
    background: var(--background-color);
    border: 6px solid #056b39;
    padding: 4px;
    z-index: 1;
    transform: scale(1.2);
    transition: none;
  }
}

/*--------------------------------------------------------------
# Contact Section
--------------------------------------------------------------*/
.contact .info-item {
  background-color: var(--surface-color);
  box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.1);
  padding: 20px 30px;
}

.contact .info-item .icon {
  color: var(--contrast-color);
  background-color: #056b39;
  width: 56px;
  height: 56px;
  font-size: 24px;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: all 0.3s ease-in-out;
  border-radius: 50%;
  margin-right: 15px;
}

.contact .info-item h3 {
  font-size: 20px;
  font-weight: 700;
  margin: 0 0 5px 0;
  font-family: var(--default-font);
  color: color-mix(in srgb, var(--default-color), transparent 30%);
}

.contact .info-item p {
  padding: 0;
  margin-bottom: 0;
  font-size: 14px;
}

.contact .info-item .social-links a {
  font-size: 24px;
  display: inline-block;
  line-height: 1;
  margin: 4px 6px 0 0;
  transition: 0.3s;
  color: color-mix(in srgb, var(--default-color), transparent 50%);
}

.contact .info-item .social-links a:hover {
  color: var(--accent-color);
}

.contact .php-email-form {
  background-color: var(--surface-color);
  box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.1);
  padding: 30px;
  margin-top: 30px;
}

@media (max-width: 575px) {
  .contact .php-email-form {
    padding: 20px;
  }
}

.contact .php-email-form input[type=text],
.contact .php-email-form input[type=email],
.contact .php-email-form textarea {
  color: var(--default-color);
  background-color: color-mix(in srgb, var(--surface-color), transparent 50%);
  border-color: color-mix(in srgb, var(--default-color), transparent 80%);
  font-size: 14px;
  padding: 10px 15px;
  box-shadow: none;
  border-radius: 0;
}

.contact .php-email-form input[type=text]:focus,
.contact .php-email-form input[type=email]:focus,
.contact .php-email-form textarea:focus {
  border-color: var(--accent-color);
}

.contact .php-email-form input[type=text]::placeholder,
.contact .php-email-form input[type=email]::placeholder,
.contact .php-email-form textarea::placeholder {
  color: color-mix(in srgb, var(--default-color), transparent 70%);
}

.contact .php-email-form button[type=submit] {
  color: var(--contrast-color);
  background: var(--accent-color);
  border: 0;
  padding: 10px 30px;
  transition: 0.4s;
  border-radius: 50px;
}

.contact .php-email-form button[type=submit]:hover {
  background: color-mix(in srgb, var(--accent-color), transparent 20%);
}

/*--------------------------------------------------------------
# Starter Section Section
--------------------------------------------------------------*/
/* .starter-section */
/* { */
/* Add your styles here */
/* } */






/* Import Google Fonts (add this at the very top of your CSS) */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600;700&family=Playfair+Display:wght@600&display=swap');

/* Blog Section Typography */
#blog h2 {
  font-family: 'Poppins', sans-serif;
  font-size: 2.2rem;
  color: #e64949;
  letter-spacing: 0.5px;
  margin-bottom: 2rem;
}

.blog-card {
  transition: all 0.3s ease;
  border-radius: .75rem;
  background-color: #fff;
  overflow: hidden;
  font-family: 'Poppins', sans-serif;
}

.blog-card img {
  width: 100%;
  height: 230px;
  object-fit: cover;
  object-position: center;
  border-top-left-radius: .75rem;
  border-top-right-radius: .75rem;
  display: block;
}


.blog-card .card-body {
  padding: 1.2rem 1.4rem;
}

.blog-card .card-title {
  font-family: 'Poppins', sans-serif;

  font-size: 1.15rem;
  font-weight: 600;
  color: #393939;
  margin-bottom: 0.6rem;
  transition: color 0.3s ease;
}

.blog-card .card-title:hover {
  color: #4c63ff;
}

.blog-card .card-text {
  font-size: 0.92rem;
  color: #555;
  line-height: 1.6;
  margin-bottom: 1rem;
}

.blog-card .text-muted {
  color: #888 !important;
  font-size: 0.85rem;
}

.blog-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

/* Button Style */
.btn-primary {
  background-color: #c8310f;
  border: none;
  border-radius: 25px;
  padding: 7px 22px;
  font-weight: 500;
  font-family: 'Poppins', sans-serif;
  font-size: 0.9rem;
  transition: all 0.3s ease;
}

.btn-primary:hover {
  background-color: #ff2701;
  transform: scale(1.05);
}



/*  mgs animation */
/* Success Popup Styling */
.success-popup {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
  justify-content: center;
  align-items: center;
  z-index: 9999;
}

.popup-content {
  background: #fff;
  padding: 25px 30px;
  border-radius: 10px;
  text-align: center;
  max-width: 400px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}

.popup-content h4 {
  color: #151515;
  font-weight: 700;
  font-family: 'Poppins', sans-serif;

}

#closePopup {
  background-color: #d42f2f;
  border: none;
  border-radius: 5px;
  padding: 6px 20px;
}

#closePopup:hover {
  background-color: #de2323;
}

.sample {
  color: #059652;
  position: relative;
  top: 16px;
}

.text-center {
  font-family: 'Poppins', sans-serif;

}


.footer-logo {
  width: 20%;
  height: auto;
  transition: all 0.3s ease;
}

/* Mobile Responsive */
@media (max-width: 576px) {
  .footer-logo {
    width: 40%;
    /* Increase logo size on small screens */
    height: auto;
  }

  .copyright p {
    font-size: 14px;
    /* Make text smaller for mobile */
  }

  .footer-credit {
    margin-top: 10px;

  }

  .footer .social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 34px;
    height: 33px;
    font-size: 16px;
    color: color-mix(in srgb, var(--default-color), transparent 50%);
    margin-right: 18px;
    transition: 0.3s;
  }
}


/* main */

/* topiko logo in navbar */

.mobile-only {
  display: none;
}

@media (max-width: 767px) {
  .mobile-only {
    display: block;
    text-align: center;
  }

  .mobile-only img {
    width: 200px;
    /* opacity: 0.8;
    transition: opacity 0.3s ease; */
    position: relative;
    top: 320px;
  }

  .mobile-only img:hover {
    opacity: 1;
  }
}


/* scroll active */
.mobile-nav-active .scroll-top.active {
  display: none !important;
}

.disblay-theme {
  padding: 140px;
  position: relative;
  right: 410px;

}

/* bank details section  */
#bank-details {
  background: #f0f0f0;
  padding: 60px 20px;
}

/* Layout */
.bank-container {
  max-width: fit-content;
  /* shrink to content width */
  margin: 0 auto;
  /* center horizontally */
  display: grid;
  grid-template-columns: auto auto;
  /* details + QR */
  gap: 80px;
  /* EXACT 40px gap */
  align-items: center;
}

/* Definition list */
.bank-details {
  display: grid;
  grid-template-columns: 200px auto;
  row-gap: 14px;
  column-gap: 16px;
}

/* Each row */
.bank-row {
  display: contents;
}

.bank-details dt {
  font-weight: 600;
  color: #333;
}

.bank-details dd {
  margin: 0;
  color: #555;
}

/* QR */
.qr-section {
  display: flex;
  justify-content: center;
}

.qr-box {
  background: #fff;
  padding: 14px;
  border-radius: 10px;
  border: 2px solid #ddd;
  width: 270px;
  height: 270px;
  text-align: center;
}

.qr-box img {
  max-width: 210px;
}

.qr-text {
  margin-top: 8px;
  font-size: 14px;
  color: #666;
}

/* MOBILE */
@media (max-width: 768px) {

  .bank-container {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .bank-details {
    grid-template-columns: 1fr;
  }

  .bank-row {
    display: block;
    padding: 10px 0;
    border-bottom: 1px dashed #ddd;
  }

  .bank-details dt {
    font-size: 14px;
    color: #777;
    margin-bottom: 4px;
  }

  .bank-details dd {
    font-size: 16px;
    font-weight: 500;
  }

  .qr-box {
    margin-top: 25px;
  }
}


/* sharew pop up */
/* Sticky Share Button */
.share-sticky {
  position: fixed;
  right: 15px;
  bottom: 77px;
  width: 45px;
  height: 45px;
  background: #29a6ff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 9999;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.25);
}

.share-sticky img {
  width: 24px;
}

/* Overlay */
.share-modal {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.55);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 10000;
}

/* Popup */
.share-box {
  background: #fff;
  width: 90%;
  max-width: 360px;
  border-radius: 14px;
  padding: 16px;
}

/* Header */
.share-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.share-header h4 {
  margin: 0;
  font-size: 18px;
}

.close-btn {
  font-size: 22px;
  cursor: pointer;
}

/* Icons */
.share-icons {
  display: flex;
  justify-content: space-between;
  margin: 15px 0;
}

.share-icons img {
  width: 42px;
  height: 42px;
  border-radius: 50%;
}

/* Text */
.share-sub {
  font-size: 14px;
  color: #666;
}

.share-sub.mt {
  margin-top: 10px;
}

/* Copy link */
.copy-box {
  display: flex;
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid #ddd;
}

.copy-box input {
  flex: 1;
  padding: 10px;
  border: none;
  outline: none;
  font-size: 13px;
}

.copy-box button {
  background: #ff3b30;
  color: #fff;
  border: none;
  padding: 0 14px;
  cursor: pointer;
}

/* Mobile */
@media (max-width: 576px) {
  .share-sticky {
    width: 45px;
    height: 45px;
  }
}


/* our teams section */
.team-section {
  padding: 30px 0;
  background: #f9f9f9 ;
}

.section-title {
  text-align: center;
  margin-bottom: 40px;
}

.team-card {
  background: #fff;
  padding: 20px;
  border-radius: 16px;
  text-align: center;
  /* box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08); */
  height: 100%;
}

.team-card img {
  width: 100%;
  height: 340px;
  object-fit: cover;
  border-radius: 12px;
  margin-bottom: 15px;
  border: 2px solid;
  border-color: #bbbbbb;
}
.team-swiper .swiper-pagination .swiper-pagination-bullet-active{
  background-color: #056b39;
    opacity: 1;
}
/* Desktop view → 3 cards visible */
@media (min-width: 768px) {
  .team-swiper .swiper-wrapper {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
  }

  .team-swiper .swiper-slide {
    width: 100% !important;
  }


}


.whatsapp-float {
  position: fixed;
  bottom: 200px;
  right: 15px;
  z-index: 9999;
}

.whatsapp-float img {
  width: 42px;
  /* height: 45px; */
  border-radius: 50%;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease;
}

.whatsapp-float img:hover {
  transform: scale(1.1);
}


/* pdf sticky button  */
.pdf-sticky {
  position: fixed;
  bottom: 137px;
  right: 15px;
  z-index: 9999;
}

.pdf-sticky img {
  width: 45px;
  height: auto;
  cursor: pointer;
  border-radius: 10px;
}


/* policy section  */
/* Policies section */
.policy-section {
  padding: 40px 20px;
}

.policy-title {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 16px;
  text-align: center;
}

/* Grid */
.policy-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr); /* Desktop */
  gap: 16px;
}

/* Card */
.policy-card {
  background: #056b39;
  border-radius: 14px;
  padding: 16px;
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  color: #fafafa;
  font-weight: 500;
  transition: all 0.3s ease;
}

/* Icon */
.policy-card img {
  width: 34px;
  height: 34px;
  flex-shrink: 0;
}

/* Active */
.policy-card.active {
  background: #056b39;
  color: #fff;
}

.policy-card.active img {
  filter: brightness(0) invert(1);
}

/* Hover */
.policy-card:hover {
  transform: translateY(-2px);
  color: white;
}

.glightbox .img-fluid{
  top: 20px !important;
  max-width: 100%;
  height: auto;
  position: relative;
}



.ordernow_mob{
  margin-top: 20px;
  padding-left: 15px;
  display: none;
}

.ordernow_mob a{
  background-color: #056b39;
  color: #fff;
  padding: 10px 20px;
  border-radius: 5px;
  font-weight: 500;
  font-family: 'Poppins', sans-serif;
  font-size: 0.9rem;
  transition: all 0.3s ease;
  display: inline-block;
}

.team-card .bi-linkedin {
    color: #0A66C2;
    font-size: 24px;
}

.swiper-slide .team-card{
  width: 33%;
  min-width: 320px;
  max-width: 100%;
  margin: auto;
}

.seotext{
  margin: 50px 0;
  text-align: justify;
}


@media (max-width: 991px) {

.gallery .swiper-pagination{
  margin-top: 40px;
}

.swiper-slide .team-card{
  width: 60%;
}

}

body.scrolled header{
  top: -100px !important;
}



/* ✅ Mobile: 2 × 2 layout */
@media (max-width: 768px) {
  .policy-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .policy-card {
    padding: 14px;
    font-size: 14px;
  }

  .policy-card img {
    width: 28px;
    height: 28px;
  }

 
}

@media (max-width: 1200px) {
  .btn-getstarted{
   visibility: hidden;
  }

  .ordernow_mob {
    display: block;
  }
  
}




