
:root {
  /* Font settings */
  --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: "Nunito Sans", sans-serif;
  --nav-font: "Raleway", sans-serif;

  /* Global Color Scheme - OMYKA */
  --background-color: #000000; /* Deep black background for modern, high-contrast design */
  --default-color: rgba(255, 255, 255, 0.85); /* Slightly softened white for readable body text */
  --heading-color: #ffffff; /* Pure white for sharp, clean headings */
  --accent-color: #ed7c31; /* OMYKA’s signature orange for brand highlights */
  --surface-color: #445468; /* Steely blue-gray for cards, sections, boxes */
  --contrast-color: #ffffff; /* Pure white for contrast against colored backgrounds */
}

:root {
  /* Nav Menu Colors */
  --nav-color: rgba(255, 255, 255, 0.85); /* Whiteish default nav links */
  --nav-hover-color: #ed7c31; /* Orange hover for brand consistency */
  --nav-mobile-background-color: #1a1a1a; /* Dark but distinct for mobile nav */
  --nav-dropdown-background-color: #1a1a1a; /* Matches mobile background for dropdowns */
  --nav-dropdown-color: rgba(255, 255, 255, 0.85);
  --nav-dropdown-hover-color: #ed7c31;
}

/* Color Presets - Optional Themes */
.light-background {
  --background-color: #ffffff;
  --default-color: #000000;
  --heading-color: #000000;
  --surface-color: #f0f0f0;
  --contrast-color: #000000;
}

.dark-background {
  --background-color: #000000;
  --default-color: rgba(255, 255, 255, 0.85);
  --heading-color: #ffffff;
  --surface-color: #445468;
  --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);
}


/*--------------------------------------------------------------
# Global Header
--------------------------------------------------------------*/
.header {
  --background-color: rgba(255, 255, 255, 0);
  color: var(--default-color);
  background-color: var(--background-color);
  padding: 20px 0;
  transition: all 0.5s;
  z-index: 997;
}


.header .header-container {
  background: var(--surface-color);
  border-radius: 50px;
  padding: 5px 25px 5px 30px;
  box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
}

.header .logo {
  line-height: 1;
}

.header .logo img {
  max-height: 36px;
  margin-right: 8px;
}

.header .logo h1 {
  font-size: 20px;
  margin: 0;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--heading-color);
}

.header .btn-getstarted,
.header .btn-getstarted:focus {
  color: var(--contrast-color);
  background: var(--accent-color);
  font-size: 14px;
  padding: 8px 20px;
  margin: 0 0 0 30px;
  border-radius: 50px;
  transition: 0.3s;
}

.header .btn-getstarted:hover,
.header .btn-getstarted:focus:hover {
  color: var(--contrast-color);
  background: color-mix(in srgb, var(--accent-color), transparent 15%);
}

@media (max-width: 1200px) {
  .header {
    padding-top: 10px;
  }

  .header .header-container {
    margin-left: 10px;
    margin-right: 10px;
    padding: 10px 5px 10px 15px;
  }

  .header .logo {
    order: 1;
  }

  .header .btn-getstarted {
    order: 2;
    margin: 0 10px 0 0;
    padding: 6px 15px;
  }

  .header .navmenu {
    order: 3;
  }
}

/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/
/* Navmenu - Desktop */
@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 a,
  .navmenu a:focus {
    color: var(--nav-color);
    padding: 18px 15px;
    font-size: 16px;
    font-family: var(--nav-font);
    font-weight: 400;
    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;
    transition: 0.3s;
  }

  .navmenu li:last-child a {
    padding-right: 0;
  }

  .navmenu li:hover>a,
  .navmenu .active,
  .navmenu .active:focus {
    color: var(--nav-hover-color);
  }

  .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;
  }
}

/* Navmenu - Mobile */
@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;
  }

  .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);
    overflow-y: auto;
    transition: 0.3s;
    z-index: 9998;
    box-shadow: 0px 0px 30px rgba(0, 0, 0, 0.1);
  }

  .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);
    border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
    box-shadow: none;
    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;
  }
}

/*--------------------------------------------------------------
# Global Footer
--------------------------------------------------------------*/
.footer {
  color: var(--default-color, #333);
  background-color: var(--background-color, #f8f9fa);
  font-size: 14px;
  padding-bottom: 50px;
  position: relative;
}

.footer .footer-top {
  padding-top: 50px;
  border-top: 1px solid color-mix(in srgb, var(--default-color, #333), transparent 90%);
}

.footer .footer-about .logo {
  line-height: 1;
  margin-bottom: 25px;
}

.footer .footer-about .logo span {
  color: var(--heading-color, #005566);
  font-size: 30px;
  font-weight: 700;
  letter-spacing: 1px;
  font-family: var(--heading-font, 'Arial', sans-serif);
}

.footer .footer-about p {
  font-size: 14px;
  color: color-mix(in srgb, var(--default-color, #333), transparent 20%);
  font-family: var(--heading-font, 'Arial', sans-serif);
}

.footer .social-links a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid color-mix(in srgb, var(--default-color, #333), transparent 50%);
  font-size: 16px;
  color: color-mix(in srgb, var(--default-color, #333), transparent 50%);
  margin-right: 10px;
  transition: 0.3s;
}

.footer .social-links a:hover {
  color: var(--accent-color, #00A8CC);
  border-color: var(--accent-color, #00A8CC);
}

.footer h4 {
  font-size: 16px;
  font-weight: bold;
  color: var(--heading-color, #005566);
  position: relative;
  padding-bottom: 12px;
}

.footer .footer-links {
  margin-bottom: 30px;
}

.footer .footer-links ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer .footer-links ul li {
  padding: 10px 0;
  display: flex;
  align-items: center;
}

.footer .footer-links ul li:first-child {
  padding-top: 0;
}

.footer .footer-links ul a {
  color: color-mix(in srgb, var(--default-color, #333), transparent 20%);
  display: inline-block;
  line-height: 1;
  transition: 0.3s;
}

.footer .footer-links ul a:hover {
  color: var(--accent-color, #00A8CC);
}

.footer .footer-contact p {
  margin-bottom: 5px;
  color: color-mix(in srgb, var(--default-color, #333), transparent 20%);
}

.footer .footer-contact .mt-4 {
  margin-top: 20px;
}

.footer .copyright {
  padding-top: 25px;
  padding-bottom: 25px;
  background-color: color-mix(in srgb, var(--default-color, #333), transparent 95%);
}

.footer .copyright p {
  margin-bottom: 0;
  color: var(--default-color, #333);
}

.footer .copyright .sitename {
  color: var(--accent-color, #00A8CC);
}

.footer .credits {
  margin-top: 6px;
  font-size: 13px;
}

.footer .credits a {
  color: var(--accent-color, #00A8CC);
}

@media (max-width: 768px) {
  .footer .footer-about,
  .footer .footer-links,
  .footer .footer-contact {
    text-align: center;
  }
  .footer .social-links {
    justify-content: center;
  }
  .footer .footer-contact p {
    margin-bottom: 10px;
  }
}/*--------------------------------------------------------------
# Preloader
--------------------------------------------------------------*/
#preloader {
  position: fixed;
  inset: 0;
  z-index: 999999;
  overflow: hidden;
  background: var(--background-color);
  transition: all 0.6s ease-out;
}

#preloader:before {
  content: "";
  position: fixed;
  top: calc(50% - 30px);
  left: calc(50% - 30px);
  border: 6px solid #ffffff;
  border-color: var(--accent-color) transparent var(--accent-color) transparent;
  border-radius: 50%;
  width: 60px;
  height: 60px;
  animation: animate-preloader 1.5s linear infinite;
}

@keyframes animate-preloader {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

/*--------------------------------------------------------------
# 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 {
  color: var(--default-color);
  background-color: var(--background-color);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  padding: 160px 0 80px 0;
  text-align: center;
  position: relative;
}

.page-title::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: repeating-linear-gradient(45deg, rgba(255, 255, 255, 0.02) 0px, rgba(255, 255, 255, 0.05) 1px, transparent 1px, transparent 10px);
  z-index: 1;
}

.page-title h1 {
  font-size: 42px;
  font-weight: 700;
  margin-bottom: 10px;
}

.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 50%);
}

/*--------------------------------------------------------------
# Global Sections
--------------------------------------------------------------*/
section,
.section {
  color: var(--default-color);
  background-color: var(--background-color);
  padding: 60px 0;
  scroll-margin-top: 90px;
  overflow: clip;
}

@media (max-width: 1199px) {

  section,
  .section {
    scroll-margin-top: 66px;
  }
}

/*--------------------------------------------------------------
# Global Section Titles
--------------------------------------------------------------*/
.section-title {
  padding-bottom: 60px;
  position: relative;
}

.section-title h2 {
  font-size: 14px;
  font-weight: 500;
  padding: 0;
  line-height: 1px;
  margin: 0;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: color-mix(in srgb, var(--default-color), transparent 50%);
  position: relative;
}

.section-title h2::after {
  content: "";
  width: 120px;
  height: 1px;
  display: inline-block;
  background: var(--accent-color);
  margin: 4px 10px;
}

.section-title div {
  color: var(--heading-color);
  margin: 0;
  margin: 0;
  font-size: 28px;
  font-weight: 700;
  text-transform: uppercase;
  font-family: var(--heading-font);
}
/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
.hero {
  position: relative;
  min-height: 100vh;
  width: 100%;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding: 0; /* Remove padding to make swiper full-screen */
}

.hero .swiper {
  width: 100%;
  height: 100vh; /* Full viewport height */
}

.hero .swiper-slide {
  font-size: 18px;
  color: #fff;
  box-sizing: border-box;
  padding: 40px 0; /* Adjust padding for content */
  position: relative;
}

.hero .parallax-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  z-index: -1;
}

/* Add this */
.hero .parallax-bg::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.4); /* Adjust 0.4 for more/less darkness */
  z-index: 1;
  pointer-events: none; /* Allow clicks to pass through */
}


.hero::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.3); /* Optional overlay for text readability */
  z-index: 0;
}

.hero .container {
  position: relative;
  z-index: 2; /* Content above background and overlay */
}

.hero .content-col {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-right: 3rem;
   margin-top:2rem;
}
.hero .visual-col {
  display: flex;
  justify-content: center;
  align-items: center;
}

@media (max-width: 991px) {
  .hero .content-col {
    padding-right: 15px;
    margin-bottom: 3rem;
  }
}

.hero .agency-name {
  margin-bottom: 1.5rem;
}

/* .hero .agency-name h5 {
  font-size: 1.25rem;
  font-weight: 600;
  letter-spacing: 1px;
  color: var(--contrast-color, #fff);
  margin: 0;
} */

.hero .main-heading {
  margin-bottom: 2rem;
 
}

.hero .main-heading h1 {
  font-size: 5rem;
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -1px;
  margin: 0;
  color: #fff;
}

@media (max-width: 1200px) {
  .hero .main-heading h1 {
    font-size: 4rem;
  }
}

@media (max-width: 767px) {
  .hero .main-heading h1 {
    font-size: 3rem;
  }
}

@media (max-width: 480px) {
  .hero .main-heading h1 {
    font-size: 2.5rem;
  }
}

.hero .description {
  margin-bottom: 2.5rem;
}

.hero .description p {
  font-size: 1rem;
  line-height: 1.7;
  color: color-mix(in srgb, #fff, transparent 20%);
  margin: 0;
}

.hero .cta-button .btn {
  display: inline-flex;
  align-items: center;
  background-color: transparent;
  border: 1px solid #fff;
  color: #fff;
  padding: 0.75rem 1.5rem;
  border-radius: 50px;
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 1px;
  transition: all 0.3s ease;
}

.hero .cta-button .btn:hover {
  background-color: var(--accent-color, #00A8CC);
  border-color: var(--accent-color, #00A8CC);
  color: #fff;
}

.hero .cta-button .btn i {
  font-size: 1.2rem;
  transition: transform 0.3s ease;
}

.hero .cta-button .btn:hover i {
  transform: translateX(5px);
}

.hero .visual-content {
  position: relative;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

@media (max-width: 991px) {
  .hero .visual-content {
    flex-direction: column;
  }
}

.hero .fluid-shape {
  position: relative;
  width: 100%;
  max-width: 400px; /* Limit image size for balance */
  margin: 0 auto;
}

.hero .fluid-shape .fluid-img {
  width: 100%;
  height: auto;
  animation: float 6s ease-in-out infinite;
}
@media (max-width: 1200px) {
  .hero .fluid-shape {
  position: relative;
  width: 100%;
  max-width:100vw;
  margin: 0 ;
}
.hero .fluid-shape .fluid-img {
  width: 100vw;
  height: auto;
  animation: none;
}
.hero {
  position: relative;
  min-height: 100vh;
  width: 100%;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding: 0; /* Remove padding to make swiper full-screen */
}

.hero .swiper {
  width: 100%;
  height: auto; /* Full viewport height */
}
}


@keyframes float {
  0% { transform: translateY(0px); }
  50% { transform: translateY(-15px); }
  100% { transform: translateY(0px); }
}

/* Remove stats-card for now (optional to re-add later) */
.hero .swiper-button-next,
.hero .swiper-button-prev {
  color: #fff;
  background-color: var(--accent-color);
  padding: 0.75rem;
  border-radius: 50%;
  width: 44px;
  height: 44px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.25);
  transition: background-color 0.3s ease, transform 0.2s ease;
   opacity: 0.5;
}

.hero .swiper-button-next:hover,
.hero .swiper-button-prev:hover {
  background-color:var(--accent-color); /* Slightly darker tone on hover */
  transform: scale(1.1);
  opacity:0.9;
}

/* Pagination bullets */
.hero .swiper-pagination-bullet {
  background: #fff;
  opacity: 0.6;
  transition: transform 0.2s ease, opacity 0.3s ease;
}

.hero .swiper-pagination-bullet-active {
  background: var(--accent-color);
  opacity: 1;
  transform: scale(1.2);
}

   /* .hero .swiper-slide .title {
      font-size: 41px;
      font-weight: 300;
    }

    .hero.swiper-slide .subtitle {
      font-size: 21px;
    }

    .hero.swiper-slide .text {
      font-size: 14px;
      max-width: 400px;
      line-height: 1.3;
    } */


/*--------------------------------------------------------------
# About Section
--------------------------------------------------------------*/
.about {
  padding-top: 60px;
  padding-bottom: 60px;
}

.about .about-image {
  border-radius: 8px;
  overflow: hidden;
}

.about .about-image .experience-badge {
  position: absolute;
  bottom: 30px;
  right: -30px;
  background: var(--accent-color);
  color: var(--contrast-color);
  padding: 1.5rem;
  border-radius: 8px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  text-align: center;
  min-width: 140px;
}

.about .about-image .experience-badge .years {
  font-size: 2.5rem;
  font-weight: 700;
  line-height: 1;
  display: block;
  margin-bottom: 5px;
}

.about .about-image .experience-badge .text {
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}

@media (max-width: 768px) {
  .about .about-image .experience-badge {
    right: 0;
    bottom: 20px;
    padding: 1rem;
    min-width: 120px;
  }

  .about .about-image .experience-badge .years {
    font-size: 2rem;
  }
}

.about .about-content h2 {
  font-size: 2.2rem;
  margin-bottom: 1.25rem;
  font-weight: 700;
}

@media (max-width: 768px) {
  .about .about-content h2 {
    font-size: 1.8rem;
  }
}

.about .about-content .lead {
  font-size: 1.15rem;
  margin-bottom: 1.25rem;
  color: color-mix(in srgb, var(--heading-color), transparent 30%);
}

.about .about-content p {
  margin-bottom: 1rem;
}

.about .about-content .feature-item {
  padding: 1.25rem;
  background-color: var(--surface-color);
  border-radius: 8px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  height: 100%;
  transition: all 0.3s ease;
}

.about .about-content .feature-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.about .about-content .feature-item i {
  font-size: 1.75rem;
  color: var(--accent-color);
  margin-bottom: 0.75rem;
  display: block;
}

.about .about-content .feature-item h5 {
  font-size: 1.15rem;
  margin-bottom: 0.75rem;
  font-weight: 600;
}

.about .about-content .feature-item p {
  font-size: 0.9rem;
  margin-bottom: 0;
}

.about .about-content .btn-primary {
  background-color: var(--accent-color);
  border-color: var(--accent-color);
  padding: 0.5rem 1.5rem;
  border-radius: 50px;
  font-weight: 500;
  color: var(--contrast-color);
}

.about .about-content .btn-primary:hover {
  background-color: color-mix(in srgb, var(--accent-color), black 10%);
  border-color: color-mix(in srgb, var(--accent-color), black 10%);
}

.about .testimonial-section {
  border-top: 1px solid rgba(0, 0, 0, 0.08);
}

.about .testimonial-section .testimonial-intro h3 {
  font-size: 1.75rem;
  margin-bottom: 1.25rem;
  font-weight: 700;
}

.about .testimonial-section .testimonial-intro p {
  margin-bottom: 1.5rem;
}

.about .testimonial-section .testimonial-intro .swiper-nav-buttons {
  display: flex;
  gap: 10px;
}

.about .testimonial-section .testimonial-intro .swiper-nav-buttons button {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background-color: var(--surface-color);
  border: 1px solid rgba(0, 0, 0, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
}

.about .testimonial-section .testimonial-intro .swiper-nav-buttons button:hover {
  background-color: var(--accent-color);
  border-color: var(--accent-color);
  color: var(--contrast-color);
}

.about .testimonial-section .testimonial-intro .swiper-nav-buttons button i {
  font-size: 1.25rem;
}

.about .testimonial-section .testimonial-slider {
  overflow: hidden;
}

.about .testimonial-section .testimonial-slider .swiper-wrapper {
  height: auto !important;
}

.about .testimonial-section .testimonial-item {
  background-color: var(--surface-color);
  border-radius: 10px;
  padding: 2rem;
  box-shadow: 0 5px 30px rgba(0, 0, 0, 0.05);
  height: 100%;
}

.about .testimonial-section .testimonial-item .rating {
  color: #ffc107;
  font-size: 1rem;
}

.about .testimonial-section .testimonial-item p {
  font-style: italic;
  margin-bottom: 0;
  font-size: 1rem;
  line-height: 1.6;
}

.about .testimonial-section .testimonial-item .client-info .client-img {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  margin-right: 15px;
  object-fit: cover;
}

.about .testimonial-section .testimonial-item .client-info h6 {
  font-weight: 600;
}

.about .testimonial-section .testimonial-item .client-info span {
  font-size: 0.85rem;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
}

/*--------------------------------------------------------------
# Services Section
--------------------------------------------------------------*/
.services {
  padding: 80px 0;
}

.services .service-header {
  margin-bottom: 60px;
  text-align: center;
}

.services .service-header .service-intro .service-heading {
  font-size: 48px;
  font-weight: 700;
  line-height: 1.2;
  color: var(--heading-color, #005566);
  margin-bottom: 20px;
}

.services .service-header .service-intro .service-heading span {
  color: var(--accent-color, #00A8CC);
}

@media (max-width: 992px) {
  .services .service-header .service-intro .service-heading {
    font-size: 36px;
  }
}

@media (max-width: 768px) {
  .services .service-header .service-intro .service-heading {
    font-size: 30px;
    margin-bottom: 20px;
  }
}

.services .service-header .service-summary p {
  margin-bottom: 25px;
  color: var(--default-color, #333);
  font-size: 1.1rem;
}

.services .service-header .service-summary .service-btn {
  display: inline-flex;
  align-items: center;
  padding: 12px 30px;
  background-color: var(--accent-color, #00A8CC);
  color: var(--contrast-color, #fff);
  border-radius: 4px;
  font-weight: 500;
  transition: all 0.3s ease;
}

.services .service-header .service-summary .service-btn i {
  margin-left: 10px;
  transition: transform 0.3s ease;
}

.services .service-header .service-summary .service-btn:hover {
  background-color: color-mix(in srgb, var(--accent-color, #00A8CC), transparent 15%);
  color: var(--contrast-color, #fff);
}

.services .service-header .service-summary .service-btn:hover i {
  transform: translateX(5px);
}

.services .service-card {
  position: relative;
  padding: 40px;
  margin-bottom: 30px;
  border: 2px solid color-mix(in srgb, var(--default-color, #333), transparent 90%);
  border-radius: 10px;
  overflow: hidden;
  transition: all 0.3s ease;
  text-decoration: none;
  display: block;
  color: inherit;
}

.services .service-card .service-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  z-index: -1;
}

.services .service-card .service-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5); /* Black overlay for readability */
  z-index: 0;
}

.services .service-card .service-content {
  position: relative;
  z-index: 1;
  text-align: center;
}

.services .service-card .service-icon {
  margin-bottom: 25px;
  background-color: color-mix(in srgb, var(--accent-color, #00A8CC), transparent 90%);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  width: 64px;
  height: 64px;
}

.services .service-card .service-icon i {
  font-size: 32px;
  color: var(--accent-color, #00A8CC);
  transition: all 0.3s ease;
}

.services .service-card h3 {
  font-size: 24px;
  margin-bottom: 15px;
  font-weight: 700;
  color: #fff;
}

.services .service-card h3 span {
  display: block;
}

.services .service-card p {
  color: color-mix(in srgb, #fff, transparent 20%);
  margin-bottom: 20px;
}

.services .service-card .card-action {
  display: inline-flex;
  align-items: center;
  padding: 10px 20px;
  background-color: var(--accent-color, #00A8CC);
  color: var(--contrast-color, #fff);
  border-radius: 4px;
  font-weight: 500;
  transition: all 0.3s ease;
  opacity: 1;   
  visibility: visible;
}

.services .service-card .card-action i {
  margin-left: 10px;
  transition: transform 0.3s ease;
}

.services .service-card .card-action:hover {
  background-color: color-mix(in srgb, var(--accent-color, #00A8CC), transparent 15%);
}

.services .service-card .card-action:hover i {
  transform: translateX(5px);
}

.services .service-card:hover {
  border-color: transparent;
  transform: translateY(-5px);
}

.services .service-card:hover .service-icon i {
  transform: scale(1.1);
}

@media (max-width: 768px) {
  .services .service-card {
    padding: 30px;
  }
  .services .service-card h3 {
    font-size: 20px;
  }
  .services .service-card .service-icon {
    margin: 0 auto 20px;
  }
}
/*--------------------------------------------------------------
# Call To Action Section
--------------------------------------------------------------*/
.call-to-action {
  padding-top: 80px;
  position: relative;
  background-color: color-mix(in srgb, var(--accent-color), transparent 97%);
  border-radius: 1rem;
  overflow: hidden;
  padding-bottom: 80px;
}

.call-to-action .badge {
  background-color: color-mix(in srgb, var(--accent-color), transparent 90%);
  color: var(--accent-color);
  padding: 0.5rem 1rem;
  font-size: 0.875rem;
  font-weight: 500;
  border-radius: 2rem;
}

.call-to-action h2 {
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  font-weight: 700;
  line-height: 1.2;
  margin: 0;
}

.call-to-action p {
  font-size: 1.125rem;
  line-height: 1.6;
  opacity: 0.9;
}

.call-to-action .features .feature-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  background-color: var(--surface-color);
  border-radius: 0.5rem;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease;
}

.call-to-action .features .feature-item:hover {
  transform: translateY(-2px);
}

.call-to-action .features .feature-item i {
  color: var(--accent-color);
  font-size: 1.25rem;
}

.call-to-action .features .feature-item span {
  font-weight: 500;
}

.call-to-action .cta-buttons .btn {
  padding: 0.75rem 1.5rem;
  font-weight: 500;
  border-radius: 0.5rem;
  transition: all 0.3s ease;
}

.call-to-action .cta-buttons .btn.btn-primary {
  background-color: var(--accent-color);
  border-color: var(--accent-color);
  color: var(--contrast-color);
}

.call-to-action .cta-buttons .btn.btn-primary:hover {
  background-color: color-mix(in srgb, var(--accent-color), transparent 15%);
  border-color: color-mix(in srgb, var(--accent-color), transparent 15%);
  transform: translateY(-2px);
}

.call-to-action .cta-buttons .btn.btn-outline {
  border: 2px solid color-mix(in srgb, var(--accent-color), transparent 70%);
  color: var(--accent-color);
}

.call-to-action .cta-buttons .btn.btn-outline:hover {
  background-color: var(--accent-color);
  border-color: var(--accent-color);
  color: var(--contrast-color);
  transform: translateY(-2px);
}

.call-to-action .content-right {
  flex-shrink: 0;
  max-width: 100%;
  width: 450px;
}

.call-to-action .content-right img {
  width: 100%;
  height: auto;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.call-to-action .content-right .floating-card {
  position: absolute;
  bottom: 2rem;
  right: -1rem;
  background: var(--surface-color);
  padding: 1rem;
  border-radius: 1rem;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  display: flex;
  align-items: center;
  gap: 1rem;
  animation: float 3s ease-in-out infinite;
}

.call-to-action .content-right .floating-card .card-icon {
  width: 3rem;
  height: 3rem;
  background-color: color-mix(in srgb, var(--accent-color), transparent 90%);
  border-radius: 0.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.call-to-action .content-right .floating-card .card-icon i {
  color: var(--accent-color);
  font-size: 1.5rem;
}

.call-to-action .content-right .floating-card .card-content {
  display: flex;
  flex-direction: column;
}

.call-to-action .content-right .floating-card .card-content .stats-number {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--accent-color);
}

.call-to-action .content-right .floating-card .card-content .stats-text {
  font-size: 0.875rem;
  opacity: 0.8;
}

.call-to-action .decoration {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
  z-index: 0;
}

.call-to-action .decoration .circle-1,
.call-to-action .decoration .circle-2 {
  position: absolute;
  border-radius: 50%;
  background-color: color-mix(in srgb, var(--accent-color), transparent 90%);
}

.call-to-action .decoration .circle-1 {
  width: 300px;
  height: 300px;
  top: -150px;
  right: -150px;
  opacity: 0.5;
}

.call-to-action .decoration .circle-2 {
  width: 200px;
  height: 200px;
  bottom: -100px;
  left: -100px;
  opacity: 0.3;
}

@media (max-width: 991.98px) {
  .call-to-action {
    padding: 2rem;
  }

  .call-to-action .content-right {
    width: 100%;
    margin-top: 2rem;
  }

  .call-to-action .content-right .floating-card {
    position: relative;
    bottom: auto;
    right: auto;
    margin-top: -3rem;
    margin-right: 1rem;
    z-index: 1;
  }
}

@keyframes float {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-10px);
  }
}

/*--------------------------------------------------------------
# Team Section
--------------------------------------------------------------*/
.team .team-member {
  position: relative;
  background-color: var(--surface-color);
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
  border-radius: 8px;
  transition: 0.3s;
}

.team .team-member:hover {
  border-color: color-mix(in srgb, var(--accent-color), transparent 70%);
}

.team .team-member .member-img {
  flex: 0 0 200px;
  overflow: hidden;
}

.team .team-member .member-img img {
  width: 200px;
  height: 100%;
  object-fit: cover;
  border-top-left-radius: 8px;
  border-bottom-left-radius: 8px;
}

.team .team-member .member-info {
  padding: 25px;
  text-align: left;
}

.team .team-member .member-info h4 {
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 5px;
  color: var(--heading-color);
}

.team .team-member .member-info span {
  font-size: 0.9rem;
  font-weight: 400;
  color: color-mix(in srgb, var(--heading-color), transparent 30%);
  display: block;
  margin-bottom: 15px;
}

.team .team-member .member-info p {
  font-size: 0.9rem;
  margin-bottom: 20px;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
}

.team .team-member .member-info .social {
  display: flex;
  gap: 10px;
}

.team .team-member .member-info .social a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  font-size: 1rem;
  color: var(--heading-color);
  transition: 0.3s;
  border-radius: 4px;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}

.team .team-member .member-info .social a:hover {
  color: var(--accent-color);
  border-color: var(--accent-color);
  background: color-mix(in srgb, var(--accent-color), transparent 95%);
}

@media (max-width: 767px) {
  .team .team-member {
    flex-direction: column;
  }

  .team .team-member .member-img {
    flex: auto;
  }

  .team .team-member .member-img img {
    width: 100%;
    border-radius: 8px 8px 0 0;
  }

  .team .team-member .member-info {
    text-align: center;
  }

  .team .team-member .member-info .social {
    justify-content: center;
  }
}
/*--------------------------------------------------------------
# Faq Section
--------------------------------------------------------------*/
.faq {
  padding: 80px 0;
  background: linear-gradient(rgba(0, 85, 102, 0.1), rgba(0, 85, 102, 0.1)), url('../img/menu/frontview-kibo-restaurant-watamu.jpg') center/cover no-repeat;
  position: relative;
}

.faq::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.3); /* Subtle black overlay */
  z-index: 0;
}

.faq .container {
  position: relative;
  z-index: 1;
}

.faq .faq-header {
  margin-bottom: 60px;
  text-align: center;
}

.faq .faq-title {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: var(--heading-color, #005566);
}

.faq .faq-title span {
  color: var(--accent-color, #00A8CC);
}

.faq .faq-description {
  font-size: 1.1rem;
  color: var(--default-color, #333);
  margin-bottom: 2rem;
}

.faq .faq-container .faq-item {
  background-color: var(--surface-color, #fff);
  position: relative;
  padding: 20px;
  margin-bottom: 15px;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.faq .faq-container .faq-item:last-child {
  margin-bottom: 0;
}

.faq .faq-container .faq-item h3 {
  font-weight: 600;
  font-size: 18px;
  line-height: 24px;
  margin: 0 40px 0 0;
  transition: 0.3s;
  cursor: pointer;
  display: flex;
  align-items: center;
  color: var(--heading-color, #005566);
}

.faq .faq-container .faq-item h3:hover {
  color: var(--accent-color, #00A8CC);
}

.faq .faq-container .faq-item .faq-content {
  display: grid;
  grid-template-rows: 0fr;
  transition: 0.3s ease-in-out;
  visibility: hidden;
  opacity: 0;
}

.faq .faq-container .faq-item .faq-content p {
  margin-bottom: 0;
  color: var(--default-color, #333);
  font-size: 1rem;
}

.faq .faq-container .faq-item .faq-toggle {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 24px;
  height: 24px;
  transition: 0.3s;
  cursor: pointer;
  color: var(--accent-color, #00A8CC);
}

.faq .faq-container .faq-item .faq-toggle:hover {
  color: color-mix(in srgb, var(--accent-color, #00A8CC), transparent 20%);
}

.faq .faq-container .faq-active h3 {
  color: var(--accent-color, #00A8CC);
}

.faq .faq-container .faq-active .faq-content {
  grid-template-rows: 1fr;
  visibility: visible;
  opacity: 1;
  padding-top: 10px;
}

.faq .faq-container .faq-active .faq-toggle {
  transform: rotate(45deg); /* Rotate plus to cross */
  color: var(--accent-color, #00A8CC);
}

@media (max-width: 768px) {
  .faq .faq-title {
    font-size: 2rem;
  }
  .faq .faq-container .faq-item h3 {
    font-size: 16px;
  }
  .faq .faq-container .faq-item .faq-content p {
    font-size: 0.9rem;
  }
}
/*--------------------------------------------------------------
# Contact Section
--------------------------------------------------------------*/
.contact {
  padding: 80px 0;
  position: relative;
  overflow: hidden;
  background: var(--background-color, #000000);
}

.contact::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: color-mix(in srgb, var(--background-color, #000000), transparent 70%);
  z-index: 0;
}

.contact .container {
  position: relative;
  z-index: 1;
}

.contact .title-block {
  text-align: center;
  margin-bottom: 60px;
  padding: 20px 0;
  font-family: var(--default-font, "Roboto", sans-serif);
}

.contact .title-block h2 {
  font-size: 48px;
  font-weight: 700;
  line-height: 1.2;
  color: var(--heading-color, #ffffff);
  font-family: var(--heading-font, "Nunito Sans", sans-serif);
  margin-bottom: 15px;
}

.contact .title-block .description-title {
  font-size: 36px;
  font-weight: 600;
  color: var(--accent-color, #ed7c31);
  font-family: var(--heading-font, "Nunito Sans", sans-serif);
}

.contact .title-block .reserve-btn {
  display: inline-flex;
  align-items: center;
  padding: 12px 30px;
  background-color: var(--accent-color, #ed7c31);
  color: var(--contrast-color, #ffffff);
  border-radius: 4px;
  font-weight: 500;
  font-size: 1rem;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px color-mix(in srgb, var(--accent-color, #ed7c31), transparent 70%);
  font-family: var(--default-font, "Roboto", sans-serif);
  margin: 15px 0;
}

.contact .title-block .reserve-btn i {
  margin-left: 10px;
  font-size: 1.1rem;
  transition: transform 0.3s ease;
}

.contact .title-block .reserve-btn:hover {
  background-color: color-mix(in srgb, var(--accent-color, #ed7c31), transparent 15%);
  color: var(--contrast-color, #ffffff);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px color-mix(in srgb, var(--accent-color, #ed7c31), transparent 60%);
}

.contact .title-block .reserve-btn:hover i {
  transform: translateX(5px);
}

.contact .title-block .reserve-btn:active {
  transform: translateY(0);
  box-shadow: 0 2px 10px color-mix(in srgb, var(--accent-color, #ed7c31), transparent 70%);
}

.contact .title-block .lead {
  font-size: 1.1rem;
  line-height: 1.7;
  color: color-mix(in srgb, var(--default-color, rgba(255, 255, 255, 0.85)), transparent 15%);
  font-family: var(--default-font, "Roboto", sans-serif);
  max-width: 600px;
  margin: 0 auto;
}

@media (max-width: 992px) {
  .contact .title-block h2 {
    font-size: 36px;
  }

  .contact .title-block .description-title {
    font-size: 28px;
  }

  .contact .title-block .reserve-btn {
    font-size: 0.95rem;
    padding: 10px 25px;
  }

  .contact .title-block .reserve-btn i {
    font-size: 1rem;
  }

  .contact .title-block .lead {
    font-size: 1rem;
  }
}

@media (max-width: 768px) {
  .contact .title-block h2 {
    font-size: 30px;
    margin-bottom: 10px;
  }

  .contact .title-block .description-title {
    font-size: 24px;
  }

  .contact .title-block .reserve-btn {
    font-size: 0.9rem;
    padding: 10px 20px;
  }

  .contact .title-block .reserve-btn i {
    font-size: 0.95rem;
  }

  .contact .title-block .lead {
    font-size: 0.9rem;
  }
}

@media (max-width: 576px) {
  .contact .title-block {
    margin-bottom: 40px;
  }

  .contact .title-block h2 {
    font-size: 28px;
  }

  .contact .title-block .description-title {
    font-size: 22px;
  }

  .contact .title-block .reserve-btn {
    font-size: 0.875rem;
    padding: 8px 18px;
    width: 100%;
    justify-content: center;
  }

  .contact .title-block .reserve-btn i {
    font-size: 0.9rem;
  }

  .contact .title-block .lead {
    font-size: 0.875rem;
  }
}

.contact .contact-info-box {
  background-color: var(--surface-color, #445468);
  border-radius: 12px;
  box-shadow: 0 6px 20px color-mix(in srgb, var(--background-color, #000000), transparent 80%);
  padding: 25px;
  height: 100%;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  align-items: flex-start;
  gap: 15px;
}

.contact .contact-info-box:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px color-mix(in srgb, var(--background-color, #000000), transparent 70%);
}

.contact .contact-info-box .icon-box {
  background-color: color-mix(in srgb, var(--accent-color, #ed7c31), transparent 85%);
  color: var(--accent-color, #ed7c31);
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact .contact-info-box .icon-box i {
  font-size: 24px;
}

.contact .contact-info-box .info-content h4 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 10px;
  color: var(--heading-color, #ffffff);
  font-family: var(--heading-font, "Nunito Sans", sans-serif);
}

.contact .contact-info-box .info-content p {
  margin-bottom: 5px;
  color: color-mix(in srgb, var(--default-color, rgba(255, 255, 255, 0.85)), transparent 20%);
  font-size: 15px;
  line-height: 1.5;
  font-family: var(--default-font, "Roboto", sans-serif);
}

.contact .map-section {
  position: relative;
  width: 100%;
  height: 500px;
  overflow: hidden;
  border-radius: 12px;
  box-shadow: 0 6px 20px color-mix(in srgb, var(--background-color, #000000), transparent 80%);
}

.contact .map-section iframe {
  display: block;
  width: 100%;
  height: 100%;
  border: 0;
}

.contact .form-container-overlap {
  position: relative;
  margin-top: -150px;
  margin-bottom: 60px;
  z-index: 10;
}

.contact .contact-form {
  background-color: var(--surface-color, #445468);
  border-radius: 12px;
  box-shadow: 0 8px 30px color-mix(in srgb, var(--background-color, #000000), transparent 75%);
  padding: 40px;
  transition: box-shadow 0.3s ease;
}

.contact .contact-form:hover {
  box-shadow: 0 10px 35px color-mix(in srgb, var(--background-color, #000000), transparent 65%);
}

.contact .contact-form h2 {
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 20px;
  color: var(--heading-color, #ffffff);
  font-family: var(--heading-font, "Nunito Sans", sans-serif);
  position: relative;
}

.contact .contact-form h2:after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -10px;
  transform: translateX(-50%);
  width: 60px;
  height: 4px;
  background-color: var(--accent-color, #ed7c31);
  border-radius: 2px;
}

.contact .contact-form p {
  font-size: 16px;
  color: color-mix(in srgb, var(--default-color, rgba(255, 255, 255, 0.85)), transparent 20%);
  font-family: var(--default-font, "Roboto", sans-serif);
}

.contact .contact-form p a {
  color: var(--accent-color, #ed7c31);
  text-decoration: none;
  font-weight: 500;
}

.contact .contact-form p a:hover {
  text-decoration: underline;
}

.contact .contact-form .form-group {
  margin-bottom: 20px;
}

.contact .contact-form .form-group .input-with-icon {
  position: relative;
  display: flex;
  align-items: center;
}

.contact .contact-form .form-group .input-with-icon i {
  position: absolute;
  left: 15px;
  top: 50%;
  transform: translateY(-50%);
  color: color-mix(in srgb, var(--default-color, rgba(255, 255, 255, 0.85)), transparent 30%);
  font-size: 18px;
  z-index: 10;
}

.contact .contact-form .form-group .input-with-icon i.message-icon {
  top: 28px;
}

.contact .contact-form .form-group .input-with-icon textarea+i {
  top: 25px;
  transform: none;
}

.contact .contact-form .form-group .input-with-icon .form-control {
  border-radius: 10px;
  padding: 14px 15px 14px 50px;
  height: 3.8rem;
  color: var(--default-color, rgba(255, 255, 255, 0.85));
  background-color: color-mix(in srgb, var(--surface-color, #445468), transparent 10%);
  font-size: 15px;
  border: 1px solid color-mix(in srgb, var(--default-color, rgba(255, 255, 255, 0.85)), transparent 70%);
  transition: all 0.3s ease;
  font-family: var(--default-font, "Roboto", sans-serif);
}

.contact .contact-form .form-group .input-with-icon .form-control:focus {
  border-color: var(--accent-color, #ed7c31);
  box-shadow: 0 0 0 0.2rem color-mix(in srgb, var(--accent-color, #ed7c31), transparent 80%);
  background-color: color-mix(in srgb, var(--surface-color, #445468), transparent 5%);
}

.contact .contact-form .form-group .input-with-icon .form-control::placeholder {
  color: color-mix(in srgb, var(--default-color, rgba(255, 255, 255, 0.85)), transparent 50%);
}

.contact .contact-form .form-group .input-with-icon select.form-control {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23ffffff' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  background-size: 1.2em;
}

.contact .contact-form .form-group .input-with-icon textarea.form-control {
  height: 120px;
  resize: none;
  padding-top: 20px;
}

.contact .contact-form .btn-submit {
  background-color: var(--accent-color, #ed7c31);
  border: none;
  color: var(--contrast-color, #ffffff);
  padding: 14px 40px;
  font-size: 16px;
  font-weight: 600;
  letter-spacing: 1px;
  border-radius: 10px;
  transition: all 0.3s ease;
  box-shadow: 0 6px 20px color-mix(in srgb, var(--accent-color, #ed7c31), transparent 60%);
  font-family: var(--default-font, "Roboto", sans-serif);
}

.contact .contact-form .btn-submit:hover {
  background-color: color-mix(in srgb, var(--accent-color, #ed7c31), transparent 10%);
  transform: translateY(-3px);
  box-shadow: 0 8px 25px color-mix(in srgb, var(--accent-color, #ed7c31), transparent 50%);
}

.contact .contact-form .btn-submit:active {
  transform: translateY(0);
  box-shadow: 0 4px 15px color-mix(in srgb, var(--accent-color, #ed7c31), transparent 60%);
}

.contact .contact-form .loading,
.contact .contact-form .error-message,
.contact .contact-form .sent-message {
  margin: 20px 0;
  padding: 15px 20px;
  border-radius: 8px;
  font-size: 16px;
  display: none;
  align-items: center;
  gap: 10px;
  transition: opacity 0.3s ease, transform 0.3s ease;
  font-family: var(--default-font, "Roboto", sans-serif);
}

.contact .contact-form .loading.active,
.contact .contact-form .error-message.active,
.contact .contact-form .sent-message.active {
  display: flex;
  opacity: 1;
  transform: translateY(0);
}

.contact .contact-form .loading {
  background-color: color-mix(in srgb, var(--accent-color, #ed7c31), transparent 90%);
  color: var(--accent-color, #ed7c31);
  border: 1px solid color-mix(in srgb, var(--accent-color, #ed7c31), transparent 50%);
}

.contact .contact-form .loading i {
  font-size: 20px;
  animation: spin 1s linear infinite;
}

.contact .contact-form .error-message {
  background: linear-gradient(135deg, color-mix(in srgb, #ff4d4f, transparent 90%), color-mix(in srgb, #ff7878, transparent 90%));
  color: color-mix(in srgb, #ff4d4f, var(--contrast-color, #ffffff) 20%);
  border: 1px solid color-mix(in srgb, #ff4d4f, transparent 50%);
}

.contact .contact-form .error-message i {
  font-size: 20px;
  color: color-mix(in srgb, #ff4d4f, var(--contrast-color, #ffffff) 20%);
}

.contact .contact-form .sent-message {
  background: linear-gradient(135deg, color-mix(in srgb, #52c234, transparent 90%), color-mix(in srgb, #82d85e, transparent 90%));
  color: color-mix(in srgb, #52c234, var(--contrast-color, #ffffff) 20%);
  border: 1px solid color-mix(in srgb, #52c234, transparent 50%);
}

.contact .contact-form .sent-message i {
  font-size: 20px;
  color: color-mix(in srgb, #52c234, var(--contrast-color, #ffffff) 20%);
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

@media (max-width: 992px) {
  .contact .form-container-overlap {
    margin-top: -120px;
  }
  .contact .contact-form {
    padding: 30px;
  }
}

@media (max-width: 768px) {
  .contact .contact-info-box {
    margin-bottom: 20px;
  }
  .contact .form-container-overlap {
    margin-top: -100px;
  }
  .contact .contact-form {
    padding: 25px;
  }
  .contact .contact-form h2 {
    font-size: 24px;
  }
  .contact .map-section {
    height: 450px;
  }
}

@media (max-width: 576px) {
  .contact .form-container-overlap {
    margin-top: -80px;
  }
  .contact .contact-form {
    padding: 20px;
  }
  .contact .btn-submit {
    width: 100%;
    padding: 12px;
  }
  .contact .map-section {
    height: 400px;
  }
}

/*--------------------------------------------------------------
# Custom CSS for intl-tel-input within the Contact Section
--------------------------------------------------------------*/
.contact .contact-form .form-group .input-with-icon.iti-container {
  position: relative;
  display: flex;
  align-items: center;
  width: 100%;
}

.contact .contact-form .form-group .input-with-icon.iti-container i {
  position: absolute;
  left: 15px;
  top: 50%;
  transform: translateY(-50%);
  color: color-mix(in srgb, var(--default-color, rgba(255, 255, 255, 0.85)), transparent 30%);
  font-size: 18px;
  z-index: 10;
}

.contact .contact-form .form-group .input-with-icon.iti-container .iti {
  display: flex;
  align-items: center;
  width: 100%;
}

.contact .contact-form .form-group .input-with-icon.iti-container .iti__flag-container {
  flex-shrink: 0;
  margin-left: 40px; /* Space for the telephone icon */
  margin-right: 8px;
  display: flex;
  align-items: center;
}

.contact .contact-form .form-group .input-with-icon.iti-container .iti__selected-flag {
  padding: 0 8px;
  display: flex;
  align-items: center;
}

.contact .contact-form .form-group .input-with-icon.iti-container .iti__selected-dial-code {
  font-size: 15px;
  font-weight: 500;
  color: var(--default-color, rgba(255, 255, 255, 0.85));
  margin-left: 4px;
}

.contact .contact-form .form-group .input-with-icon.iti-container input[type="tel"] {
  flex: 1;
  border-radius: 10px;
  padding: 14px 15px 14px 15px; /* Adjusted to avoid overlap with flag/dial code */
  height: 3.8rem;
  font-size: 15px;
  color: var(--default-color, rgba(255, 255, 255, 0.85));
  background-color: color-mix(in srgb, var(--surface-color, #445468), transparent 10%);
  border: 1px solid color-mix(in srgb, var(--default-color, rgba(255, 255, 255, 0.85)), transparent 70%);
  transition: all 0.3s ease;
  font-family: var(--default-font, "Roboto", sans-serif);
}

.contact .contact-form .form-group .input-with-icon.iti-container input[type="tel"]:focus {
  border-color: var(--accent-color, #ed7c31);
  box-shadow: 0 0 0 0.2rem color-mix(in srgb, var(--accent-color, #ed7c31), transparent 80%);
  background-color: color-mix(in srgb, var(--surface-color, #445468), transparent 5%);
}

.contact .contact-form .form-group .input-with-icon.iti-container input[type="tel"]::placeholder {
  color: color-mix(in srgb, var(--default-color, rgba(255, 255, 255, 0.85)), transparent 50%);
}

.contact .contact-form .form-group .input-with-icon.iti-container .iti__arrow {
  margin-left: 6px;
  border-top-color: var(--default-color, rgba(255, 255, 255, 0.85));
}

.contact .contact-form .form-group .input-with-icon.iti-container .iti__country-list {
  border-radius: 10px;
  box-shadow: 0 8px 20px color-mix(in srgb, var(--background-color, #000000), transparent 80%);
  font-size: 14px;
  max-height: 250px;
  overflow-y: auto;
  z-index: 10000;
  background-color: var(--surface-color, #445468);
}

.contact .contact-form .form-group .input-with-icon.iti-container .iti__country {
  padding: 8px 12px;
  color: var(--default-color, rgba(255, 255, 255, 0.85));
  transition: background-color 0.2s ease;
}

.contact .contact-form .form-group .input-with-icon.iti-container .iti__country:hover {
  background-color: color-mix(in srgb, var(--accent-color, #ed7c31), transparent 92%);
}

.contact .contact-form .form-group .input-with-icon.iti-container .iti__highlight {
  background-color: color-mix(in srgb, var(--accent-color, #ed7c31), transparent 85%) !important;
}

@media (max-width: 576px) {
  .contact .contact-form .form-group .input-with-icon.iti-container .iti__flag-container {
    margin-left: 35px; /* Slightly less space on mobile */
  }

  .contact .contact-form .form-group .input-with-icon.iti-container .iti__selected-dial-code {
    font-size: 14px;
  }

  .contact .contact-form .form-group .input-with-icon.iti-container input[type="tel"] {
    font-size: 14px;
    padding: 12px 10px 12px 10px;
    height: 3.5rem;
  }
}


/*--------------------------------------------------------------
# About Kibo Section
--------------------------------------------------------------*/
.about-kibo {
  padding: 80px 0;
  /* background: linear-gradient(rgba(0, 105, 148, 0.1), rgba(0, 105, 148, 0.1)), url('assets/img/kibo-images/watamu-beach-background.jpg') center/cover no-repeat; */
  position: relative;
}

.about-kibo::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.2);
  z-index: 0;
}

.about-kibo .container {
  position: relative;
  z-index: 1;
}

.about-kibo .swiper-wrapper {
  height: auto !important;
}

.about-kibo .about-header {
  margin-bottom: 40px;
}

.about-kibo .about-header h1 {
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 20px;
  color: var(--heading-color, #003087);
  position: relative;
}

.about-kibo .about-header h1::after {
  content: "";
  position: absolute;
  bottom: -12px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background: var(--accent-color, #00A8CC);
}

.about-kibo .about-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin: 25px 0 20px;
  justify-content: center;
}

.about-kibo .about-meta span {
  display: flex;
  align-items: center;
  font-size: 15px;
  color: color-mix(in srgb, var(--default-color, #333), transparent 30%);
}

.about-kibo .about-meta span i {
  color: var(--accent-color, #00A8CC);
  margin-right: 8px;
  font-size: 16px;
}

.about-kibo .about-header .lead {
  font-size: 18px;
  line-height: 1.7;
  color: color-mix(in srgb, var(--default-color, #333), transparent 15%);
}

.about-kibo .about-gallery .about-details-slider {
  margin-bottom: 40px;
  padding-bottom: 40px;
}

.about-kibo .about-gallery .about-details-slider .portfolio-item {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.about-kibo .about-gallery .about-details-slider .portfolio-item img {
  border-radius: 12px;
  transition: all 0.4s ease;
  width: 100%;
  height: 350px;
  object-fit: cover;
}

.about-kibo .about-gallery .about-details-slider .portfolio-item:hover .portfolio-info {
  opacity: 1;
  transform: translateY(0);
}

.about-kibo .about-gallery .about-details-slider .portfolio-item .portfolio-info {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.6) 0%, rgba(0, 0, 0, 0) 100%);
  padding: 15px;
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.3s ease;
  border-bottom-left-radius: 12px;
  border-bottom-right-radius: 12px;
}

.about-kibo .about-gallery .about-details-slider .portfolio-item .portfolio-info h5 {
  color: var(--contrast-color, #fff);
  font-weight: 700;
  margin-bottom: 5px;
}

.about-kibo .about-gallery .about-details-slider .portfolio-item .portfolio-info p {
  color: color-mix(in srgb, var(--contrast-color, #fff), transparent 20%);
  margin: 0;
  font-size: 14px;
}

.about-kibo .about-gallery .about-details-slider .swiper-pagination .swiper-pagination-bullet {
  width: 10px;
  height: 10px;
  background-color: color-mix(in srgb, var(--accent-color, #00A8CC), transparent 70%);
  opacity: 1;
}

.about-kibo .about-gallery .about-details-slider .swiper-pagination .swiper-pagination-bullet-active {
  width: 25px;
  border-radius: 5px;
  background-color: var(--accent-color, #00A8CC);
}

.about-kibo .action-card {
  background: linear-gradient(135deg, var(--accent-color, #00A8CC) 0%, color-mix(in srgb, var(--accent-color, #00A8CC), black 20%) 100%);
  border-radius: 15px;
  padding: 30px;
  color: var(--contrast-color, #fff);
  margin-bottom: 30px;
  position: relative;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
  text-align: center;
}

.about-kibo .action-card::before,
.about-kibo .action-card::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
}

.about-kibo .action-card::before {
  top: -50px;
  right: -50px;
  width: 100px;
  height: 100px;
}

.about-kibo .action-card::after {
  bottom: -40px;
  left: -40px;
  width: 80px;
  height: 80px;
}

.about-kibo .action-card h3 {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 15px;
}

.about-kibo .action-card .btn-primary {
  background: var(--contrast-color, #fff);
  color: var(--accent-color, #00A8CC);
  border-radius: 8px;
  padding: 10px 20px;
  font-weight: 600;
  transition: all 0.3s ease;
}

.about-kibo .action-card .btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
}

.about-kibo .action-card .guarantee {
  display: block;
  margin-top: 15px;
  font-size: 14px;
  opacity: 0.8;
}

.about-kibo .about-project-details .project-meta .badge-wrapper .project-badge {
  background-color: color-mix(in srgb, var(--accent-color, #00A8CC), transparent 90%);
  color: var(--accent-color, #00A8CC);
  padding: 5px 15px;
  border-radius: 20px;
  font-size: 14px;
}

.about-kibo .about-project-details .project-meta .date-client {
  display: flex;
  gap: 20px;
  margin-top: 15px;
}

.about-kibo .about-project-details .project-meta .meta-item {
  display: flex;
  align-items: center;
  font-size: 15px;
  color: color-mix(in srgb, var(--default-color, #333), transparent 30%);
}

.about-kibo .about-project-details .project-meta .meta-item i {
  margin-right: 8px;
  color: var(--accent-color, #00A8CC);
}

.about-kibo .about-project-details .project-title {
  font-size: 28px;
  font-weight: 700;
  color: var(--heading-color, #003087);
  margin-bottom: 15px;
}

.about-kibo .about-project-details .project-overview .lead {
  font-size: 18px;
  margin-bottom: 20px;
}

.about-kibo .about-project-details .project-accordion .accordion-item {
  border: none;
  margin-bottom: 10px;
  background: var(--surface-color, #fff);
  border-radius: 8px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.about-kibo .about-project-details .project-accordion .accordion-button {
  font-size: 18px;
  font-weight: 600;
  color: var(--heading-color, #003087);
  padding: 15px 20px;
}

.about-kibo .about-project-details .project-accordion .accordion-button i {
  color: var(--accent-color, #00A8CC);
}

.about-kibo .about-project-details .project-accordion .accordion-body {
  padding: 0 20px 20px;
  color: color-mix(in srgb, var(--default-color, #333), transparent 20%);
}

.about-kibo .about-sidebar {
  position: sticky;
  top: 100px;
}

.about-kibo .about-sidebar .about-features-list {
  background: var(--surface-color, #fff);
  border-radius: 15px;
  padding: 30px;
  margin-bottom: 30px;
  box-shadow: 0 5px 25px rgba(0, 0, 0, 0.05);
}

.about-kibo .about-sidebar .about-features-list h4 {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 25px;
  padding-bottom: 15px;
  border-bottom: 2px solid color-mix(in srgb, var(--heading-color, #003087), transparent 90%);
}

.about-kibo .about-sidebar .about-features-list ul li {
  display: flex;
  align-items: flex-start;
  margin-bottom: 20px;
}

.about-kibo .about-sidebar .about-features-list ul li i {
  background-color: color-mix(in srgb, var(--accent-color, #00A8CC), transparent 90%);
  color: var(--accent-color, #00A8CC);
  width: 42px;
  height: 42px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  margin-right: 15px;
}

.about-kibo .about-sidebar .about-features-list ul li div h5 {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 5px;
}

.about-kibo .about-sidebar .about-features-list ul li div p {
  color: color-mix(in srgb, var(--default-color, #333), transparent 25%);
  margin: 0;
  font-size: 14px;
}

.about-kibo .project-features h3 {
  font-size: 24px;
  color: var(--heading-color, #003087);
  margin-bottom: 20px;
}

.about-kibo .project-features .feature-list {
  list-style: none;
  padding: 0;
}

.about-kibo .project-features .feature-list li {
  display: flex;
  align-items: center;
  margin-bottom: 10px;
  font-size: 15px;
}

.about-kibo .project-features .feature-list li i {
  color: var(--accent-color, #00A8CC);
  margin-right: 10px;
  font-size: 18px;
}

.about-kibo .cta-buttons .btn-view-project,
.about-kibo .cta-buttons .btn-next-project {
  background: var(--accent-color, #00A8CC);
  color: var(--contrast-color, #fff);
  padding: 12px 25px;
  border-radius: 8px;
  font-weight: 600;
  margin-right: 10px;
  transition: all 0.3s ease;
}

.about-kibo .cta-buttons .btn-next-project i {
  margin-left: 5px;
}

.about-kibo .cta-buttons .btn-view-project:hover,
.about-kibo .cta-buttons .btn-next-project:hover {
  background: color-mix(in srgb, var(--accent-color, #00A8CC), transparent 15%);
  transform: translateY(-3px);
}

@media (max-width: 991px) {
  .about-kibo .about-sidebar {
    position: static;
    margin-bottom: 40px;
  }
  .about-kibo .about-header h1 {
    font-size: 30px;
  }
}

@media (max-width: 767px) {
  .about-kibo .about-header h1 {
    font-size: 26px;
  }
  .about-kibo .about-meta {
    gap: 15px;
  }
  .about-kibo .about-meta span {
    font-size: 14px;
  }
  .about-kibo .about-header .lead {
    font-size: 16px;
  }
  .about-kibo .about-gallery .about-details-slider .portfolio-item img {
    height: 250px;
  }
}


/*--------------------------------------------------------------
# Menu Section
--------------------------------------------------------------*/
.menu {
  padding: 80px 0;
  /* background: linear-gradient(rgba(0, 105, 148, 0.1), rgba(0, 105, 148, 0.1)), url('../img/menu/beach-background-2.jpg') center/cover no-repeat; */
  position: relative;
}

.menu::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.2);
  z-index: 0;
}

.menu .container {
  position: relative;
  z-index: 1;
}

.menu .menu-header {
  margin-bottom: 40px;
}

.menu .menu-header h1 {
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 20px;
  color: var(--heading-color, #003087);
  position: relative;
}

.menu .menu-header h1::after {
  content: "";
  position: absolute;
  bottom: -12px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background: var(--accent-color, #00A8CC);
}

.menu .menu-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin: 25px 0 20px;
  justify-content: center;
}

.menu .menu-meta span {
  display: flex;
  align-items: center;
  font-size: 15px;
  color: color-mix(in srgb, var(--default-color, #333), transparent 30%);
}

.menu .menu-meta span i {
  color: var(--accent-color, #00A8CC);
  margin-right: 8px;
  font-size: 16px;
}

.menu .menu-header .lead {
  font-size: 18px;
  line-height: 1.7;
  color: color-mix(in srgb, var(--default-color, #333), transparent 15%);
}

.menu .menu-category {
  margin-bottom: 40px;
}

.menu .menu-category h2 {
  font-size: 28px;
  font-weight: 700;
  color: var(--heading-color, #003087);
  margin-bottom: 15px;
}

.menu .menu-category p {
  font-size: 16px;
  color: color-mix(in srgb, var(--default-color, #333), transparent 20%);
  margin-bottom: 20px;
}

.menu .menu-slider .menu-item {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
  background: url('../img/menu/shuka-background.png') center/cover no-repeat; /* Shuka background */
}

/* .menu .menu-slider .menu-item img {
  width: 100%;
  height: 250px;
  object-fit: contain; 
  object-position: center;
  padding: 20px; 
  border-radius: 12px;
} */
 .menu .menu-slider .menu-item img {
  width: 100%;
  height: 250px;
  object-fit: contain; /* Preserve image content */
  object-position: center;
  padding: 20px; /* Space around image to show shuka */
  border-radius: 12px;
  transition: transform 0.4s ease, box-shadow 0.3s ease; /* Smooth zoom + shadow */
}

.menu .menu-slider .menu-item img:hover {
  transform: scale(2); /* Slight zoom */
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15); /* Optional shadow for pop effect */
}


.menu .menu-slider .menu-item .menu-info {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.6) 0%, rgba(0, 0, 0, 0) 100%);
  padding: 15px;
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.3s ease;
  border-bottom-left-radius: 12px;
  border-bottom-right-radius: 12px;
}

.menu .menu-slider .menu-item:hover .menu-info {
  opacity: 1;
  transform: translateY(0);
}

.menu .menu-slider .menu-item .menu-info h5 {
  color: var(--contrast-color, #fff);
  font-weight: 700;
  margin-bottom: 5px;
}

/* .menu . Ricci */

.menu .menu-slider .menu-item .menu-info p {
  color: color-mix(in srgb, var(--contrast-color, #fff), transparent 20%);
  margin: 0;
  font-size: 14px;
}

.menu .menu-slider .swiper-pagination .swiper-pagination-bullet {
  width: 10px;
  height: 10px;
  background-color: color-mix(in srgb, var(--accent-color, #00A8CC), transparent 70%);
  opacity: 1;
}

.menu .menu-slider .swiper-pagination .swiper-pagination-bullet-active {
  width: 25px;
  border-radius: 5px;
  background-color: var(--accent-color, #00A8CC);
}

.menu .cta-buttons .btn-view-project,
.menu .cta-buttons .btn-next-project {
  background: var(--accent-color, #00A8CC);
  color: var(--contrast-color, #fff);
  padding: 12px 25px;
  border-radius: 8px;
  font-weight: 600;
  margin-right: 10px;
  transition: all 0.3s ease;
}

.menu .cta-buttons .btn-next-project i {
  margin-left: 5px;
}

.menu .cta-buttons .btn-view-project:hover,
.menu .cta-buttons .btn-next-project:hover {
  background: color-mix(in srgb, var(--accent-color, #00A8CC), transparent 15%);
  transform: translateY(-3px);
}

@media (max-width: 767px) {
  .menu .menu-header h1 {
    font-size: 26px;
  }
  .menu .menu-meta {
    gap: 15px;
  }
  .menu .menu-meta span {
    font-size: 14px;
  }
  .menu .menu-header .lead {
    font-size: 16px;
  }
  .menu .menu-slider .menu-item img {
    height: 200px;
  }
}

/*--------------------------------------------------------------
# Beach Section
--------------------------------------------------------------*/
.beach {
  padding: 80px 0;
  background: linear-gradient(rgba(0, 105, 148, 0.1), rgba(0, 105, 148, 0.1)), url('../img/beach-photos/beach-view-kibo-restaurant-watamu.jpg') center/cover no-repeat;
  position: relative;
}

.beach::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(49, 29, 29, 0.4);
  z-index: 0;
}

.beach .container {
  position: relative;
  z-index: 1;
}

.beach .beach-header {
  margin-bottom: 40px;
}

.beach .beach-header h1 {
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 20px;
  color: var(--heading-color, #003087);
  position: relative;
}

.beach .beach-header h1::after {
  content: "";
  position: absolute;
  bottom: -12px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background: var(--accent-color, #00A8CC);
}

.beach .beach-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin: 25px 0 20px;
  justify-content: center;
}

.beach .beach-meta span {
  display: flex;
  align-items: center;
  font-size: 15px;
  color: color-mix(in srgb, var(--default-color, #333), transparent 30%);
}

.beach .beach-meta span i {
  color: var(--accent-color, #00A8CC);
  margin-right: 8px;
  font-size: 16px;
}

.beach .beach-header .lead {
  font-size: 18px;
  line-height: 1.7;
  color: color-mix(in srgb, var(--default-color, #333), transparent 15%);
}

.beach .beach-category {
  margin-bottom: 40px;
}

.beach .beach-category h2 {
  font-size: 28px;
  font-weight: 700;
  color: var(--heading-color, #003087);
  margin-bottom: 15px;
}

.beach .beach-category p {
  font-size: 16px;
  color: color-mix(in srgb, var(--default-color, #333), transparent 20%);
  margin-bottom: 20px;
}

.beach .beach-slider .swiper-slide {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.beach .beach-slider .swiper-slide img {
  width: 100%;
  height: 300px;
  object-fit: cover; /* Ensures images fill the slide */
  border-radius: 12px;
}

.beach .beach-slider .swiper-slide .beach-info {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.6) 0%, rgba(0, 0, 0, 0) 100%);
  padding: 15px;
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.3s ease;
  border-bottom-left-radius: 12px;
  border-bottom-right-radius: 12px;
}

.beach .beach-slider .swiper-slide:hover .beach-info {
  opacity: 1;
  transform: translateY(0);
}

.beach .beach-slider .swiper-slide .beach-info h5 {
  color: var(--contrast-color, #fff);
  font-weight: 700;
  margin-bottom: 5px;
}

.beach .beach-slider .swiper-slide .beach-info p {
  color: color-mix(in srgb, var(--contrast-color, #fff), transparent 20%);
  margin: 0;
  font-size: 14px;
}

.beach .beach-slider .swiper-pagination .swiper-pagination-bullet {
  width: 10px;
  height: 10px;
  background-color: color-mix(in srgb, var(--accent-color, #00A8CC), transparent 70%);
  opacity: 1;
}

.beach .beach-slider .swiper-pagination .swiper-pagination-bullet-active {
  width: 25px;
  border-radius: 5px;
  background-color: var(--accent-color, #00A8CC);
}

.beach .cta-buttons .btn-view-project,
.beach .cta-buttons .btn-next-project {
  background: var(--accent-color, #00A8CC);
  color: var(--contrast-color, #fff);
  padding: 12px 25px;
  border-radius: 8px;
  font-weight: 600;
  margin-right: 10px;
  transition: all 0.3s ease;
}

.beach .cta-buttons .btn-next-project i {
  margin-left: 5px;
}

.beach .cta-buttons .btn-view-project:hover,
.beach .cta-buttons .btn-next-project:hover {
  background: color-mix(in srgb, var(--accent-color, #00A8CC), transparent 15%);
  transform: translateY(-3px);
}

@media (max-width: 767px) {
  .beach .beach-header h1 {
    font-size: 26px;
  }
  .beach .beach-meta {
    gap: 15px;
  }
  .beach .beach-meta span {
    font-size: 14px;
  }
  .beach .beach-header .lead {
    font-size: 16px;
  }
  .beach .beach-slider .swiper-slide img {
    height: 200px;
  }
}
/*--------------------------------------------------------------
# Events Section
--------------------------------------------------------------*/
.events {
  padding: 80px 0;
  /* background: linear-gradient(rgba(0, 105, 148, 0.1), rgba(0, 105, 148, 0.1)), url('assets/img/kibo-images/watamu-beach-background.jpg') center/cover no-repeat; */
  position: relative;
}

.events::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.2);
  z-index: 0;
}

.events .container {
  position: relative;
  z-index: 1;
}

.events .events-header {
  margin-bottom: 40px;
}

.events .events-header h1 {
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 20px;
  color: var(--heading-color, #003087);
  position: relative;
}

.events .events-header h1::after {
  content: "";
  position: absolute;
  bottom: -12px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background: var(--accent-color, #FF6F61); /* Coral accent for festive vibe */
}

.events .events-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin: 25px 0 20px;
  justify-content: center;
}

.events .events-meta span {
  display: flex;
  align-items: center;
  font-size: 15px;
  color: color-mix(in srgb, var(--default-color, #333), transparent 30%);
}

.events .events-meta span i {
  color: var(--accent-color, #FF6F61);
  margin-right: 8px;
  font-size: 16px;
}

.events .events-header .lead {
  font-size: 18px;
  line-height: 1.7;
  color: color-mix(in srgb, var(--default-color, #333), transparent 15%);
}

.events .events-category {
  margin-bottom: 40px;
}

.events .events-category h2 {
  font-size: 28px;
  font-weight: 700;
  color: var(--heading-color, #003087);
  margin-bottom: 15px;
}

.events .events-category p {
  font-size: 16px;
  color: color-mix(in srgb, var(--default-color, #333), transparent 20%);
  margin-bottom: 20px;
}

.events .events-slider .swiper-slide {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.events .events-slider .swiper-slide img {
  width: 100%;
  height: 300px;
  object-fit: cover;
  border-radius: 12px;
}

.events .events-slider .swiper-slide .events-info {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.6) 0%, rgba(0, 0, 0, 0) 100%);
  padding: 15px;
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.3s ease;
  border-bottom-left-radius: 12px;
  border-bottom-right-radius: 12px;
}

.events .events-slider .swiper-slide:hover .events-info {
  opacity: 1;
  transform: translateY(0);
}

.events .events-slider .swiper-slide .events-info h5 {
  color: var(--contrast-color, #fff);
  font-weight: 700;
  margin-bottom: 5px;
}

.events .events-slider .swiper-slide .events-info p {
  color: color-mix(in srgb, var(--contrast-color, #fff), transparent 20%);
  margin: 0;
  font-size: 14px;
}

.events .events-slider .swiper-pagination .swiper-pagination-bullet {
  width: 10px;
  height: 10px;
  background-color: color-mix(in srgb, var(--accent-color, #FF6F61), transparent 70%);
  opacity: 1;
}

.events .events-slider .swiper-pagination .swiper-pagination-bullet-active {
  width: 25px;
  border-radius: 5px;
  background-color: var(--accent-color, #FF6F61);
}

.events .cta-buttons .btn-view-project,
.events .cta-buttons .btn-next-project {
  background: var(--accent-color, #FF6F61);
  color: var(--contrast-color, #fff);
  padding: 12px 25px;
  border-radius: 8px;
  font-weight: 600;
  margin-right: 10px;
  transition: all 0.3s ease;
}

.events .cta-buttons .btn-next-project i {
  margin-left: 5px;
}

.events .cta-buttons .btn-view-project:hover,
.events .cta-buttons .btn-next-project:hover {
  background: color-mix(in srgb, var(--accent-color, #FF6F61), transparent 15%);
  transform: translateY(-3px);
}

@media (max-width: 767px) {
  .events .events-header h1 {
    font-size: 26px;
  }
  .events .events-meta {
    gap: 15px;
  }
  .events .events-meta span {
    font-size: 14px;
  }
  .events .events-header .lead {
    font-size: 16px;
  }
  .events .events-slider .swiper-slide img {
    height: 200px;
  }
}

/* old css*/


/*--------------------------------------------------------------
# Search button
--------------------------------------------------------------*/
@media (min-width: 1401px) {.search-container.active  .close-btn{
  display:block;
}}


/* RESPONSIVENESS: Navbar Collapsed */
@media (max-width: 1199px) {
  .search-container {
    width: 100%;
    justify-content: center;
  }


  .search-input {
    position: relative;
    width: 100%;
    right: 0;
    top: 0;
    /* opacity: 1; */
    transition: none;
  }

  .close-btn {
    position: relative;
    right: auto;
    top: auto;
    margin-left: 10px;
    /* display: block; */
    
  }

  .search-container.active {
    display: flex;
    justify-content: center;
    width: 100%;
  }
}


.search-container{
  position: relative;
  display:flex;
  align-items: center;
  width: 20% ;
  
}
.search-input{
  width:0;
  opacity: 0;
  transition: width 0.4s ease, opacity 0.4s ease;
  position: absolute;
  right: 30px;/* adjust as needed*/
  top: 100%; 
  z-index:1000;
  transform: translateY(-0%);
}
.search-btn{
  background:none;
  border: none;
  cursor: pointer;
  font-size: 1.2rem;
}

.search-btn i{
  color:#333;
}
.close-btn{
  background:none;
  border:none;
  font-size: 1.2rem;
  cursor: pointer;
  display:none;
  position:absolute;
  right:15px;
  top:89%; 
}
.search-container.active .search-input{
  width: 200px;
  opacity: 1;
}
.search-container.active  .close-btn{
  display:block;
}
/* RESPONSIVENESS: Navbar Collapsed */
@media (max-width: 1199px) {
  .search-container {
    width: 100%;
    justify-content: center;
  }


  .search-input {
    position: relative;
    width: 100%;
    right: 0;
    top: 0;
    /* opacity: 1; */
    transition: none;
  }

  .close-btn {
    position: relative;
    right: auto;
    top: auto;
    margin-left: 10px;
    /* display: block; */
    
  }

  .search-container.active {
    display: flex;
    justify-content: center;
    width: 100%;
  }
}
.recommend{
  text-align: center;
}
.item {
  margin: 20px;
  text-align: center;
  /* background-color: #f9f9f9; */
  padding: 20px;
  /* border: 1px solid #ddd; */
  border-radius: 8px;
  width: 100%;
  max-width: 300px;
}
.item img {
  width: 100%;
  height: auto;
  border-radius: 5px;
}
.no-results {
  font-size: 18px;
  color: #555;
  padding: 20px;
  border: 1px solid #ccc;
  border-radius: 8px;
  background-color: #f2f2f2;
  max-width: 400px;
  margin: auto;
}
.item h2 {
  margin: 15px 0 10px;
}
.item a {
  text-decoration: none;
  color: #008CBA;
  font-size: 16px;
}
.item a:hover {
  text-decoration: underline;
}
.search-results-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin: 20px;
}

#search-results {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px; /* Space between results */
}

.search-result-item {
  padding: 10px;
  border: 1px solid #ccc;
  width: 100%;
  max-width: 300px; /* Limit the width of each result */
  text-align: center;
  background-color: #f9f9f9;
  border-radius: 5px;
  transition: background-color 0.3s;
}

.search-result-item:hover {
  background-color: #f0e68c; /* Change color on hover */
  cursor: pointer;
  transform: scale(1.05); /* Slight zoom effect */
}

.search-result-item a {
  text-decoration: none;
  color: #333;
}

#phone a span{
  font-size:0.9em;
}
/*--------------------------------------------------------------
# back to top
--------------------------------------------------------------*/


/*--------------------------------------------------------------
# WhatsApp Button
--------------------------------------------------------------*/
/*--------------------------------------------------------------
# WhatsApp Button
--------------------------------------------------------------*/
.whatsapp-container {
  position: fixed;
  bottom: 80px; /* ⬆ lift it above scroll-top */
  right: 20px;
  z-index: 1000;
}

.whatsapp-icon {
  background-color: #25D366;
  color: #fff;
  border-radius: 50%;
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  border: none;
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.2);
  cursor: pointer;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.whatsapp-icon:hover {
  transform: scale(1.1);
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.25);
}

.whatsapp-dropdown {
  display: none;
  position: absolute;
  bottom: 70px;
  right: 0;
  background-color: #fff;
  border-radius: 10px;
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.2);
  padding: 8px 0;
  width: 220px;
  animation: fadeInUp 0.3s ease;
}

.whatsapp-dropdown a {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 15px;
  color: #333;
  text-decoration: none;
  font-size: 14px;
  transition: background-color 0.3s ease, color 0.3s ease;
}

.whatsapp-dropdown a:hover {
  background-color: #f1f1f1;
  color: #25D366;
}

/* Smooth dropdown animation */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.whatsapp-dropdown {
  display: none;
  position: absolute;
  bottom: 70px;
  right: 0;
  background-color: #fff;
  border-radius: 10px;
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.2);
  padding: 8px 0;
  width: 220px;
  animation: fadeInUp 0.3s ease;
}

.whatsapp-dropdown.show {
  display: block;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/*--------------------------------------------------------------
# Animating using the intersection Observor API
--------------------------------------------------------------*/

.animated {
  opacity: 0;
  /* transform: translateY(20px); */
}
/* .scrolled{
  opacity:0;
  transform:translateY(20px);
  animation: scroll-in 3s forwards;
} */


@keyframes scroll-in {
  0%{
    opacity:0;
    transform: translateY(20px);
  }
  100%{
    opacity:1;
    transform:translateY(0);
  }
}

/* For testing effects without JavaScript */
.slide-left {
  opacity: 0;
  transform: translateX(-100px); /* Start off-screen to the left */
  animation: slide-in-left 2s ease forwards;
}

.slide-right {
  opacity: 0;
  transform: translateX(100px); /* Start off-screen to the right */
  animation: slide-in-right 2s ease forwards;
}

/* Keyframes for left slide */
@keyframes slide-in-left {
  0% {
    opacity: 0;
    transform: translateX(-100px);
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}

/* Keyframes for right slide */
@keyframes slide-in-right {
  0% {
    opacity: 0;
    transform: translateX(100px);
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}

/* Fade-in and scale-up animation */
@keyframes fade-scale-up {
  0% {
    opacity: 0;
    transform: scale(0.8); /* Slightly smaller */
  }
  100% {
    opacity: 1;
    transform: scale(1); /* Full size */
  }
}


/* Class to apply animation */
.fade-scale-up {
  opacity: 0; /* Start hidden */
  transform: scale(0.8); /* Initial size */
  animation: fade-scale-up 1s ease forwards;
}
/* Apply initial blur */
.lazyload {
  filter: blur(10px); /* Initial blur */
  transition: filter 0.5s ease; /* Smooth transition when blur is removed */
}

/* Remove blur once the image is loaded */
.lazyload.loaded {
  filter: blur(0); /* No blur */
}




/*--------------------------------------------------------------
# Starter Section Section
--------------------------------------------------------------*/
.starter-section {
  /* Add your styles here */
}