/**
* Template Name: Mamba
* Template URL: https://bootstrapmade.com/mamba-one-page-bootstrap-template-free/
* 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 */
@import url('https://fonts.googleapis.com/css2?family=Grenze:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');
: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: "Grenze","Roboto",  sans-serif;
  --nav-font: "Roboto",  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: #2f389d; /* Color for headings, subheadings and title throughout the website */
  --accent-color: #2f389d; /* 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: #212529;  /* The default color of the main navmenu links */
  --nav-hover-color: #f44056; /* 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: #212529; /* Used for navigation links of the dropdown items in the navigation menu. */
  --nav-dropdown-hover-color: #f44056; /* 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: #f5f9fc;
  --surface-color: #ffffff;
}

.dark-background {
  --background-color: #263746;
  --default-color: #ffffff;
  --heading-color: #ffffff;
  --surface-color: #385167;
  --contrast-color: #ffffff;
}

.red-bg {
  --background-color: #f44056; 
}
/* 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(var(--accent-color) 50%, color-mix(in srgb, var(--accent-color), 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 2s;
  animation-direction: forwards;
  animation-iteration-count: infinite;
  animation-timing-function: steps;
  opacity: 1;
  border-radius: 50%;
  border: 5px solid color-mix(in srgb, var(--accent-color), 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 var(--accent-color);
  transform: scale(20);
}

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

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

/*--------------------------------------------------------------
# Global Header
--------------------------------------------------------------*/
.header {
  color: var(--default-color);
  transition: all 0.5s;
  z-index: 997;
  background-color: var(--background-color);
}

.header .topbar {
  height: 40px;
  padding: 0;
  font-size: 14px;
  transition: all 0.5s;
  border-bottom: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}

.header .topbar .contact-info i {
  font-style: normal;
  color: var(--accent-color);
}

.header .topbar .contact-info i a,
.header .topbar .contact-info i span {
  padding-left: 5px;
  color: var(--default-color);
}

@media (max-width: 575px) {

  .header .topbar .contact-info i a,
  .header .topbar .contact-info i span {
    font-size: 13px;
  }
}

.header .topbar .contact-info i a {
  line-height: 0;
  transition: 0.3s;
  color: var(--default-color);
}

.header .topbar .contact-info i a:hover {
  text-decoration: underline;
}

.header .topbar .social-links a {
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  line-height: 0;
  transition: 0.3s;
  margin-left: 20px;
}

.header .topbar .social-links a:hover {
  color: var(--accent-color);
}

.header .branding {
  min-height: 60px;
  padding: 10px 0;
}

.header .logo {
  line-height: 1;
}

.header .logo img {
  max-height: 60px;
  margin-right: 8px;
}

.header .logo h1 {
  font-size: 30px;
  margin: 0;
  font-weight: 0px;
  color: var(--heading-color);
}

.scrolled .header {
  box-shadow: 0px 0 18px rgba(0, 0, 0, 0.1);
}

/*--------------------------------------------------------------
# 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);
  background-color: var(--background-color);
  font-size: 14px;
  position: relative;
}

.footer .footer-top {
  padding-top: 50px;
}

.footer .footer-about .logo {
  line-height: 1;
  margin-bottom: 25px;
}

.footer .footer-about .logo img {
  max-height: 40px;
  margin-right: 6px;
}

.footer .footer-about .logo span {
  color: var(--heading-color);
  font-family: var(--heading-font);
  font-size: 26px;
  font-weight: 400;
  letter-spacing: 1px;
}

.footer .footer-about p {
  font-size: 14px;
  font-family: var(--heading-font);
}

.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), transparent 50%);
  font-size: 16px;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  margin-right: 10px;
  transition: 0.3s;
}

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

.footer h4 {
  font-size: 16px;
  font-weight: bold;
  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 i {
  padding-right: 2px;
  font-size: 12px;
  line-height: 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), transparent 30%);
  display: inline-block;
  line-height: 1;
}

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

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

.footer .footer-contact p {
  margin-bottom: 5px;
}

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

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

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

/* Responsive Styles for Mobile View */
@media (max-width: 768px) {
  /* General adjustments for mobile view */
  .footer {
    text-align: center; /* Center-align all content for better mobile readability */
    font-size: 12px; /* Slightly reduce font size */
  }

  .footer .footer-top {
    padding-top: 30px; /* Reduce padding for smaller screens */
  }

  /* Column layout becomes stacked on smaller screens */
  .footer .row {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px; /* Add spacing between sections */
  }

  /* Social links centered */
  .footer .social-links {
    justify-content: center;
    gap: 15px; /* Increase spacing between social icons */
  }

  .footer .footer-about .sitename {
    font-size: 20px; /* Adjust site name font size */
    margin-bottom: 10px;
  }

  /* Footer About Section - Mobile View */
  .footer-about {
    text-align: center; /* Center align the content */
  }

  .footer-about .logo {
    justify-content: center; /* Center the logo */
    margin-bottom: 20px; /* Add spacing below the logo */
  }

  .footer-about .sitename {
    font-size: 20px; /* Adjust font size for mobile */
    font-weight: bold;
    margin-bottom: 10px;
  }

  .footer-about .social-links {
    justify-content: center; /* Center the social links */
    gap: 15px; /* Add spacing between icons */
  }

  .footer-about .social-links a {
    width: 40px; /* Ensure icons are consistently sized */
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px; /* Adjust icon size */
    border-radius: 50%; /* Maintain circular shape */
    border: 1px solid color-mix(in srgb, var(--default-color), transparent 50%);
    transition: 0.3s;
  }

  .footer-about .social-links a:hover {
    color: var(--accent-color);
    border-color: var(--accent-color);
  }
  
  .footer .footer-contact h4,
  .footer .footer-hours h4 {
    font-size: 16px; /* Slightly reduce heading font size */
    margin-bottom: 10px; /* Add space below headings */
  }

  .footer .footer-contact p,
  .footer .footer-hours p {
    font-size: 12px; /* Adjust paragraph font size */
    line-height: 1.5; /* Ensure proper spacing for text */
  }

  /* Center align address and business hours */
  .footer .footer-contact,
  .footer .footer-hours {
    text-align: center;
  }
  
}

/*--------------------------------------------------------------
# Preloader
--------------------------------------------------------------*/
#preloader {
  position: fixed;
  inset: 0;
  z-index: 9999;
  overflow: hidden;
  background-color: 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 var(--accent-color);
  border-top-color: color-mix(in srgb, var(--accent-color), transparent 90%);
  border-radius: 50%;
  width: 60px;
  height: 60px;
  animation: animate-preloader 1s 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);
  position: relative;
}

.page-title .heading {
  padding: 80px 0;
  border-top: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}

.page-title .heading h1 {
  font-size: 38px;
  font-weight: 300px;
}

.page-title nav {
  background-color: color-mix(in srgb, var(--default-color), transparent 95%);
  padding: 20px 0;
}

.page-title nav ol {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  margin: 0;
  font-size: 16px;
  font-weight: 600;
}

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

.page-title nav 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: 60px 0;
  scroll-margin-top: 120px;
  overflow: clip;
}

@media (max-width: 1199px) {

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

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

.section-title h2 {
  font-size: 26px;
  font-weight: 300;
  color: #f44056;
}

.section-title h3 {
  font-size: 32px;
  font-weight: 200px;
  color: #2f389d;
}


.section-title p {
  margin-bottom: 0;
}

/* Standard mobile phones (360px - 414px) */
@media (max-width: 46px) {
  .section-title {
    padding-bottom: 25px;
  }

  .section-title h2 {
    font-size: 20px;
  }

  .section-title h3 {
    font-size: 24px;
  }
}

/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
.hero {
  padding: 0;
}

.hero .carousel {
  width: 100%;
  height: 100vh;
  min-height: 70vh;
  padding: 0;
  margin: 0;
  background-color: var(--background-color);
  position: relative;
}

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

.hero .carousel-item {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  overflow: hidden;
}

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

.hero .carousel-item::before {
  content: "";
  background-color: color-mix(in srgb, var(--background-color), transparent 30%);
  position: absolute;
  inset: 0;
}

.hero .carousel-container {
  position: absolute;
  inset: 90px 64px 64px 64px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  z-index: 3;
}

.hero h2 {
  margin-bottom: 30px;
  font-size: 48px;
  font-weight: 500px;
  animation: fadeInDown 1s both;
  text-align: center; /* Centers the text horizontally */
  position: relative; /* Keeps the element positioned for flexibility */
  margin-left: auto; /* Ensures no horizontal offset */
  margin-right: auto; /* Ensures no horizontal offset */
}

@media (max-width: 768px) {
  .hero h2 {
    font-size: 30px;
    font-weight: 500px;
    text-align: center; /* Retains horizontal centering for smaller screens */
  }
}

.hero p {
  animation: fadeInDown 1s both 0.2s;
}

@media (min-width: 1024px) {

  .hero h2,
  .hero p {
    max-width: 60%;
    text-align: center; /* Ensures the h2 is still centered with max-width applied */
  }
}

.hero .btn-get-started {
  color: var(--contrast-color);
  background: var(--accent-color);
  font-family: var(--heading-font);
  font-weight: 500;
  font-size: 15px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 8px 32px;
  border-radius: 50px;
  transition: 0.5s;
  margin: 10px;
  animation: fadeInUp 1s both 0.4s;
}

.hero .btn-get-started:hover {
  background: color-mix(in srgb, var(--accent-color), transparent 20%);
}

.hero .carousel-control-prev,
.hero .carousel-control-next {
  width: 10%;
  transition: 0.3s;
  opacity: 0.5;
}

.hero .carousel-control-prev:focus,
.hero .carousel-control-next:focus {
  opacity: 0.5;
}

.hero .carousel-control-prev:hover,
.hero .carousel-control-next:hover {
  opacity: 0.9;
}

@media (min-width: 1024px) {

  .hero .carousel-control-prev,
  .hero .carousel-control-next {
    width: 5%;
  }
}

.hero .carousel-control-next-icon,
.hero .carousel-control-prev-icon {
  background: none;
  font-size: 32px;
  line-height: 1;
}

.hero .carousel-indicators {
  list-style: none;
}

.hero .carousel-indicators li {
  cursor: pointer;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translate3d(0, 100%, 0);
  }

  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}

@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translate3d(0, -100%, 0);
  }

  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}

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

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

/*--------------------------------------------------------------
# Why Us Section
--------------------------------------------------------------*/
.why-us .card-item {
  background: color-mix(in srgb, var(--default-color), transparent 97%);
  padding: 50px 30px;
  transition: all ease-in-out 0.3s;
  height: 100%;
  position: relative;
}

.why-us .card-item span {
  color: var(--accent-color);
  display: block;
  font-size: 28px;
  font-weight: 700;
}

.why-us .card-item h4 {
  font-size: 24px;
  font-weight: 600;
  padding: 0;
  margin: 20px 0;
}

.why-us .card-item h4 a {
  color: var(--heading-color);
}

.why-us .card-item p {
  font-size: 15px;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  margin: 0;
  padding: 0;
}

.why-us .card-item:hover {
  background: var(--accent-color);
  padding: 30px 30px 70px 30px;
}

.why-us .card-item:hover span,
.why-us .card-item:hover h4 a,
.why-us .card-item:hover p {
  color: var(--contrast-color);
}

/*--------------------------------------------------------------
# Stats Section
--------------------------------------------------------------*/
.stats i {
  background-color: var(--surface-color);
  color: var(--accent-color);
  box-shadow: 0px 2px 25px rgba(0, 0, 0, 0.1);
  width: 54px;
  height: 54px;
  font-size: 24px;
  border-radius: 50px;
  border: 2px solid var(--background-color);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 1;
}

.stats .stats-item {
  background-color: var(--surface-color);
  margin-top: -27px;
  padding: 30px 30px 25px 30px;
  width: 100%;
  position: relative;
  text-align: center;
  box-shadow: 0px 2px 35px rgba(0, 0, 0, 0.1);
  border-radius: 4px;
  z-index: 0;
}

.stats .stats-item span {
  font-size: 36px;
  display: block;
  font-weight: 700;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
}

.stats .stats-item p {
  padding: 0;
  margin: 0;
  font-family: var(--heading-font);
  font-size: 16px;
}

/*--------------------------------------------------------------
# Services Section
--------------------------------------------------------------*/
.services .service-item {
  text-align: center;
  padding: 20px;
  transition: all ease-in-out 0.3s;
  height: 100%;
}

.services .service-item .icon {
  background-color: var(--surface-color);
  color: var(--accent-color);
  margin: 0 auto;
  width: 80px;
  height: 80px;
  border-radius: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  transition: 0.3s;
  font-size: 32px;
  transition: ease-in-out 0.3s;
  box-shadow: 0px 0 25px rgba(0, 0, 0, 0.1);
}

.services .service-item h3 {
  font-weight: 700;
  margin-bottom: 15px;
  padding-bottom: 15px;
  font-size: 22px;
  transition: 0.3s;
  position: relative;
}

.services .service-item h3:after {
  content: "";
  position: absolute;
  display: block;
  width: 50px;
  height: 2px;
  background: var(--accent-color);
  bottom: 0;
  left: calc(50% - 25px);
}

.services .service-item p {
  line-height: 24px;
  font-size: 14px;
  margin-bottom: 0;
}

.services .service-item:hover .icon {
  box-shadow: 0px 0 40px rgba(0, 0, 0, 0.1);
}

.services .service-item:hover h3 {
  color: var(--accent-color);
}

/* Add responsiveness */
@media (max-width: 768px) {
  .services {
    padding: 50px;
  }

  .services .service-item {
    padding: 5px;
  }

  .services .service-item .icon {
    width: 60px;
    height: 60px;
    font-size: 24px;
  }

  .services .service-item h3 {
    font-size: 18px;
    margin-bottom: 10px;
    padding-bottom: 10px;
  }

  .services .service-item p {
    font-size: 12px;
    line-height: 20px;
  }
}

@media (max-width: 480px) {
  .services .service-item {
    padding: 20px;
  }

  .services .service-item .icon {
    width: 50px;
    height: 50px;
    font-size: 20px;
  }

  .services .service-item h3 {
    font-size: 16px;
  }

  .services .service-item p {
    font-size: 10px;
    line-height: 18px;
  }
}

/*--------------------------------------------------------------
# products Section
--------------------------------------------------------------*/
.products .isotope-container {
    display: flex;
    justify-content: center;
    gap: 30px;
}

.products-item {
    flex: 0 0 auto;
    width: calc(33.333% - 20px);
    max-width: 500px;
}

@media (max-width: 992px) {
    .products-item {
        width: calc(50% - 15px);
    }
}

@media (max-width: 768px) {
    .products-item {
        width: 100%;
    }
}

/* products item default styling */
.products .products-item {
  position: relative;
  overflow: hidden;
  transition: all 0.3s ease-in-out;  
  border: 2px solid transparent; /* Default border color */
}

/* Hover effect to dim the card */
.products .products-item:hover {
  border-color: #f2f2f2; /* Dim the border color */
  border-radius: 10px;
  padding: 15px;
  transform: scale(0.95); /* Slightly shrink the card for effect */
}

.products .products-item .products-info {
  opacity: 0;
  position: absolute;
  left: 12px;
  right: 12px;
  bottom: -100%;
  z-index: 3;
  transition: all ease-in-out 0.5s;
  background: color-mix(in srgb, var(--surface-color), transparent 10%);
  padding: 15px;
}

.products .products-item .products-info h4 {
  font-size: 18px;
  font-weight: 600;
  padding-right: 50px;
}

.products .products-item .products-info p {
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  font-size: 14px;
  margin-bottom: 0;
  padding-right: 50px;
}

.products .products-item .products-info .preview-link,
.products .products-item .products-info .details-link {
  position: absolute;
  right: 50px;
  font-size: 24px;
  top: calc(50% - 14px);
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  transition: 0.3s;
  line-height: 0;
}

.products .products-item .products-info .preview-link:hover,
.products .products-item .products-info .details-link:hover {
  color: var(--accent-color);
}

.products .products-item .products-info .details-link {
  right: 14px;
  font-size: 28px;
}

.products .products-item:hover .products-info {
  opacity: 1;
  bottom: 0;
}

/*--------------------------------------------------------------
# Service Section
--------------------------------------------------------------*/
.services .team-member {
  transition: all 0.3s ease;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
  background: var(--surface-color);
}

.services .team-member:hover {
  transform: translateY(-10px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.services .team-member .member-img {
  border-radius: 8px 8px 0 0;
  overflow: hidden;
  position: relative;
}

.services .team-member .member-img img {
  transition: all 0.3s ease;
  width: 100%;
  display: block;
}

.services .team-member:hover .member-img img {
  transform: scale(1.1);
}

.services .team-member .member-content {
  padding: 25px 20px;
  text-align: center;
  transition: all 0.3s ease;
}

.services .team-member:hover .member-content {
  background: color-mix(in srgb, var(--surface-color), var(--accent-color) 5%);
}

.services .team-member .member-content h4 {
  color: var(--default-color);
  font-weight: 600;
  margin-bottom: 10px;
  font-size: 22px;
  transition: color 0.3s ease;
}

.services .team-member:hover .member-content h4 {
  color: var(--accent-color);
}

.services .team-member .member-content span {
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  font-size: 14px;
  line-height: 1.6;
  display: block;
}

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

.contact .info-item i {
  color: var(--accent-color);
  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%;
  border: 2px dotted color-mix(in srgb, var(--accent-color), transparent 40%);
}

.contact .info-item h3 {
  font-size: 20px;
  font-size: 18px;
  font-weight: 700;
  margin: 10px 0;
}

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

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

@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 {
  font-size: 14px;
  padding: 10px 15px;
  box-shadow: none;
  border-radius: 0;
  color: var(--default-color);
  background-color: var(--surface-color);
  border-color: color-mix(in srgb, var(--default-color), transparent 80%);
}

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

/*--------------------------------------------------------------
# products Details Section
--------------------------------------------------------------*/
.products-details .products-details-slider img {
  width: 100%;
}

.products-details .swiper-wrapper {
  height: auto;
}

.products-details .swiper-button-prev,
.products-details .swiper-button-next {
  width: 48px;
  height: 48px;
}

.products-details .swiper-button-prev:after,
.products-details .swiper-button-next:after {
  color: rgba(255, 255, 255, 0.8);
  background-color: rgba(0, 0, 0, 0.15);
  font-size: 24px;
  border-radius: 50%;
  border-color: #2f389d;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 0.3s;
}

.products-details .swiper-button-prev:hover:after,
.products-details .swiper-button-next:hover:after {
  background-color: rgba(0, 0, 0, 0.3);
}

@media (max-width: 575px) {

  /* Ensure the product card takes 100% of the width */
  .col-lg-4, .col-md-6 {
    width: 100% !important; /* Set the card to take up full width */
    margin: 10px auto; /* Center the card with margins */
    padding: 0; /* Remove padding */
  }

  /* Make sure the product card is full width */
  .products-item {
    width: 100%; /* Full width for the product card */
    padding: 10px; /* Optional: Padding for spacing */
    box-sizing: border-box; /* Include padding in the width calculation */
  }

  /* Make the image smaller inside the card */
  .products-item img {
    width: 50%; /* Set the image width to 60% (or whatever percentage fits your design) */
    height: auto; /* Maintain aspect ratio */
    margin: 0 auto; /* Center the image horizontally */
    display: block; /* Ensure the image is treated as a block element to allow centering */
  }

  /* Reduce font size for better mobile readability */
  .products-info h4 {
    font-size: 14px; /* Smaller title */
    margin-bottom: 10px;
  }

  .products-info p {
    font-size: 12px; /* Smaller description text */
    line-height: 1.4; /* Increased line height for readability */
  }

  /* Full width button on mobile */
  .products-info .btn-visit {
    width: 100%; /* Full width for the button */
    padding: 12px 0; /* Adjust padding */
    font-size: 14px; /* Smaller font size */
  }
}

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

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

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

.products-details .products-info h3 {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 20px;
  padding-bottom: 20px;
  position: relative;
}

.products-details .products-info h3:after {
  content: "";
  position: absolute;
  display: block;
  width: 50px;
  height: 3px;
  background: var(--accent-color);
  left: 0;
  bottom: 0;
}

.products-details .products-info ul {
  list-style: none;
  padding: 0;
  font-size: 15px;
}

.products-details .products-info ul li {
  display: flex;
  flex-direction: column;
  padding-bottom: 15px;
}

.products-details .products-info ul strong {
  text-transform: uppercase;
  font-weight: 400;
  color: color-mix(in srgb, var(--default-color), transparent 50%);
  font-size: 14px;
}

.products-details .products-info .btn-visit {
  padding: 8px 40px;
  background: var(--accent-color);
  color: var(--contrast-color);
  border-radius: 50px;
  transition: 0.3s;
}

.products-details .products-info .btn-visit:hover {
  background: color-mix(in srgb, var(--accent-color), transparent 20%);
}

.products-details .products-description h2 {
  font-size: 26px;
  font-weight: 700;
  margin-bottom: 20px;
}

.products-details .products-description p {
  padding: 0;
}

.products-details .products-description .testimonial-item {
  padding: 30px 30px 0 30px;
  position: relative;
  background: color-mix(in srgb, var(--default-color), transparent 97%);
  margin-bottom: 30px;
}

.products-details .products-description .testimonial-item .testimonial-img {
  width: 90px;
  border-radius: 50px;
  border: 6px solid var(--background-color);
  float: left;
  margin: 0 10px 0 0;
}

.products-details .products-description .testimonial-item h3 {
  font-size: 18px;
  font-weight: bold;
  margin: 15px 0 5px 0;
  padding-top: 20px;
}

.products-details .products-description .testimonial-item h4 {
  font-size: 14px;
  color: #6c757d;
  margin: 0;
}

.products-details .products-description .testimonial-item .quote-icon-left,
.products-details .products-description .testimonial-item .quote-icon-right {
  color: color-mix(in srgb, var(--accent-color), transparent 50%);
  font-size: 26px;
  line-height: 0;
}

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

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

.products-details .products-description .testimonial-item p {
  font-style: italic;
  margin: 0 0 15px 0 0 0;
  padding: 0;
}

/*--------------------------------------------------------------
# Service Details Section
--------------------------------------------------------------*/
.service-details .services-list {
  background-color: var(--surface-color);
  padding: 10px 30px;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
  margin-bottom: 20px;
}

.service-details .services-list a {
  display: block;
  line-height: 1;
  padding: 8px 0 8px 15px;
  border-left: 3px solid color-mix(in srgb, var(--default-color), transparent 70%);
  margin: 20px 0;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  transition: 0.3s;
}

.service-details .services-list a.active {
  color: var(--heading-color);
  font-weight: 700;
  border-color: var(--accent-color);
}

.service-details .services-list a:hover {
  border-color: var(--accent-color);
}

.service-details .services-img {
  margin-bottom: 20px;
}

.service-details h3 {
  font-size: 26px;
  font-weight: 700;
}

.service-details h4 {
  font-size: 20px;
  font-weight: 700;
}

.service-details p {
  font-size: 15px;
}

.service-details ul {
  list-style: none;
  padding: 0;
  font-size: 15px;
}

.service-details ul li {
  padding: 5px 0;
  display: flex;
  align-items: center;
}

.service-details ul i {
  font-size: 20px;
  margin-right: 8px;
  color: var(--accent-color);
}

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

/*--------------------------------------------------------------
# Awards Section
--------------------------------------------------------------*/
/* Awards Section Styles */
#awards {
  text-align: center;
}

.awards-section .award-item {
  display: flex;
  flex-direction: column;
  align-items: center;
}

/* Awards Section Specific Styling */
#awards .award-logo {
  height: 60px; /* Set the desired height for all logos */
  width: auto; /* Maintain aspect ratio */
  object-fit: contain; /* Ensure the logo fits within the dimensions without distortion */
  margin: 0 auto; /* Center the logo */
  display: block; /* Make sure the logo is treated as a block element */
}

/* Optional: Styling for the award label */
#awards .award-label {
  margin-top: 20px;
  font-size: 12px; /* Adjust font size as needed */
  text-align: center; /* Center-align the text under the logo */
  color: #555; /* Adjust color as desired */
}

.awards-swiper .swiper-slide {
  display: flex;
  justify-content: center;
  align-items: center;
}

.swiper-button-next.awards-swiper-next,
.swiper-button-prev.awards-swiper-prev {
  color: #333;
}



/*--------------------------------------------------------------
# Ordering Section
--------------------------------------------------------------*/
.order-now {
  background-color: #f44056;
}

/* contact us button */
.contact-us-container {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100vw; /* Full viewport width to center horizontally */
}

.contact-us-btn {
  background-color: white; /* White background */
  color: #f44056; /* Replace with your border color */
  border: 2px solid #f44056; /* Same color as the text */
  font-size: 18px; /* Adjusts the text size */
  padding: 12px 24px; /* Adjusts the space inside the button */
  width: 300px; /* Adjusts the button width */
  height: 50px; /* Adjusts the button height */
  border-radius: 8px; /* Optional: Makes the corners rounded */
  transition: all 0.3s ease; /* Smooth hover effect */
}

.contact-us-btn:hover {
  background-color: #f44056; /* Change background on hover */
  color: white; /* Text color on hover */
}

.buttons-wrapper {
  display: flex;
  flex-direction: column; /* Stack buttons vertically */
  gap: 10px; /* Space between buttons */
  align-items: flex-start; /* Align buttons to the left */
}


/* Modal Specific Styles */
#orderModal button {
  font-family: Arial, sans-serif;
  display: flex;
  align-items: center; /* Vertically aligns all items in the row */
  justify-content: space-between; /* Spreads out columns evenly */
}

.button-container {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100vw; /* Full viewport width to center horizontally */
  
}

.btn-primary {
  font-size: 18px; /* Adjusts the text size */
  padding: 12px 24px; /* Adjusts the space inside the button */
  width: 300px; /* Adjusts the button width */
  height: 50px; /* Adjusts the button height */
  border-radius: 8px; /* Optional: Makes the corners rounded */
  background-color: #f44056; /* New button color, e.g., green */
  color: white; /* Adjust the text color to contrast */
  border: 1px solid #f44056; /* Optional: Match the border color */
}

.btn-primary:hover {
  background-color: #ce1b30; /* Darker shade for hover effect */
  border-color: #ce1b30; /* Match the hover border */
}
/* Ensures fish items are displayed in 4 columns */
#orderModal .row {
  display: flex;
  align-items: center; /* Vertically aligns all items in the row */
  justify-content: space-between; /* Spreads out columns evenly */
  margin-bottom: 15px; /* Spacing between rows */
}

#orderModal .col-md-3 img {
  display: block;
  margin: auto;
  max-width: 100%;
}

#orderModal .price {
  font-weight: bold;
  margin-top: 5px;
}

#orderModal .quantity {
  margin-top: 40px;
  vertical-align: middle; 
}

#orderModal .quantity-input {
  width: 100%;
  text-align: center;
}

#orderModal .total-price {
  margin-top: 10px;
  text-align: center;
}

#orderModal .total-price strong {
  font-size: 18px;
  text-align: center;
}

#orderModal .modal-footer {
  text-align: center;
}

/* Specific styling for the Order Now button */
#whatsappOrder {
  width: 100%;
  background-color: #25d366;
  border: none;
  color: white;
  font-size: 16px;
  padding: 10px 30px;
}

/* Ensure the modal has a max width of 700px */
#orderModal .modal-dialog {
  max-width: 700px;
  width: 100%;
}

/* Adjust the image size for mobile */
#orderModal .modal-body img {
  max-width: 100%;
  height: auto;
}

/* Mobile View Adjustments */
@media (max-width: 768px) {
  #orderModal .modal-dialog {
    max-width: 100%;
    margin: 0;
  }

  #orderModal .row {
    flex-direction: column; /* Stack elements vertically */
    align-items: flex-start; /* Align content to the start */
  }

  #orderModal .col-md-3 img {
    width: 40%; /* Resize image for mobile */
    margin-bottom: 10px;
  }

  #orderModal .price, 
  #orderModal .quantity, 
  #orderModal .total-price {
    text-align: center;
    width: 100%; /* Full width on mobile */
    padding: 10px;
  }

  #orderModal .btn-primary {
    width: 100%; /* Full-width button */
    font-size: 16px; /* Adjust font size */
    margin-top: 10px;
  }

  #whatsappOrder {
    font-size: 18px;
    width: 100%; /* Full-width button */
    margin-top: 20px;
  }

  .delivery, .totalprice-row {
    justify-content: center;
    text-align: center;
    width: 100%;
  }
}

/* Additional tweaks for table-like behavior */
#orderModal .modal-body .row {
  margin-bottom: 15px;
}

/* Delivery option and total alignment */
#orderModal .delivery {
  display: flex;
  text-align: center;
  width: 100%;
  padding: 10px 0;
}

#orderModal .totalprice-row {
  font-weight: bold;
  font-size: 18px;
  text-align: center;
  align-items: center; /* Vertically aligns */
  color: #000; /* Optional styling */
  padding: 10px 0;
}

/*--------------------------------------------------------------
# Carousel inside carousel - about us
--------------------------------------------------------------*/

.carousel-item {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
}

.carousel-item img {
  border-radius: 16px;
}


.carousel-caption h2 {
  font-size: 1.5rem;
  font-weight: 400;
  color: #f2f2f2;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);  /* horizontal-offset vertical-offset blur-radius color */
}

.carousel-caption p {
  font-size: 1rem;
}

/* Optional: Adjust text size on smaller screens */
@media (max-width: 768px) {
  .carousel-caption h5 {
    font-size: 1.25rem;
  }
  .carousel-caption p {
    font-size: 0.875rem;
  }
}

.gutting-service {
  background-color: #f8f9fa;
  padding: 10px;
  margin-top: -15px;
  margin-bottom: 15px;
  border-radius: 4px;
}

.gutting-service .form-check {
  margin-top: 8px;
}

#fishCount {
  margin-top: 5px;
  font-size: 0.9em;
}

@media (max-width: 768px) {
  .gutting-service {
    margin-top: 0;
    padding: 15px;
  }
  
  .gutting-service .col-md-3 {
    margin-bottom: 10px;
  }
}

/*--------------------------------------------------------------
# Order now button on header
--------------------------------------------------------------*/
/* Order now button on header */
.btn-brand {
  border-color: #f44056;
  background-color: #f44056;
  color: #fff;
  height: 45px;
}

.btn-brand:hover {
  background-color: #ce1b30; /* Darker shade for hover effect */
  border-color: #ce1b30; /* Match the hover border */
}

@media (max-width: 768px) {
  .btn-brand {
    border-color: #fff;
    background-color: #f44056;
    }
}

/*--------------------------------------------------------------
# journey section
--------------------------------------------------------------*/
/* Journey Section */
.how-to-use {
  padding: 60px 0;
  background-color: #ffffff;
}

.steps-wrapper {
  display: flex;
  justify-content: space-around;
  align-items: flex-start;
  gap: 20px;
  margin-top: 40px;
  position: relative;
}

.step-item {
  flex: 1;
  text-align: center;
  padding: 0 15px;
  position: relative;
  max-width: 250px;
}

/* Add a horizontal gray line connecting the circles */
.steps-wrapper::before {
  content: '';
  position: absolute;
  top: 60px; /* Align with circle centers */
  left: 0;
  right: 0;
  height: 1px;
  background-color: #dee2e6; /* Gray color for the line */
  z-index: 0;
}

/* Vertical line for phone view */
@media (max-width: 768px) {
  .steps-wrapper::before {
    top: 0;
    left: 50%; /* Center the line */
    width: 1px; /* Make the line vertical */
    height: 100%; /* Extend the line through the container */
    background-color: #dee2e6; /* Gray color for the line */
  }
}


.step-circle {
  width: 120px;
  height: 120px;
  margin: 0 auto 20px;
  background: #ffffff;
  border-radius: 50%;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.step-number {
  position: absolute;
  top: -10px;
  left: -10px;
  width: 30px;
  height: 30px;
  background: #f8f9fa;
  border: 2px solid #ffffff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  color: #2f389d;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.step-icon i {
  font-size: 2.5rem;
}

/* Icon colors */
.registration i { color: #f44056; }
.search i { color: #f44056; }
.connect i { color: #f44056; }

.step-item h4 {
  margin-bottom: 10px;
  font-size: 1.2rem;
  color: #343a40;
}

.step-item p {
  color: #6c757d;
  font-size: 0.9rem;
  line-height: 1.5;
}

/* Responsive Design */
@media (max-width: 768px) {
  .steps-wrapper {
    flex-direction: column;
    align-items: center;
  }

  .step-item {
    margin-bottom: 40px;
    max-width: 100%;
  }

  .step-item:not(:last-child)::after {
    display: none;
  }
}

/*--------------------------------------------------------------
# gallery section
--------------------------------------------------------------*/
.gallery-section {
  padding: 60px 0;
  overflow: hidden;
}

.gallery-container {
  padding: 0 15px;
  max-width: 1400px;
  margin: 0 auto;
}

.gallery-swiper {
  padding: 10px 0;
  position: relative;
}

#gallery .gallery-item {
  background: white;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
  width: 100%;
  height: 260px;
  margin: 1 px 0; /* Reduced margin */
}

#gallery .gallery-item:hover {
  transform: translateY(-3px);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
}

#gallery .gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

/* Navigation button styles */
.gallery-swiper .swiper-button-next,
.gallery-swiper .swiper-button-prev {
  color: #f44056;
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.9);
  border-radius: 50%;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.gallery-swiper .swiper-button-next:after,
.gallery-swiper .swiper-button-prev:after {
  font-size: 18px;
}

.gallery-swiper .swiper-button-next:hover,
.gallery-swiper .swiper-button-prev:hover {
  background: #fff;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
}

/* Pagination styles */
.gallery-swiper .swiper-pagination {
  position: relative;
  margin-top: 15px;
}

.gallery-swiper .swiper-pagination-bullet {
  width: 8px;
  height: 8px;
  background: #f44056;
  opacity: 0.5;
  transition: all 0.3s ease;
}

.gallery-swiper .swiper-pagination-bullet-active {
  opacity: 1;
  width: 16px;
  border-radius: 4px;
}

/* Mobile adjustments */
@media (max-width: 768px) {
  .gallery-container {
    padding: 0 10px;
  }
  
  #gallery .gallery-item {
    height: 180px;
    margin: 4px 0;
  }
  
  .gallery-swiper .swiper-button-next,
  .gallery-swiper .swiper-button-prev {
    width: 36px;
    height: 36px;
  }
  
  .gallery-swiper .swiper-button-next:after,
  .gallery-swiper .swiper-button-prev:after {
    font-size: 16px;
  }
}

/* Modal Content Styles */
#orderModal .modal-dialog {
  max-width: 700px;
  width: 100%;
}

#orderModal .modal-body {
  padding: 20px;
}

/* Fish Section Styles */
.fish-section {
  background-color: #f8f9fa;
  padding: 15px;
  border-radius: 8px;
  margin-bottom: 20px;
}

.fish-section img {
  max-width: 100%;
  height: auto;
  display: block;
  margin: 0 auto;
}

/* Size Grid Layout */
.size-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin-top: 10px;
}

.size-item {
  margin-bottom: 15px;
  text-align: center;
}

.size-item label {
  display: block;
  margin-bottom: 5px;
  font-size: 0.9rem;
  color: #666;
  text-align: center;
}

.quantity-input,
.gutting-input {
  width: 80px;
  text-align: center;
  margin: 0 auto;
  padding: 4px 8px;
  border: 1px solid #ced4da;
  border-radius: 4px;
}

.gutting-input {
  font-size: 0.9em;
  height: 32px;
  display: block;
  margin: 0 auto;
}

.size-item small {
  display: block;
  margin-top: 4px;
  font-size: 0.8em;
  text-align: center;
}

.gutting-section {
  transition: all 0.3s ease;
  overflow: hidden;
  text-align: center;
}

/* Gutting Service Checkbox */
.form-check {
  margin-top: 15px;
  padding-left: 25px;
}

.form-check-input {
  margin-top: 0.25rem;
}

.form-check-label {
  color: #666;
}

/* Delivery Options */
.delivery-row {
  margin: 20px 0;
}

.delivery-option {
  width: 100%;
}

.delivery-option label {
  display: block;
  margin-bottom: 5px;
  color: #666;
}

.delivery-option select {
  width: 100%;
  padding: 8px;
  border: 1px solid #ced4da;
  border-radius: 4px;
}

/* WhatsApp Order Button */
#whatsappOrder {
  width: 100%;
  background-color: #25d366;
  border: none;
  color: white;
  font-size: 16px;
  padding: 12px 30px;
  border-radius: 4px;
  transition: background-color 0.3s ease;
}

#whatsappOrder:hover {
  background-color: #128c7e;
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
  .fish-section img {
    width: 40%;
    margin-bottom: 15px;
  }

  .size-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 5px;
  }

  .size-item .quantity-input {
    width: 60px;
    font-size: 14px;
  }

  .form-check {
    margin-top: 10px;
  }

  #orderModal .modal-dialog {
    margin: 10px;
  }

  .delivery-option select {
    font-size: 14px;
  }

  #whatsappOrder {
    font-size: 16px;
    margin-top: 15px;
  }
}

/* Small screens */
@media (max-width: 480px) {
  .fish-section {
    padding: 10px;
  }

  .size-item label {
    font-size: 0.8rem;
  }

  .size-item .quantity-input {
    width: 50px;
    padding: 2px 4px;
  }
}

/* Delivery Note Style */
.delivery-note {
  display: block;
  margin-top: 8px;
  font-size: 0.85rem;
  color: #666;
}

.delivery-note i {
  margin-right: 4px;
}

.gutting-input {
  font-size: 0.9em;
  height: 32px;
}

.size-item {
  margin-bottom: 15px;
}

.size-item small {
  display: block;
  margin-top: 4px;
}

.gutting-section {
  transition: all 0.3s ease;
  overflow: hidden;
}

.gutting-section[style*="display: none"] {
  margin-top: 0;
}

.gutting-section {
  margin-top: 8px;
}

.quantity-input::-webkit-outer-spin-button,
.quantity-input::-webkit-inner-spin-button,
.gutting-input::-webkit-outer-spin-button,
.gutting-input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

.quantity-input[type=number],
.gutting-input[type=number] {
  -moz-appearance: textfield;
}

.logo-text {
    display: flex;
    flex-direction: column;
}

.slogan {
    font-size: 0.8rem;
    margin: 0;
    color: #666;
    font-style: italic;
}

.mission-list {
    list-style: none;
    padding: 0;
    margin-bottom: 2rem;
}

.mission-list li {
    margin-bottom: 1.5rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.mission-title {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--heading-color);
    font-size: 1.1rem;
    position: relative;
    padding: 10px 15px;
    background-color: #f8f9fa;
    border-radius: 5px;
    transition: all 0.3s ease;
}

.mission-title i {
    font-size: 1.2rem;
    color: var(--accent-color);
    min-width: 24px;
}

.mission-title::after {
    content: '\F282';
    font-family: 'bootstrap-icons';
    position: absolute;
    right: 15px;
    transition: transform 0.3s ease;
}

.mission-list li.active .mission-title::after {
    transform: rotate(180deg);
}

.mission-list li.active .mission-title {
    background-color: #e9ecef;
}

.mission-description {
    font-size: 0.95rem;
    color: #666;
    line-height: 1.6;
    height: 0;
    opacity: 0;
    overflow: hidden;
    transition: all 0.5s ease-in-out;
    padding: 0 15px;
    margin: 0;
    background-color: #fff;
    border-left: 3px solid transparent;
    max-height: 0;
    transition: all 0.5s ease-in-out;
}

.mission-list li.active .mission-description {
    height: auto;
    min-height: 80px;
    opacity: 1;
    margin-top: 0.8rem;
    padding: 15px;
    border-left-color: var(--accent-color);
    border-radius: 0 5px 5px 0;
    box-shadow: 0 2px 4px rgba(0,0,0,0.05);
    max-height: 500px; /* Adjust this value based on your maximum content height */
}

/* Add responsive adjustments */
@media (max-width: 768px) {
    .mission-title {
        font-size: 1rem;
        padding: 8px 12px;
    }

    .mission-description {
        font-size: 0.9rem;
    }

    .mission-list li.active .mission-description {
        min-height: 100px;
    }
}

.hero-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  top: 0;
  left: 0;
}

/*--------------------------------------------------------------
# Products Section
--------------------------------------------------------------*/
.products .team-member {
  transition: all 0.3s ease;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
  background: var(--surface-color);
  width: 100%;
  display: flex;
  flex-direction: column;
}

.products .team-member:hover {
  transform: translateY(-10px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.products .team-member .member-img {
  border-radius: 8px 8px 0 0;
  overflow: hidden;
  position: relative;
  padding: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.products .team-member .member-img img {
  transition: all 0.3s ease;
  max-width: 300px;
  width: 100%;
  height: auto;
  display: block;
}

.products .team-member:hover .member-img img {
  transform: scale(1.1);
}

.products .team-member .member-content {
  padding: 25px 20px;
  text-align: center;
  transition: all 0.3s ease;
  flex-grow: 1;
}

.products .team-member:hover .member-content {
  background: color-mix(in srgb, var(--surface-color), var(--accent-color) 5%);
}

.products .team-member .member-content h4 {
  color: var(--default-color);
  font-weight: 600;
  margin-bottom: 10px;
  font-size: 22px;
  transition: color 0.3s ease;
}

.products .team-member:hover .member-content h4 {
  color: var(--accent-color);
}

.products .team-member .member-content span {
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  font-size: 14px;
  line-height: 1.6;
  display: block;
}

@media (max-width: 768px) {
  .products.section .section-title,
  .services.section .section-title {
    margin-bottom: 20px; /* Increase space between header and cards on mobile */
  }
  
  .products.section .team-member,
  .services.section .team-member {
    width: 90%; /* Control width on mobile while preserving desktop layout */
    margin: 0 auto; /* Center the cards */
  }

  /* Specific adjustments for services cards on mobile */
  .services.section .team-member {
    width: calc(100% - 30px); /* Take full width minus padding */
    margin: 0 15px; /* Add equal padding on both sides */
  }

  /* Adjust the container padding for services section */
  .services.section .container {
    padding-left: 0;
    padding-right: 0;
  }

  /* Adjust member-content padding for mobile */
  .team-member .member-content {
    padding: 20px 15px; /* Reduce padding on sides */
  }

  /* Adjust text sizes for better mobile readability */
  .team-member .member-content h4 {
    font-size: 20px; /* Slightly smaller heading */
    margin-bottom: 8px;
  }

  .team-member .member-content span {
    font-size: 14px; /* Slightly smaller description text */
    line-height: 1.5;
  }
}

/*--------------------------------------------------------------
# Gallery Section
--------------------------------------------------------------*/

.gallery-grid {
  display: grid;
  gap: 10px;
  height: 100%;
}

/* Mobile layout: 1 column, 3 images */
@media (max-width: 575px) {
  .gallery-grid {
    grid-template-columns: 1fr;
    grid-template-rows: repeat(3, 1fr);
  }
  
  .gallery-item {
    position: relative;
    overflow: hidden;
    display: block;
  }
  
  .gallery-item img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
}

/* Tablet layout: 2 columns, 6 images */
@media (min-width: 576px) and (max-width: 991px) {
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(3, 1fr);
  }
}

/* Desktop layout: 3 columns, 6 images */
@media (min-width: 992px) {
  .gallery-grid {
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: repeat(2, 1fr);
  }
}

.gallery-item {
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.gallery-item:hover img {
  transform: scale(1.1);
}