:root {
  /*--------------------
  Fonts
  --------------------*/
  --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: "Raleway", sans-serif;
  --nav-font: "Inter", sans-serif;

  /*--------------------
  Global Colors
  --------------------*/
  --background-color: #ffffff;   /* white background */
  --default-color: #000000;      /* default text color */
  --heading-color: #32CD32;      /* heading color (lime green) */
  --accent-color: #32CD32;       /* accent color */
  --surface-color: #ffffff;      /* card panel background */
  --contrast-color: #ffffff;     /* high contrast text */
  --italic-color: #E5E4E2;       /* italic text color */
  --track-bg: #ddd;              /* unfilled slider track */
  --text-on-light: #222;   /* dark text for light backgrounds */
  --text-on-dark: #fff;    /* light text for dark backgrounds */

  /*--------------------
  Navigation Colors
  --------------------*/
  --nav-color: #e5eaee;                 /* nav background */
  --nav-hover-color: #00E700;           /* nav hover */
  --nav-mobile-background-color: #ffffff;
  --nav-dropdown-background-color: #ffffff;
  --nav-dropdown-color: #444444;
  --nav-dropdown-hover-color: #ff4a17;

 /* Odd section */
  --text-odd-primary: #222222;    /* primary paragraph */
  --text-odd-secondary: #555555;  /* secondary paragraph (p1/p2) */
  --heading-odd: var(--default-color);  /* h2 and links */
  
  /* Even section */
  --text-even-primary: #FFFFFF;    /* primary paragraph */
  --text-even-secondary: #CCCCCC;  /* secondary paragraph (p1/p2) */
  --heading-even: var(--accent-color);  /* h2 and links */

}

/*--------------------------------------------------------------
# Font Face
--------------------------------------------------------------*/
@font-face {
  font-family: 'Cano';
src: url('../fonts/cano/cano.woff2') format('woff2');
  font-weight: normal;
  font-style: normal;
  font-display: swap; /* ensures text is visible while the font loads */
}



/*--------------------------------------------------------------
# Global HTML / Body Styles
--------------------------------------------------------------*/

body {
  font-family: 'Cano', var(--default-font);
  color: var(--default-color);
  background-color: var(--background-color);
}


/*==============================================================
# GLOBAL HEADER
==============================================================*/

/* Header Container */
#header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 90px;
  z-index: 999;
  background-color: rgba(21, 34, 43, 1);
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
}

/* Shrink header on scroll */
.scrolled #header {
  background-color: rgba(21, 34, 43, 0.85);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

/* Header Inner Layout */
.header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 5px 20px;
  color: #ffffff;
}

/*--------------------------------------------------------------
# Logo
--------------------------------------------------------------*/
.header .logo {
  display: flex;
  align-items: center;
  overflow: visible;
}

.header .logo img.logo-img {
  height: 32px;
  width: auto;
  transition: height 0.3s ease, transform 0.3s ease;
  transform-origin: left center;
}

.scrolled .logo-img {
  height: 26px;
  transform: scale(1.1);
}

.header .logo h1 {
  font-size: 28px;
  margin-left: 10px;
  font-weight: 700;
  color: var(--heading-color);
}

/*--------------------------------------------------------------
# Navigation Menu (Desktop)
--------------------------------------------------------------*/
.header .navmenu {
  display: flex;
  align-items: center;
  gap: 10px;
}

.navmenu ul {
  display: flex;
  list-style: none;
  margin: 0;
  padding: 0;
  gap: 16px;
}

.navmenu ul li a {
  position: relative;
  color: #fff;
  font-size: 11px;
  font-family: var(--nav-font);
  font-weight: 500;
  text-transform: uppercase;
  text-decoration: none;
  padding: 4px 0;
  letter-spacing: 0.5px;
  transition: color 0.3s ease;
}

.navmenu ul li a::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -2px;
  width: 0%;
  height: 2px;
  background-color: var(--accent-color);
  transition: width 0.3s ease;
}

.navmenu ul li a:hover::after,
.navmenu ul li a.active::after {
  width: 100%;
}

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

/*--------------------------------------------------------------
# Header CTA Button
--------------------------------------------------------------*/
.header .cta-btn {
  color: var(--contrast-color);
  font-size: 13px;
  padding: 6px 15px;
  border-radius: 4px;
  border: 1px solid var(--contrast-color);
  text-transform: uppercase;
  transition: 0.3s;
  white-space: nowrap;
}

.header .cta-btn:hover {
  background: var(--accent-color);
  border-color: var(--accent-color);
}

/*--------------------------------------------------------------
# Mobile Navigation
--------------------------------------------------------------*/
@media (max-width: 1199px) {
  /* Hide desktop nav initially */
  .navmenu ul {
    display: none;
    flex-direction: column;
    width: 100%;
    gap: 15px;
  }

  .mobile-nav-toggle {
    font-size: 28px;
    cursor: pointer;
    color: var(--accent-color);
    z-index: 10003;
    position: relative;
  }

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

  body.mobile-nav-active .mobile-nav-toggle {
    color: #fff;
    position: fixed;
    top: 20px;
    right: 20px;
  }

  body.mobile-nav-active .navmenu {
    position: fixed;
    inset: 0;
    width: 100%;
    height: 100vh;
    background: rgba(33, 37, 41, 0.95);
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    padding: 80px 20px 20px;
    overflow-y: auto;
    z-index: 10001;
  }

  body.mobile-nav-active .navmenu > ul {
    display: flex;
    flex-direction: column;
    text-align: center;
    gap: 20px;
  }

  body.mobile-nav-active .navmenu > ul li a {
    color: #ffffff;
    font-size: 15px;
    padding: 10px 0;
  }

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


/*==============================================================
# GLOBAL SECTIONS
==============================================================*/
/*==============================================================
# GLOBAL SECTIONS
==============================================================*/
html {
  scroll-behavior: smooth;
  scroll-padding-top: 90px; /* aligns with fixed header */
}

@media (max-width: 1199px) {
  html {
    scroll-padding-top: 80px; /* smaller header on mobile */
  }
}

section,
.section {
  padding: 40px 0; /* uniform top/bottom padding */
  overflow: hidden;
  position: relative;
}

/* Last section: no extra bottom gap */
section:last-of-type,
.section:last-of-type {
  padding-bottom: 40px;
  margin-bottom: 0;
}

/*==============================================================
# VARIABLES
==============================================================*/
:root {
  --text-odd-primary: #ffffff;    /* primary paragraph */
  --text-odd-secondary: #555555;  /* secondary paragraph (p1/p2) */
  --heading-odd: var(--default-color);

  --text-even-primary: #ffffff;    /* primary paragraph */
  --text-even-secondary: #CCCCCC;  /* secondary paragraph (p1/p2) */
  --heading-even: var(--accent-color);
}

/*==============================================================
# ODD / EVEN SECTIONS
==============================================================*/


/* Odd sections */
section.section:nth-of-type(odd) {
  background: linear-gradient(136deg, #ADADAD 0%, #696969 100%);
  color: var(--text-odd-primary);
}

/* Primary paragraph */
section.section:nth-of-type(odd) p {
  color: var(--text-odd-primary);
}

/* Secondary paragraphs */
section.section:nth-of-type(odd) p.p1,
section.section:nth-of-type(odd) p.p2 {
  color: var(--default-color);
  font-size: 1rem;
  font-style: normal;
}

/* Headings and links */
section.section:nth-of-type(odd) h2,
section.section:nth-of-type(odd) a {
  color: var(--heading-odd);
}

/* Section-title overrides */
section.section:nth-of-type(odd) .section-title h2 {
  color: var(--heading-odd);
}
section.section:nth-of-type(odd) .section-title p {
  color: var(--text-odd-primary);
}
/* Section-title underline for odd */
section.section:nth-of-type(odd) .section-title h2::after {
  background: var(--heading-odd);
}


/* Even sections */
section.section:nth-of-type(even) {
  background: linear-gradient(136deg, #000000 0%, #ADADAD 100%);
  color: var(--text-even-primary);
}

/* Primary paragraph */
section.section:nth-of-type(even) p {
  color: var(--text-even-primary);
}

/* Secondary paragraphs */
section.section:nth-of-type(even) p.p1,
section.section:nth-of-type(even) p.p2 {
  color: var(--default-color);
  font-size: 1rem;
  font-style: normal;
}

/* Headings and links */
section.section:nth-of-type(even) h2,
section.section:nth-of-type(even) a {
  color: var(--heading-even);
}

/* Section-title overrides */
section.section:nth-of-type(even) .section-title h2 {
  color: var(--heading-even);
}
section.section:nth-of-type(even) .section-title p {
  color: var(--text-even-primary);
}
/* Section-title underline for even */
section.section:nth-of-type(even) .section-title h2::after {
  background: var(--heading-even);
}

/*==============================================================
# SECTION TITLES
==============================================================*/
.section-title {
  margin-top: 0 !important;
  margin-bottom: 2rem !important;
  text-align: left;
}

.section-title h2 {
  font-size: 14px;
  font-weight: 500;
  margin: 0 0 0.5rem;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  position: relative;
}

.section-title h2::after {
  content: "";
  width: 80px;
  height: 2px;
  display: inline-block;
  margin-top: 4px;
}

.section-title p {
  margin: 0 0 2rem;
  font-size: 28px;
  font-weight: 800;
  text-transform: uppercase;
  font-family: var(--heading-font);
  line-height: 1.2;
}

@media (max-width: 768px) {
  .section-title p {
    font-size: 22px;
  }
}

/*==============================================================
# GENERAL STYLING
==============================================================*/
body {
  font-family: var(--default-font);
  color: var(--default-color);
  background-color: var(--background-color);
  line-height: 1.6;
  margin: 0;
  padding: 0;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--heading-font);
  line-height: 1.2;
  margin: 0 0 15px;
  font-weight: 700;
}

p {
  margin: 0 0 15px;
}

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

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

.text-center { text-align: center; }
.text-right { text-align: right; }
.text-left { text-align: left; }

.hidden { display: none !important; }
.visible { display: block !important; }

img {
  max-width: 100%;
  height: auto;
  display: block;
}

.container {
  width: 100%;
  margin: 0 auto;
  padding: 0 16px;
  max-width: 1200px;
}

.section {
  padding: 60px 0;
}

/* Fade-out helper */
.fade-out {
  opacity: 0;
  transition: opacity 1s ease;
}
/* -------------------------------
   Calculator Cards Layout
--------------------------------- */
.calculator-cards {
  display: flex;
  flex-wrap: wrap;
  gap: 30px; /* spacing between cards */
  justify-content: center;
}

.calculator-card {
  flex: 1 1 calc(50% - 20px); /* 2 cards per row on medium+, 1 on small */
  max-width: 450px;
  background-color: #fff;
  color: var(--default-color);
  border-radius: 1rem;
  padding: 20px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  box-shadow: 0 4px 20px rgba(0,0,0,0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.calculator-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

.calculator-header {
  font-size: 1.25rem;
  font-weight: 700;
}

/* Different accent colors */
.calculator-header.amped-out {
  color: var(--accent-color); /* Blue accent for AMPEDout */
}

.calculator-header.amped-in {
  color: var(--accent-color); /* Green accent for AMPEDin */
}

#investorResultCard,
#investorResultCard * {
  color: #000 !important;
}
#calcResultCard,
#calcResultCard * {
  color: #000 !important;
}

/* Investor Card */
#investorResultCard p {
  margin: 2px 0; 
  line-height: 1.2;
}

#investorResultCard button {
  margin-top: 10px;
  display: block;
}

/* Subscriber Card */
#calcResultCard p {
  margin: 2px 0; 
  line-height: 1.2;
}

#calcResultCard button {
  margin-top: 10px;
  display: block;
}


#investorDetailBtn {
    display: none !important;
}

#detailBtn {
  display: none !important;
}
/* -------------------------------
   Card Titles
--------------------------------- */
.calculator-title {
  font-family: var(--default-font);
  font-weight: 600;
  font-size: 1.25rem;
  margin-bottom: 1rem;
}

.calculator-title .small-text {
  font-size: 1rem;
  margin-right: 5px;
}



/* -------------------------------
   Forms & Inputs
--------------------------------- */
/* Base slider styling */
input[type="range"] {
  -webkit-appearance: none;
  width: 100%;
  height: 10px;
  border-radius: 5px;
  background: var(--track-bg);
  outline: none;
  cursor: pointer;
}

/* Chrome, Safari, Edge */
input[type="range"]::-webkit-slider-thumb {
  -webkit-appearance: none;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--accent-color);
  border: 2px solid #fff;
  margin-top: -5px;
  cursor: pointer;
}

/* Firefox */
input[type="range"]::-moz-range-track {
  height: 10px;
  border-radius: 5px;
  background: var(--track-bg);
}

input[type="range"]::-moz-range-progress {
  background-color: var(--accent-color);
  height: 10px;
  border-radius: 5px;
}

input[type="range"]::-moz-range-thumb {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--accent-color);
  border: 2px solid #fff;
  cursor: pointer;
}

/* IE / Edge Legacy */
input[type="range"]::-ms-track {
  width: 100%;
  height: 10px;
  background: transparent;
  border-color: transparent;
  color: transparent;
}

input[type="range"]::-ms-fill-lower {
  background: var(--accent-color);
  border-radius: 5px;
}

input[type="range"]::-ms-fill-upper {
  background: var(--track-bg);
  border-radius: 5px;
}

input[type="range"]::-ms-thumb {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--accent-color);
  border: 2px solid #fff;
  cursor: pointer;
}

/* -------------------------------
   Slider Tooltip
--------------------------------- */
.slider-wrapper {
  position: relative;
  width: 100%;
}

.slider-tooltip {
  position: absolute;
  top: -30px;
  left: 0;
  transform: translateX(-50%);
  background-color: var(--accent-color);
  color: #fff;
  padding: 3px 8px;
  border-radius: 4px;
  font-size: 0.85rem;
  white-space: nowrap;
  pointer-events: none;
}

#sliderTooltip:empty {
  display: none;
}

/* -------------------------------
   Select / Dropdown Styling
--------------------------------- */
.form-select {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  width: 100%;
  padding: 8px 12px;
  border: 1px solid #ccc;
  border-radius: 6px;
  background-color: #fff;
  color: var(--default-color);
  cursor: pointer;
  font-size: 0.95rem;
  transition: border-color 0.3s, box-shadow 0.3s;
}

/* Focus effect */
.form-select:focus {
  border-color: var(--accent-color);
  box-shadow: 0 0 0 0.2rem rgba(50, 205, 50, 0.25);
  outline: none;
}

/* Selected option color */
.form-select option:checked {
  color: var(--accent-color);
  font-weight: 600;
}

/* Hover option (some browsers) */
.form-select option:hover {
  background-color: rgba(50, 205, 50, 0.1);
}

/* Hide IE default arrow */
.form-select::-ms-expand {
  display: none;
}

/* -------------------------------
   Modal Styling
--------------------------------- */
.modal-body table {
  width: 100%;
  border-collapse: collapse;
}

.modal-body th,
.modal-body td {
  border: 1px solid #ddd;
  padding: 8px;
}

.modal-body th {
  background-color: var(--background-color);
  color: var(--default-color);
}

@media (min-width: 992px) {
  .modal-lg {
    max-width: 90%;
  }

  .modal-body {
    max-height: none;
    overflow: visible;
  }
}

@media (max-width: 991px) {
  .modal-lg {
    max-width: 95%;
  }

  .modal-body {
    max-height: 70vh;
    overflow-y: auto;
  }
}

/* -------------------------------
   Responsive Tweaks
--------------------------------- */
@media (max-width: 768px) {
  .calculator-cards {
    gap: 15px;
  }

  .calculator-card {
    flex: 1 1 100%;
    max-width: 100%;
  }
}

/* Disclaimer Card spanning both calculator cards */
.calculator-disclaimer-card {
  background-color: #fff; /* same as calculator cards */
  color: var(--default-color);
  border-radius: 1rem;
  padding: 15px 20px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.1);
  text-align: center;
  margin: 5px auto 0 auto; /* reduced spacing above */
  max-width: calc(450px * 2 + 30px); /* two cards width + gap */
  width: 100%;
  font-size: 1rem;
}

.calculator-disclaimer-card a {
  color: var(--accent-color);
  text-decoration: underline;
  margin-left: 5px;
}

/* Responsive: full width on smaller screens */
@media (max-width: 991px) {
  .calculator-disclaimer-card {
    max-width: 100%;
  }
}



/* calc*/


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

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

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

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

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

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

/* 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(5);
  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;
  }
}




/** Team**/

/* -------------------------
   General Team Member
--------------------------*/
.team .member {
  position: relative;
  margin-bottom: 30px;
}

.team .member .member-info span {
  color: var(--text-on-light); /* or use contrast variables as above */
  font-weight: 400;
  font-size: 0.9rem;
}

/* Image container */
.team .member .pic {
  overflow: hidden;
  margin-bottom: 20px;
  width: 100%;
}

/* All member images */
.team .member .pic img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 8px;
  object-fit: cover;
}

/* Info card */
.team .member .member-info {
  background-color: var(--surface-color);
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
  position: absolute;
  bottom: -50px;
  left: 20px;
  right: 20px;
  padding: 20px 15px;
  overflow: hidden;
  transition: 0.5s;
  border-radius: 8px;
}

/* Founder image specific */
.team .member.ceo .pic img {
  width: auto;
  max-width: 100%;
  height: 700px; /* fixed height for desktop */
  object-fit: cover;
  border-radius: 12px;
}

/* Founder text toggle */
.full-text { display: block; }
.short-text { display: none; }

.full-text { 
  display: block; 
  color: #000000 !important; 
}

.short-text { 
  display: none; 
  color: #000000 !important; 
}



/* See More button styling */
/* Default button style */
.btn-get-started {
  display: inline-block;
  padding: 0.65rem 1.5rem;
  font-weight: 500;
  color: #ffffff; /* default text color */
  background-color: #007bff; /* example button color */
  border: 2px solid transparent;
  border-radius: 5px;
  transition: all 0.3s ease;
  text-decoration: none;
}

/* Hover effect */
.btn-get-started:hover {
  color: #007bff;       /* text color on hover */
  background-color: #ffffff;  /* button bg on hover */
  border-color: #007bff; /* optional: adds border on hover */
  text-decoration: none;
}

/* -------------------------
   Modal Styles
--------------------------*/
.member-modal {
  display: none;
  position: fixed;
  z-index: 9999;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow-y: auto;
  background-color: rgba(0,0,0,0.7);
}

.member-modal .modal-content {
  background-color: var(--surface-color);
  margin: 10% auto;
  padding: 25px;
  border-radius: 10px;
  max-width: 600px;
  text-align: left;
  position: relative;
  transform: translateY(-20px);
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.member-modal .close-modal {
  position: absolute;
  top: 10px;
  right: 15px;
  font-size: 28px;
  font-weight: bold;
  color: var(--default-color);
  cursor: pointer;
}

/* -------------------------
   Mobile Styles (≤767px)
--------------------------*/
@media (max-width: 767px) {
  /* Founder text toggle */
  .full-text { display: none; }
  .short-text { display: block; }

  /* Make all team members relative */
  .team .member {
    position: relative;
    display: block;       /* disable flex alignment */
    margin-bottom: 50px;  /* space between members */
    overflow: visible;    /* allow card to overlay */
  }

  /* Info card overlay on image for all members */
  .team .member .member-info {
    position: absolute;
    bottom: 10%;          /* slightly above bottom of image */
    left: 50%;
    transform: translateX(0%); /* center horizontally */
    width: 90%;
    max-width: 400px;     /* optional cap */
    padding: 15px;
    text-align: center;
    border-radius: 8px;
    box-sizing: border-box;
    background-color: var(--surface-color);
    box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
  }

  /* All member images, including founder */
  .team .member .pic img {
    width: 100%;
    height: 50vh;         /* fixed visible height */
    object-fit: cover;
    display: block;
    border-radius: 8px;
  }

  .team .member.ceo .pic img {
    width: 100%;
    height: 50vh;         /* fixed visible height */
    object-fit: cover;
    display: block;
    border-radius: 12px;
  }



  /* Modal full screen */
  .member-modal .modal-content {
    width: 95%;
    padding: 15px;
  }
}

/* Force all modal text and elements to black */
.member-modal,
.member-modal * {
  color: #000000 !important;
}

/* Ensure modal background stays readable */
.member-modal .modal-content {
  background: #ffffff !important;
  color: #000000 !important;
}

/* Close button black as well */
.member-modal .close-modal {
  color: #000000 !important;
}


/** team end**/



/*--------------------------------------------------------------
# Global Footer
--------------------------------------------------------------*/
/*--------------------------------------------------------------
# Footer CSS - Improved Readability & Logo Size
--------------------------------------------------------------*/

/* Footer Base */
.footer {
  color: #ccc; /* brighter text for readability on black */
  background-color: #000; /* pure black background */
  font-size: 14px;
  position: relative;
  width: 100%;
}

/* Top Footer: Logo */
.footer .footer__logo img,
.footer-logo {
  max-height: 190px; /* smaller logo */
  object-fit: contain;
}

/* Middle Footer: Border */
.footer-middle {
  border-top: 1px solid rgba(255,255,255,0.2); /* slightly brighter line */
  padding-top: 1rem;
  padding-bottom: 1rem;
}

/* Legal Links */
.footer-links {
  margin-bottom: 0;
}

.footer-links ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links ul li {
  display: inline-block;
  margin-right: 1rem;
}

.footer-links ul li:last-child {
  margin-right: 0;
}

.footer-links a {
  color: #ddd; /* brighter than before */
  text-decoration: none;
  transition: color 0.3s ease;
}

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

.footer-inline-logo {
  display: inline-block;
  vertical-align: middle; /* aligns the logo with text */
  height: 2em; /* matches roughly the text size */
  margin: 0 5px; /* small spacing around the logo */
}


/* Copyright */
.footer-copyright {
  font-size: 0.75rem;
  line-height: 1.4;
  margin-bottom: 0;
  color: #ccc;
}

/* Bottom Footer */
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.2);
  font-size: 0.75rem;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
  color: #ccc;
}

/* Tagline */
/* Center the text */
.footer-text {
  display: block;
  text-align: center; /* changed from left to center */
  color: var(--accent-color);
  font-weight: 400;
  font-size: 16px;
  margin-bottom: 10px; /* adds breathing space above the line */
}

/* Underline / line below text */
.footer-ride-line {
  display: block;
  height: 0px; /* was 0px, now visible */
  width: 60px; /* narrower so it looks intentional */
  background-color: var(--accent-color);
  margin: 6px auto; /* centers horizontally */
}

/* Blink keyframes */
@keyframes blink {
  0%, 50%, 100% {
    opacity: 1;
  }
  25%, 75% {
    opacity: 0;
  }
}

/* Social Links */
.footer-bottom .social-links {
 display: flex;
  justify-content: center; /* changed from right to center */
  gap: 10px;
  margin-top: 8px;
}

.footer-bottom .social-links a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.3);
  font-size: 18px;
  color: #ddd;
  transition: 0.3s;
}

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

/* Credits */
.footer-credits {
  color: #bbb; /* slightly brighter than before */
  font-size: 0.75rem;
  margin-top: 0.5rem;
}

/* Responsive */
@media (max-width: 767px) {
  .footer .text-md-start,
  .footer .text-md-end {
    text-align: center !important;
  }
  .footer-bottom .social-links {
    justify-content: center;
    margin-top: 0.5rem;
  }
  .footer-text {
    margin-bottom: 0.5rem;
  }
  .footer-middle .row {
    flex-direction: column;
    gap: 0.5rem;
  }
}

/* Optional Hover Effects for All Links */
.footer a {
  transition: color 0.3s ease;
}

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

/*--------------------------------------------------------------
# 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: 40px;
  height: 40px;
  border-radius: 4px;
  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;
}

/*--------------------------------------------------------------
# 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: 120px 0 60px; /* reduced padding for better balance */
  text-align: center;
  position: relative;
  scroll-margin-top: 70px; /* aligns cleanly under fixed navbar */
}

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

.page-title h1 {
  position: relative;
  z-index: 1;
  font-size: 40px;
  font-weight: 700;
  margin-bottom: 12px;
  color: var(--heading-color);
}

.page-title .breadcrumbs {
  position: relative;
  z-index: 1;
}

.page-title .breadcrumbs ol {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  list-style: none;
  padding: 0;
  margin: 0;
  font-size: 15px;
  font-weight: 400;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
}

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

@media (max-width: 768px) {
  .page-title {
    padding: 100px 0 50px;
  }

  .page-title h1 {
    font-size: 30px;
  }

  .page-title .breadcrumbs ol {
    font-size: 14px;
  }
}



/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/

/*--------------------------------------------------------------
# Hero Section - Full CSS
--------------------------------------------------------------*/

/* Hero Section Base */
.hero {
  position: relative;
  width: 100%;
  height: 100vh;        /* full viewport height */
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background-color: black; /* fallback color */
}

/* Video & Image Background */
#bg-video,
#bg-image {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: translate(-50%, -50%);
  z-index: 0;
  transition: opacity 1s ease;
}

/* Fade between video & image */
#bg-video.fade-out { opacity: 0; }
#bg-image { opacity: 0; }
#bg-image.visible { opacity: 1; z-index: 1; }

/* Overlay layers */
.hero .overlay,
#video-overlay {
  position: absolute;
  top: 0; left: 0;
  width: 100%;
  height: 100%;
  z-index: 2;
  background: rgba(0,0,0,0.4); /* semi-transparent overlay */
  pointer-events: none;
  transition: background 1s ease;
}

/* Hero Content Container */
.hero .container {
  position: relative;
  z-index: 4;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 0 15px;
  height: 100%;
  color: #fff;
}

/* Headline */
.hero h5 {
  font-family: 'Cano', sans-serif;
  text-transform: lowercase;
  font-size: 120px;
  font-weight: normal;
  line-height: 1;
  margin: 0;
  transition: color 0.3s ease;
}

/* Paragraph / Subline */
.hero p {
  margin: 10px 0 0 0;
  font-size: 24px;
  font-weight: 800;
  transition: color 0.3s ease;
}

/* Special Hero Line */
.hero-z-line {
  font-family: 'Raleway', serif;
  font-size: 50px;
  font-weight: 800;
  color: #DADADA;
  margin: 0;
  transition: color 0.3s ease;
}

/* Buttons */
.btn-get-started {
  font-weight: 400;
  font-size: 14px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 10px 30px;
  border-radius: 4px;
  text-transform: uppercase;
  z-index: 4;
  background: #32CD32; /* lime green button */
  color: #fff !important;         /* make text white */
  transition: 0.3s;
  border: none;
  outline: none;
}

.btn-get-started:hover {
  filter: brightness(0.9);
  background: #32CD32; /* lime green button */
  color: #000 !important;         /* make text white */

}

/* Dark / Light Mode Text Colors */
.hero.light-mode h5,
.hero.light-mode p { color: #32CD32; }
.hero.light-mode .hero-z-line { color: #EAEAFA; }
.hero.dark-mode h5,
.hero.dark-mode p { color: #fff; }
.hero.dark-mode .hero-z-line { color: #EAEAFA; }

/* Header Fix */
#header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 5;
  background: rgba(0,0,0,0.5);
  backdrop-filter: blur(5px);
  display: flex;
  align-items: center;
}

/* Responsive Typography */
@media (max-width: 1200px) {
  .hero h5 { font-size: 90px; }
  .hero-z-line { font-size: 40px; }
  .hero p { font-size: 20px; }
}

@media (max-width: 768px) {
  .hero h5 { font-size: 60px; }
  .hero-z-line { font-size: 28px; }
  .hero p { font-size: 18px; }
  .btn-get-started { padding: 8px 20px; font-size: 13px; }
}

@media (max-width: 480px) {
  .hero h5 { font-size: 45px; }
  .hero-z-line { font-size: 22px; }
  .hero p { font-size: 16px; }
  .btn-get-started { padding: 6px 18px; font-size: 12px; }
}


/*--------------------------------------------------------------
# About Section
--------------------------------------------------------------*/

/*--------------------------------------------------------------
# About Section
--------------------------------------------------------------*/

/* Remove bullets from lists */
ul.no-bullets {
  list-style: none;
  padding-left: 0;
  margin: 0;
}

ul.no-bullets li {
  margin-bottom: 8px;
  display: flex;
  align-items: flex-start;
}

/* Headings */
.about h3 {
  font-weight: 700;
  font-size: 28px;
  margin-bottom: 15px;
}

/* Italic text with subtle contrast */
.about .fst-italic {
  color: var(--italic-color);
}

/* Content lists */
.about .content ul {
  list-style: none;
  padding: 0;
}

.about .about-img {
  width: 100%;          /* fills column width */
  max-width: 700px;     /* optional: limit max size */
  height: 335px;        /* fixed height for all images */
  object-fit: cover;    /* crops and fills without distortion */
  border-radius: 12px;
  display: block;
  margin: 0 auto;
}


/* List items with icons */
.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);
}

/* Last paragraph spacing */
.about .content p:last-child {
  margin-bottom: 0;
}

/* Reduce space below section title */
#about .section-title {
  margin-bottom: 5px; /* tighter spacing */
}

/* Optional: reduce container top padding */
#about .container {
  padding-top: 0;
}

/*----------------------------
  Mobile Responsiveness
----------------------------*/
@media (max-width: 991px) {
  /* Stack all columns vertically */
  #about .row.align-items-center {
    display: flex;
    flex-direction: column;
  }

  /* Alternate row order: text first, image second for odd rows (default)
     image first, text second for even rows */
  #about .row.align-items-center:nth-of-type(even) .col-lg-6:first-child {
    order: 2; /* push image down */
  }

  #about .row.align-items-center:nth-of-type(even) .col-lg-6:last-child {
    order: 1; /* text goes up */
  }

  /* Add spacing between stacked columns */
  #about .row.align-items-center .col-lg-6 {
    margin-bottom: 20px;
  }

  /* Limit image height */
  #about .about-img {
    max-height: 250px;
    object-fit: cover;
  }
}

/* Pulsating play button (if needed) */
.about .pulsating-play-btn {
  position: absolute;
  left: calc(50% - 47px);
  top: calc(50% - 47px);
}

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

.stats .stats-item i {
  color: var(--accent-color);
  font-size: 42px;
  line-height: 0;
  margin-right: 20px;
}

.stats .stats-item span {
  color: var(--heading-color);
  font-size: 36px;
  display: block;
  font-weight: 600;
}

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

/*--------------------------------------------------------------
# Services Section
--------------------------------------------------------------*/

/* ------------------------------
   Services Section
-------------------------------*/
.services .img {
  border-radius: 8px;
  overflow: hidden;
}

.services .img img {
  transition: 0.6s;
}

.services .details {
  background: color-mix(in srgb, var(--surface-color), transparent 5%);
  padding: 50px 30px;
  margin: -100px 30px 0 30px;
  transition: all ease-in-out 0.3s;
  position: relative;
  text-align: center;
  border-radius: 8px;
  box-shadow: 0px 0 25px rgba(0, 0, 0, 0.1);
  color: #000; /* force all text black */
}

.services .details .icon {
  margin: 0;
  width: 72px;
  height: 72px;
  background: var(--accent-color);
  color: var(--contrast-color);
  border: 6px solid var(--contrast-color);
  border-radius: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  font-size: 28px;
  transition: ease-in-out 0.3s;
  position: absolute;
  top: -36px;
  left: calc(50% - 36px);
}

.services .details h3 {
  font-weight: 700;
  margin: 10px 0 15px 0;
  font-size: 22px;
  transition: ease-in-out 0.3s;
  color: #000; /* headings black */
}

.services .details p {
  font-size: 0.95rem; /* p1 style */
  font-style: italic; /* p1 style */
  line-height: 1.5;
  margin-bottom: 0.5rem;
  color: #000 !important; /* force black text */
}

.services .details ul,
.services .details li {
  color: #000 !important;
  font-size: 0.95rem;
  line-height: 1.5;
}

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

.services .service-item:hover .details .icon {
  background: var(--surface-color);
  border: 2px solid var(--accent-color);
}

.services .service-item:hover .details .icon i {
  color: var(--accent-color);
}

.services .service-item:hover .img img {
  transform: scale(1.2);
}

/* Optional: keep check icon green */
.services .details i.bi-check-circle-fill {
  color: #28a745 !important;
}

/* Section Title Alignment */
.services .section-title {
  text-align: left; /* same as other sections */
  margin-bottom: 2rem;
}

.services .section-title h2 {
  font-size: 14px;
  font-weight: 500;
  margin: 0 0 0.5rem;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  position: relative;
}

.services .section-title h2::after {
  content: "";
  width: 80px;
  height: 2px;
  display: inline-block;
  background: var(--accent-color);
  margin-top: 4px;
}

.services .section-title p {
  color: var(--heading-color);
  font-size: 28px;
  font-weight: 800;
  text-transform: uppercase;
  font-family: var(--heading-font);
  line-height: 1.2;
  margin: 0 0 2rem;
}

@media (max-width: 768px) {
  .services .section-title p {
    font-size: 22px;
  }

  .services .details {
    margin: -60px 20px 0 20px;
    padding: 30px 20px;
  }

  .services .details .icon {
    width: 60px;
    height: 60px;
    top: -30px;
    left: calc(50% - 30px);
    font-size: 24px;
  }

  .services .details h3 {
    font-size: 18px;
  }

  .services .details p,
  .services .details ul,
  .services .details li {
    font-size: 0.9rem;
  }
}

/*--------------------------------------------------------------
# Services 2 Section
--------------------------------------------------------------*/
/*--------------------------------------------------------------
# Services 2 Section
--------------------------------------------------------------*/
.services-2 .service-item {
  display: flex;               /* icon + text horizontally */
  flex-direction: row;         /* enforce horizontal layout */
  align-items: flex-start;     /* top-align icon with text */
  gap: 1rem;                   /* spacing between icon and text */
  background-color: var(--surface-color);
  padding: 30px;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 85%);
  border-radius: 12px;
  transition: all 0.3s ease;
}

.services-2 .service-item .icon {
  font-size: 3rem;
  flex-shrink: 0;              /* icon doesn’t shrink */
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent-color);
}

.services-2 .service-item > div {
  display: flex;
  flex-direction: column;      /* stack title + description */
}

.services-2 .service-item .title {
  font-weight: 700;
  font-size: 20px;
  margin-bottom: 4px;
}

.services-2 .service-item .title a {
  color: var(--heading-color);
  text-decoration: none;
}

.services-2 .service-item .description {
  font-size: 14px;
  line-height: 1.4;
  margin: 0;
}

/* Hover effects */
.services-2 .service-item:hover {
  border-color: var(--accent-color);
  background-color: var(--background-color);
  transform: translateY(-5px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
}

.services-2 .service-item:hover .title a,
.services-2 .service-item:hover .icon {
  color: var(--accent-color);
}

.services-2 .service-item:hover .icon {
  transform: scale(1.1);
  transition: 0.3s ease;
}


/*--------------------------------------------------------------
# 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 */
}


  .service-item {
    display: flex;
    flex-direction: column;
  }
  .service-item .fixed-img {
    height: 250px;
    object-fit: cover;
    width: 100%;
    border-radius: 0.5rem;
  }
  .service-item .details ul {
    padding-left: 1rem;
    list-style: none;
  }
  .service-item .details ul li {
    margin-bottom: 0.5rem;
    line-height: 1.4rem;
  }
  .service-item .details h3 {
    font-size: 1.0rem;
    margin-bottom: 0.75rem;
  }





/*--------------------------------------------------------------
# Clients / Partners Section
--------------------------------------------------------------*/
#partners {
/*  background: linear-gradient(to bottom, #ffffff 0%, #f7f9fb 100%);*/
  padding: 70px 0; /* balanced vertical spacing */
  scroll-margin-top: 80px; /* aligns nicely below fixed header */
  position: relative;
  overflow: hidden;
}

#partners::before {
  content: "";
  position: absolute;
  inset: 0;
/*  background: rgba(255, 255, 255, 0.4);*/
  z-index: 0;
}

/* Section title */
#partners .section-title {
  font-size: 2rem;
  font-weight: 700;
  color: var(--heading-color);
  text-align: left;
  margin-bottom: 50px;
  position: relative;
  z-index: 1;
}

/* Client logos grid */
.clients {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 40px;
  position: relative;
  z-index: 1;
}

.clients .client-logo {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-end;
  margin-bottom: 0;
  transition: transform 0.3s ease;
}

.clients .client-logo img {
  max-width: 140px;
  padding: 15px;
  transition: all 0.3s ease;
  opacity: 0.6;
  filter: grayscale(100%);
}

.clients .client-logo img:hover {
  opacity: 1;
  filter: none;
  transform: scale(1.1);
}

.client-label {
  margin-top: 8px;
  background: rgba(0, 128, 0, 0.7); /* more natural green */
  color: #fff;
  text-align: center;
  padding: 4px 10px;
  font-size: 0.85rem;
  font-weight: 500;
  border-radius: 4px;
  opacity: 0;
  transform: translateY(5px);
  transition: opacity 0.3s ease, transform 0.3s ease;
}

.clients .client-logo:hover .client-label {
  opacity: 1;
  transform: translateY(0);
}

/* Responsive adjustments */
@media (max-width: 1200px) {
  #partners {
    padding: 60px 0;
  }
  .clients {
    gap: 30px;
  }
  .clients .client-logo img {
    max-width: 120px;
    padding: 10px;
  }
}

@media (max-width: 768px) {
  #partners {
    padding: 50px 0;
  }
  .clients {
    gap: 25px;
  }
  .clients .client-logo img {
    max-width: 100px;
  }
  .client-label {
    font-size: 0.8rem;
  }
}

@media (max-width: 480px) {
  #partners {
    padding: 40px 0;
  }
  .clients {
    gap: 20px;
  }
  .clients .client-logo img {
    max-width: 90px;
  }
  .client-label {
    font-size: 0.75rem;
    padding: 3px 6px;
  }
}


/*--------------------------------------------------------------
# Features Section - Browser Tab Style
--------------------------------------------------------------*/

/* General Tab Container */
.features .nav-tabs {
  border: none;
  display: flex;
  gap: 0; /* remove space between tabs */
  position: relative;
  z-index: 2;
}

/* Individual Tab */
.features .nav-link {
  background-color: var(--surface-color, #f5f5f5);
  color: var(--heading-color, #333);
  border: 1px solid var(--default-color, #ccc);
  border-bottom: 1px solid transparent; /* hide bottom so it merges with content */
  border-radius: 8px 8px 0 0;
  padding: 12px 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  position: relative;
  z-index: 1;
  transition: 0.3s;
  min-width: 140px;
  text-align: center;
}

/* Tab Icon */
.features .nav-link i {
  margin-right: 10px;
  font-size: 36px;
  line-height: 1;
}

/* Tab Title */
.features .nav-link h4 {
  font-size: 16px;
  font-weight: 600;
  margin: 0;
  white-space: nowrap;
}

/* Hover Effect */
.features .nav-link:hover {
  color: var(--accent-color, #32CD32);
  border-color: var(--accent-color, #32CD32);
}

/* Active Tab */
.features .nav-link.active {
  background: var(--accent-color, #32CD32);
  color: var(--contrast-color, #fff);
  border-color: var(--accent-color, #32CD32);
  border-bottom: 1px solid transparent;
  z-index: 3; /* above other tabs */
  margin-bottom: -8px; /* overlap tab content */
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
  transform: translateY(-2px);
}

/* Active Tab Title */
.features .nav-link.active h4 {
  color: var(--contrast-color, #fff);
}

/* Responsive Icons */
@media (max-width: 768px) {
  .features .nav-link i {
    font-size: 28px;
    margin-right: 6px;
  }
}

@media (max-width: 575px) {
  .features .nav-link {
    padding: 10px;
  }

  .features .nav-link i {
    font-size: 22px;
  }

  .features .nav-link h4 {
    font-size: 14px;
  }
}

/* Tab Content Container */
.features .tab-content {
  border: 1px solid var(--default-color, #ccc);
  border-radius: 0 0 8px 8px;
  background: var(--surface-color, #fff);
  padding: 25px;
  margin-top: -8px; /* pull content under active tab */
  position: relative;
  z-index: 1;
  min-height: 250px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.05);
  transition: 0.3s;
}

/* Tab Pane Styling */
.features .tab-pane h3 {
  color: var(--heading-color, #222);
  font-weight: 700;
  font-size: 26px;
  margin-bottom: 15px;
}

.features .tab-pane p {
  font-size: 16px;
  color: var(--text-color, #444);
  margin-bottom: 12px;
}

.features .tab-pane ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.features .tab-pane ul li {
  padding-bottom: 10px;
  font-size: 16px;
 color: var(--text-color, #444); /* likely inherited by li as well */
}

.features .tab-pane ul li i {
  font-size: 18px;
  color: var(--accent-color, #32CD32);
  margin-right: 6px;
}

/* Feature Images */
.feature-img-container {
  width: 100%;
  max-width: 500px;
  height: 300px;
  margin: 0 auto;
  overflow: hidden;
  border-radius: 12px;
}

.feature-img-container img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/*--------------------------------------------------------------
# Testimonials Section
--------------------------------------------------------------*/
.testimonials {
  padding: 80px 0;
  position: relative;
}

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

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

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

.testimonials .testimonials-carousel,
.testimonials .testimonials-slider {
  overflow: hidden;
}

.testimonials .testimonial-item {
  text-align: center;
}

.testimonials .testimonial-item .testimonial-img {
  width: 100px;
  border-radius: 50%;
  border: 6px solid color-mix(in srgb, var(--default-color), transparent 85%);
  margin: 0 auto;
}

.testimonials .testimonial-item h3 {
  font-size: 20px;
  font-weight: bold;
  margin: 10px 0 5px 0;
}

.testimonials .testimonial-item h4 {
  font-size: 14px;
  margin: 0 0 15px 0;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
}

.testimonials .testimonial-item .stars {
  margin-bottom: 15px;
}

.testimonials .testimonial-item .stars i {
  color: #ffc107;
  margin: 0 1px;
}

.testimonials .testimonial-item .quote-icon-left,
.testimonials .testimonial-item .quote-icon-right {
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  font-size: 26px;
  line-height: 0;
}

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

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

.testimonials .testimonial-item p {
  font-style: italic;
  margin: 0 auto 15px auto;
}

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

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

.testimonials .swiper-pagination .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  background-color: color-mix(in srgb, var(--default-color), transparent 50%);
  opacity: 0.5;
}

.testimonials .swiper-pagination .swiper-pagination-bullet-active {
  background-color: var(--default-color);
  opacity: 1;
}

@media (min-width: 992px) {
  .testimonials .testimonial-item p {
    width: 80%;
  }
}
/*--------------------------------------------------------------
# Portfolio Section
--------------------------------------------------------------*/

/* Filters */
.portfolio .portfolio-filters {
  padding: 0;
  margin: 0 auto 30px auto; /* more space below filters */
  list-style: none;
  text-align: center;
}

.portfolio .portfolio-filters li {
  cursor: pointer;
  display: inline-block;
  padding: 6px 14px; /* more clickable area */
  font-size: 16px;
  font-weight: 500;
  margin: 0 8px 8px 8px;
  border-radius: 4px;
  background: var(--nav-color);
  color: var(--default-color);
  transition: all 0.3s ease-in-out;
}

.portfolio .portfolio-filters li:hover,
.portfolio .portfolio-filters li.filter-active {
  background: var(--accent-color);
  color: var(--contrast-color);
}

/* Portfolio items container */
.portfolio .portfolio-content {
  position: relative;
  overflow: hidden;
  border-radius: 8px;
  transition: transform 0.3s ease;
}

.portfolio .portfolio-content img {
  width: 100%;
  display: block;
  border-radius: 8px;
  transition: transform 0.3s ease;
}

/* Overlay info */
.portfolio .portfolio-content .portfolio-info {
  opacity: 0;
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(21, 34, 43, 0.85);
  color: #fff;
  padding: 12px 10px;
  text-align: center;
  transition: opacity 0.3s ease;
}

.portfolio .portfolio-content:hover .portfolio-info {
  opacity: 1;
}

/* Info text */
.portfolio .portfolio-content .portfolio-info h4 {
  font-size: 16px;
  font-weight: 600;
  margin: 0 0 4px;
}

.portfolio .portfolio-content .portfolio-info p {
  font-size: 14px;
  font-weight: 400;
  margin: 0;
  opacity: 0.8;
}

/* Overlay links */
.portfolio .portfolio-content .portfolio-info .preview-link,
.portfolio .portfolio-content .portfolio-info .details-link {
  font-size: 22px;
  margin: 0 5px;
  color: #fff;
  transition: color 0.3s ease;
}

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

/* Hover scale */
.portfolio .portfolio-content:hover img {
  transform: scale(1.05);
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .portfolio .portfolio-filters li {
    font-size: 14px;
    padding: 5px 10px;
    margin: 0 4px 6px;
  }

  .portfolio .portfolio-content .portfolio-info h4 {
    font-size: 14px;
  }

  .portfolio .portfolio-content .portfolio-info p {
    font-size: 12px;
  }
}

/* Force italic text in the collection section to use the defined variable */
#rides .fst-italic {
    color: var(--italic-color) !important;  /* override other definitions */
    font-style: italic;                     /* ensure italic */
}


/*--------------------------------------------------------------
# Team Section
--------------------------------------------------------------*/
.team .member {
  position: relative;
}

.team .member .pic {
  overflow: hidden;
  margin-bottom: 50px;
}

.team .member .member-info {
  background-color: var(--surface-color);
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
  position: absolute;
  bottom: -50px;
  left: 20px;
  right: 20px;
  padding: 20px 15px;
  overflow: hidden;
  transition: 0.5s;
}

.team .member h4 {
  font-weight: 700;
  margin-bottom: 10px;
  font-size: 16px;
  position: relative;
  padding-bottom: 10px;
}

.team .member h4::after {
  content: "";
  position: absolute;
  display: block;
  width: 50px;
  height: 1px;
  background: color-mix(in srgb, var(--default-color), transparent 60%);
  bottom: 0;
  left: 0;
}

.team .member span {
  font-style: italic;
  display: block;
  font-size: 13px;
color: var(--italic-color);
}

.team .member .social {
  position: absolute;
  right: 15px;
  bottom: 15px;
}

.team .member .social a {
  transition: color 0.3s;
  color: color-mix(in srgb, var(--default-color), transparent 70%);
}

.team .member .social a:hover {
  color: var(--accent-color);
}

.team .member .social i {
  font-size: 16px;
  margin: 0 2px;
}
.team-subtitle {
  font-family: 'Cano', var(--default-font); /* match Row 1 content */
  font-style: italic;
  font-weight: 300;                         /* optional light weight */
color: var(--italic-color);
  margin-top: 6px;   /* spacing below heading/paragraph */
  margin-bottom: 16px; /* spacing before next content */
  line-height: 1.5;
  font-size: 1rem;   /* adjust to visually match Row 1 */
}

.team .fst-italic {
  text-transform: none; 
color: var(--italic-color);
  font-style: italic;
  font-family: var(--default-font);  /* match About section font */
  font-weight: 400;                          /* optional: lighter */
  font-size: 1rem;                            /* default paragraph size */
  line-height: 1.5;
  margin-top: 1rem;                           /* same spacing as mt-3 in About */
  margin-bottom: 1rem;                        /* space before next element */
}


/*--------------------------------------------------------------
# Contact Section
--------------------------------------------------------------*/
/* Card & Info Items */
.contact .info-item {
  background-color: var(--surface-color);
  box-shadow: 0px 0px 20px rgba(0,0,0,0.1);
  padding: 24px 0 30px 0;
  text-align: center;
}

.contact .info-item i {
  font-size: 24px;
  color: var(--accent-color);
  width: 56px;
  height: 56px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  border: 2px dotted color-mix(in srgb, var(--accent-color), transparent 40%);
}

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

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

/* Form Card */
.contact .php-email-form {
  background-color: var(--surface-color);
  box-shadow: 0px 0px 20px rgba(0,0,0,0.1);
  padding: 30px;
  width: 100%;
  height: 100%;
}

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

.contact .php-email-form input:focus,
.contact .php-email-form textarea:focus {
  border-color: var(--accent-color);
  box-shadow: 0 0 0 2px var(--accent-color);
  outline: none;
  transition: 0.3s;
}

.contact .php-email-form button[type=submit] {
  border-radius: 50px;
}

/* Button States */
#submitBtn {
  opacity: 0.5;
  cursor: not-allowed;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

#submitBtn.active {
  opacity: 1;
  cursor: pointer;
  pointer-events: auto;
}

/* Make interest buttons compact and responsive */
.interest-buttons {
  justify-content: flex-start; /* align left, not stretched */
  flex-wrap: wrap;
}

/* Interest buttons styling */
.interest-buttons .interest-btn {
  flex: 1 1 auto;         /* allow wrapping but shrink to content */
  max-width: 190px;       /* optional, set a max width */
  white-space: nowrap;    /* prevent text from wrapping */
  padding: 0.35rem 0.75rem; /* smaller padding */
  font-size: 0.8rem;      /* adjust text size */
  text-align: center;
}


/* Optional: selected button styling */
.interest-btn.selected {
  background-color: #0d6efd !important;
  color: #fff !important;
  border-color: #0d6efd !important;
}


/* Messages */
.error-message {
  display: none;
  color: #842029;
  background-color: #f8d7da;
  border: 1px solid #f5c2c7;
  padding: 10px;
  border-radius: 5px;
  margin-bottom: 10px;
  font-size: 0.95rem;
}

.sent-message {
  display: none;
  color: #0f5132;
  background-color: #d1e7dd;
  border: 1px solid #badbcc;
  padding: 10px;
  border-radius: 5px;
  margin-bottom: 10px;
  font-size: 0.95rem;
}

.loading {
  display: none;
  color: #0d6efd;
  font-weight: 500;
  margin-bottom: 10px;
}

/* Make info-item clickable */
.contact .info-item {
  transition: all 0.3s ease;
}

/* Hover effect for clickable cards */
.contact a.info-item:hover {
  background-color: var(--accent-color);   /* card background changes */
  color: #fff;                             /* text color changes */
}

.contact a.info-item:hover i {
  color: #fff;                             /* icon color changes */
  border-color: #fff;                       /* icon border changes if dotted/outlined */
}


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

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

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

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

.portfolio-details .portfolio-info {
  background-color: var(--surface-color);
  padding: 30px;
  box-shadow: 0px 0 30px rgba(0, 0, 0, 0.1);
}

.portfolio-details .portfolio-info h3 {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 20px;
  padding-bottom: 20px;
  border-bottom: 1px solid color-mix(in srgb, var(--default-color), transparent 85%);
}

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

.portfolio-details .portfolio-info ul li+li {
  margin-top: 10px;
}

.portfolio-details .portfolio-description {
  padding-top: 30px;
}

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

.portfolio-details .portfolio-description p {
  padding: 0;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
}

.portfolio-item {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 0.4s ease, transform 0.4s ease;
}

.portfolio-item.hide {
  opacity: 0;
  transform: translateY(20px);
  pointer-events: none; /* prevent clicks while hidden */
  position: absolute; /* optional, prevents layout jump */
}




  /* Ensure all tab images have the same size */
  .feature-img-container {
    width: 100%;
    height: 350px; /* adjust height as needed */
    overflow: hidden;
  }

  .feature-img-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
.portfolio-content img {
  width: 100%;          /* Take full card width */
  height: 250px;        /* Fixed height */
  object-fit: cover;    /* Crop edges instead of stretching */
  border-radius: 8px;   /* Optional: rounded corners for consistency */
}



/* Base light green for all interest buttons */
/* Base button style */
.interest-btn {
  font-weight: 400;
  font-size: 14px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 10px 30px;
  border-radius: 4px;
  text-transform: uppercase;
  z-index: 4; /* above everything */
  background: #32CD32;
  color: #000;
  transition: 0.3s;
  border: none;           /* remove default border */
  outline: none;          /* remove default focus outline */

}

/* Hover effect */
.interest-btn:hover {
  background-color: var(--accent-color); /* accent green */
  color: #fff;
  border-color: var(--accent-color);
  transform: translateY(-2px); /* subtle lift */
  box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}

/* Selected state */
.interest-btn.selected {
  background-color: var(--accent-color); /* accent green */
  color: #fff;
  border-color: var(--accent-color);
  box-shadow: 0 4px 8px rgba(0,0,0,0.15); /* selected pop */
}


/* Submit Button */
#submitBtn {
  background-color: #d4f5d4; /* light green */
  border: 1px solid #a8e0a8;
  color: #333;
  padding: 10px 20px;
  border-radius: 5px;
  cursor: not-allowed;
  transition: all 0.3s ease;
}

#submitBtn.active {
  background-color: var(--accent-color); /* accent green */
  color: #fff;
  cursor: pointer;
}


.hide-field {
  display: none !important;
}


------ scrollable collection----

.scroll-wrapper {
  overflow-x: auto;
  padding-bottom: 1rem;
  scroll-behavior: smooth;
}

.scroll-wrapper::-webkit-scrollbar {
  height: 6px;
}
.scroll-wrapper::-webkit-scrollbar-thumb {
  background: #198754; /* green thumb */
  border-radius: 3px;
}
.scroll-wrapper::-webkit-scrollbar-track {
  background: transparent;
}

.isotope-container {
  display: flex;
  gap: 1rem;
}

.isotope-container .portfolio-item {
  flex: 0 0 calc(33.333% - 1rem);
  max-width: calc(33.333% - 1rem);
}

/* Responsive */
@media (max-width: 992px) {
  .isotope-container .portfolio-item {
    flex: 0 0 calc(50% - 1rem);
    max-width: calc(50% - 1rem);
  }
}
@media (max-width: 576px) {
  .isotope-container .portfolio-item {
    flex: 0 0 calc(100% - 1rem);
    max-width: calc(100% - 1rem);
  }
}
/* Error message styling */
.error-message {
  display: none; /* hidden by default */
  color: #842029;             /* dark red text */
  background-color: #f8d7da;  /* soft pink/red background */
  border: 1px solid #f5c2c7;  /* subtle border */
  padding: 10px;
  border-radius: 5px;
  margin-bottom: 10px;
  font-size: 0.95rem;
}
