/**
* Template Name: Symbiome - Tech & Nature
* Updated: Jan 2026 - Modern AI & Biodiversity Design
* Custom color palette for tech-nature hybrid branding
*/

/*--------------------------------------------------------------
# Color Palette
--------------------------------------------------------------*/
:root {
  --primary-teal: #bcc664;
  --primary-dark: #77b258;
  --accent-cyan: #80c792;
  --accent-coral: #ffd378;
  --text-charcoal: #444444;
  --text-gray: #4A5568;
  --bg-light: #f8fcf9;
  --bg-white: #FFFFFF;
}

/*--------------------------------------------------------------
# General
--------------------------------------------------------------*/
body {
  font-family: "Open Sans", sans-serif;
  color: var(--text-charcoal);
}

a {
  text-decoration: none;
  color: var(--primary-teal);
}

a:hover {
  color: var(--accent-cyan);
  text-decoration: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Raleway", sans-serif;
}

.accent-background {
  --background-color: var(--primary-teal);
  --default-color: #ffffff;
  --heading-color: #ffffff;
  --surface-color: var(--primary-dark);
  --contrast-color: #ffffff;
}

/*--------------------------------------------------------------
# Back to top button
--------------------------------------------------------------*/
.back-to-top {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  right: 15px;
  bottom: 15px;
  z-index: 996;
  background: var(--primary-teal);
  width: 40px;
  height: 40px;
  border-radius: 4px;
  transition: all 0.4s;
}

.back-to-top i {
  font-size: 24px;
  color: #fff;
  line-height: 0;
}

.back-to-top:hover {
  background: var(--accent-cyan);
  color: #fff;
}

.back-to-top.active {
  visibility: visible;
  opacity: 1;
}

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

/*--------------------------------------------------------------
# Top Bar
--------------------------------------------------------------*/
#topbar {
  background: #fbfbfb;
  font-size: 15px;
  height: 40px;
  padding: 0;
}

#topbar .contact-info a {
  line-height: 0;
  color: #444444;
  transition: 0.3s;
}

#topbar .contact-info a:hover {
  color: var(--primary-teal);
}

#topbar .contact-info i {
  color: var(--primary-teal);
  line-height: 0;
  margin-right: 5px;
}

#topbar .contact-info .phone-icon {
  margin-left: 15px;
}

#topbar .social-links a {
  color: #6f6f6f;
  padding: 4px 12px;
  display: inline-block;
  line-height: 1px;
  transition: 0.3s;
}

#topbar .social-links a:hover {
  color: var(--primary-teal);
}

/* Language Switcher */
.language-switcher {
  display: inline-block;
  margin-right: 15px;
  vertical-align: middle;
}

.language-switcher .lang-btn {
  display: inline-block;
  padding: 4px 10px;
  margin: 0 2px;
  font-size: 12px;
  font-weight: 600;
  color: #6f6f6f;
  border: 1px solid #ddd;
  border-radius: 3px;
  transition: all 0.3s;
  text-decoration: none;
  line-height: normal;
}

.language-switcher .lang-btn:hover {
  color: var(--primary-teal);
  border-color: var(--primary-teal);
  background: rgba(188, 198, 100, 0.1);
}

.language-switcher .lang-btn.active {
  color: #fff;
  background: var(--primary-teal);
  border-color: var(--primary-teal);
}

/* Lynx Link Styles */
.lynx-link {
  background: #1a1f3a !important;
  color: white !important;
  padding: 8px 16px !important;
  border-radius: 6px !important;
  font-weight: 600 !important;
  transition: all 0.3s ease !important;
  box-shadow: 0 4px 12px rgba(26, 31, 58, 0.5) !important;
  display: inline-flex !important;
  align-items: center !important;
  border: 1px solid rgba(102, 126, 234, 0.3) !important;
}

.lynx-link:hover {
  background: #252b4a !important;
  transform: translateY(-2px) !important;
  box-shadow: 0 6px 20px rgba(102, 126, 234, 0.6) !important;
  color: white !important;
  border-color: rgba(102, 126, 234, 0.5) !important;
}

.lynx-link i {
  font-size: 0.875rem;
}

/* Mobile responsive for language switcher */
@media (max-width: 768px) {
  #topbar .social-links {
    display: flex !important;
    justify-content: center;
    align-items: center;
    margin-top: 10px;
  }
  
  .language-switcher {
    margin: 0 10px 0 0;
  }
}

/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/
#header {
  background: #fff;
  transition: all 0.5s;
  z-index: 997;
  height: 70px;
}

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

#header .logo {
  font-size: 30px;
  margin: 0;
  padding: 0;
  line-height: 1;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
}

#header .logo a {
  color: var(--primary-teal);
}

#header .logo img {
  max-height: 40px;
}

.scrolled-offset {
  margin-top: 70px;
}

/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/
/**
* Desktop Navigation 
*/
.navbar {
  padding: 0;
}

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

.navbar li {
  position: relative;
}

.navbar a,
.navbar a:focus {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 0 10px 30px;
  font-size: 15px;
  color: #222222;
  white-space: nowrap;
  transition: 0.3s;
}

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

.navbar a:hover,
.navbar .active,
.navbar .active:focus,
.navbar li:hover>a {
  color: var(--accent-cyan);
}

.navbar .getstarted,
.navbar .getstarted:focus {
  color: var(--primary-teal);
  padding: 8px 25px;
  margin-left: 30px;
  border-radius: 4px;
  border: 2px solid var(--primary-teal);
  transition: 0.3s;
  font-size: 14px;
}

.navbar .getstarted:hover,
.navbar .getstarted:focus:hover {
  background: var(--accent-cyan);
  color: #fff;
  border-color: var(--accent-cyan);
}

.navbar .dropdown ul {
  display: block;
  position: absolute;
  left: 14px;
  top: calc(100% + 30px);
  margin: 0;
  padding: 10px 0;
  z-index: 99;
  opacity: 0;
  visibility: hidden;
  background: #fff;
  box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
  transition: 0.3s;
}

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

.navbar .dropdown ul a {
  padding: 10px 20px;
  text-transform: none;
}

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

.navbar .dropdown ul a:hover,
.navbar .dropdown ul .active:hover,
.navbar .dropdown ul li:hover>a {
  color: var(--accent-cyan);
}

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

.navbar .dropdown .dropdown ul {
  top: 0;
  left: calc(100% - 30px);
  visibility: hidden;
}

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

@media (max-width: 1366px) {
  .navbar .dropdown .dropdown ul {
    left: -90%;
  }

  .navbar .dropdown .dropdown:hover>ul {
    left: -100%;
  }
}

/**
* Mobile Navigation 
*/
.mobile-nav-toggle {
  color: #222222;
  font-size: 28px;
  cursor: pointer;
  display: none;
  line-height: 0;
  transition: 0.5s;
}

.mobile-nav-toggle.bi-x {
  color: #fff;
}

@media (max-width: 991px) {
  .mobile-nav-toggle {
    display: block;
  }

  .navbar ul {
    display: none;
  }
}

.navbar-mobile {
  position: fixed;
  overflow: hidden;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  background: rgba(9, 9, 9, 0.9);
  transition: 0.3s;
  z-index: 999;
}

.navbar-mobile .mobile-nav-toggle {
  position: absolute;
  top: 15px;
  right: 15px;
}

.navbar-mobile ul {
  display: block;
  position: absolute;
  top: 55px;
  right: 15px;
  bottom: 15px;
  left: 15px;
  padding: 10px 0;
  background-color: #fff;
  overflow-y: auto;
  transition: 0.3s;
}

.navbar-mobile a,
.navbar-mobile a:focus {
  padding: 10px 20px;
  font-size: 15px;
  color: #222222;
}

.navbar-mobile a:hover,
.navbar-mobile .active,
.navbar-mobile li:hover>a {
  color: var(--accent-cyan);
}

.navbar-mobile .getstarted,
.navbar-mobile .getstarted:focus {
  margin: 15px;
}

.navbar-mobile .dropdown ul {
  position: static;
  display: none;
  margin: 10px 20px;
  padding: 10px 0;
  z-index: 99;
  opacity: 1;
  visibility: visible;
  background: #fff;
  box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
}

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

.navbar-mobile .dropdown ul a {
  padding: 10px 20px;
}

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

.navbar-mobile .dropdown ul a:hover,
.navbar-mobile .dropdown ul .active:hover,
.navbar-mobile .dropdown ul li:hover>a {
  color: var(--accent-cyan);
}

.navbar-mobile .dropdown>.dropdown-active {
  display: block;
}

/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
#hero {
  width: 100%;
  height: 70vh;
  background-color: rgba(9, 9, 9, 0.8);
  overflow: hidden;
  position: relative;
}

/* Animated data particles overlay */
#hero::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: 
    radial-gradient(2px 2px at 20% 30%, var(--accent-cyan), transparent),
    radial-gradient(2px 2px at 60% 70%, var(--accent-cyan), transparent),
    radial-gradient(1px 1px at 50% 50%, white, transparent),
    radial-gradient(1px 1px at 80% 10%, white, transparent),
    radial-gradient(2px 2px at 90% 60%, var(--primary-teal), transparent),
    radial-gradient(1px 1px at 33% 80%, white, transparent);
  background-size: 200% 200%;
  background-position: 0% 0%;
  animation: particleFloat 20s ease-in-out infinite;
  opacity: 0.6;
  pointer-events: none;
  z-index: 1;
}

@keyframes particleFloat {
  0%, 100% {
    background-position: 0% 0%;
    opacity: 0.6;
  }
  50% {
    background-position: 100% 100%;
    opacity: 0.4;
  }
}

#hero .carousel,
#hero .carousel-inner,
#hero .carousel-item,
#hero .carousel-item::before {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
}

#hero .carousel-item::before {
  content: "";
  background: linear-gradient(135deg, rgba(26, 77, 74, 0.7) 0%, rgba(44, 95, 93, 0.5) 100%);
  z-index: 0;
}

#hero .carousel-container {
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  bottom: 0;
  top: 0;
  left: 50px;
  right: 50px;
  z-index: 2;
}

#hero .container {
  text-align: center;
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 60px 40px;
  box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.37);
  max-width: 900px;
  transition: transform 0.3s ease;
}

#hero .container:hover {
  transform: translateY(-5px);
}

#hero h2 {
  color: #fff;
  margin-bottom: 25px;
  font-size: 56px;
  font-weight: 800;
  letter-spacing: -1px;
  line-height: 1.2;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

#hero h4 {
  color: rgba(255, 255, 255, 0.95);
  font-size: 20px;
  font-weight: 400;
  line-height: 1.6;
  margin: 0 auto;
  max-width: 700px;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

#hero p {
  animation-delay: 0.4s;
  margin: 0 auto 30px auto;
  color: #fff;
}

#hero .carousel-inner .carousel-item {
  transition-property: opacity;
  background-position: center top;
}

#hero .carousel-inner .carousel-item,
#hero .carousel-inner .active.carousel-item-start,
#hero .carousel-inner .active.carousel-item-end {
  opacity: 0;
}

#hero .carousel-inner .active,
#hero .carousel-inner .carousel-item-next.carousel-item-start,
#hero .carousel-inner .carousel-item-prev.carousel-item-end {
  opacity: 1;
  transition: 0.5s;
}

#hero .carousel-control-next-icon,
#hero .carousel-control-prev-icon {
  background: none;
  font-size: 30px;
  line-height: 0;
  width: auto;
  height: auto;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 50px;
  transition: 0.3s;
  color: rgba(255, 255, 255, 0.5);
  width: 54px;
  height: 54px;
  display: flex;
  align-items: center;
  justify-content: center;
}

#hero .carousel-control-next-icon:hover,
#hero .carousel-control-prev-icon:hover {
  background: rgba(255, 255, 255, 0.3);
  color: rgba(255, 255, 255, 0.8);
}

#hero .carousel-indicators li {
  list-style-type: none;
  cursor: pointer;
  background: #fff;
  overflow: hidden;
  border: 0;
  width: 12px;
  height: 12px;
  border-radius: 50px;
  opacity: 0.6;
  transition: 0.3s;
}

#hero .carousel-indicators li.active {
  opacity: 1;
  background: var(--accent-cyan);
}

#hero .btn-get-started {
  font-family: "Raleway", sans-serif;
  font-weight: 500;
  font-size: 14px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 14px 32px;
  border-radius: 4px;
  transition: 0.5s;
  line-height: 1;
  color: #fff;
  animation-delay: 0.8s;
  background: var(--accent-coral);
}

#hero .btn-get-started:hover {
  background: var(--accent-cyan);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 212, 170, 0.3);
}

/* Hero tech elements */
.hero-badge {
  display: inline-block;
  background: rgba(0, 212, 170, 0.2);
  border: 1px solid var(--accent-cyan);
  color: var(--accent-cyan);
  padding: 8px 20px;
  border-radius: 30px;
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 20px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.hero-badge i {
  margin-right: 8px;
  font-size: 16px;
}

.hero-stats {
  display: flex;
  justify-content: center;
  gap: 40px;
  margin-top: 35px;
  flex-wrap: wrap;
}

.hero-stats .stat-item {
  text-align: center;
}

.hero-stats .stat-number {
  font-size: 36px;
  font-weight: 800;
  color: var(--accent-cyan);
  line-height: 1;
  margin-bottom: 8px;
  text-shadow: 0 0 20px rgba(0, 212, 170, 0.5);
}

.hero-stats .stat-label {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.8);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.hero-tech-stack {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.hero-tech-stack .tech-tag {
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: #fff;
  padding: 8px 16px;
  border-radius: 20px;
  font-size: 13px;
  font-weight: 500;
  transition: all 0.3s ease;
  backdrop-filter: blur(5px);
}

.hero-tech-stack .tech-tag:hover {
  background: rgba(0, 212, 170, 0.2);
  border-color: var(--accent-cyan);
  color: var(--accent-cyan);
  transform: translateY(-2px);
}

.hero-use-cases {
  display: flex;
  justify-content: center;
  gap: 30px;
  margin-top: 30px;
  flex-wrap: wrap;
}

.hero-use-cases .use-case {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: #fff;
}

.hero-use-cases .use-case i {
  font-size: 32px;
  color: var(--accent-cyan);
  background: rgba(0, 212, 170, 0.1);
  border: 2px solid var(--accent-cyan);
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.hero-use-cases .use-case:hover i {
  background: var(--accent-cyan);
  color: #fff;
  transform: scale(1.1);
}

.hero-use-cases .use-case span {
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* Hero features list (for Lynx slide) */
.hero-features {
  display: flex;
  flex-direction: column;
  gap: 15px;
  margin-top: 30px;
  max-width: 650px;
  margin-left: auto;
  margin-right: auto;
}

.hero-features .feature-item {
  display: flex;
  align-items: center;
  gap: 15px;
  color: #fff;
  font-size: 16px;
  font-weight: 500;
  text-align: left;
}

.hero-features .feature-item i {
  font-size: 24px;
  color: var(--accent-cyan);
  flex-shrink: 0;
}

/* Hero CTA button */
.btn-hero-cta {
  display: inline-block;
  padding: 14px 32px;
  background: var(--accent-coral);
  color: #fff;
  font-weight: 600;
  font-size: 16px;
  border-radius: 4px;
  text-decoration: none;
  transition: all 0.3s ease;
  border: 2px solid var(--accent-coral);
}

.btn-hero-cta:hover {
  background: var(--accent-cyan);
  border-color: var(--accent-cyan);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(128, 199, 146, 0.4);
  color: #fff;
}

.btn-hero-cta i {
  margin-right: 8px;
  color: #fff;
  animation-delay: 0.8s;
  background: var(--accent-coral);
}

#hero .btn-get-started:hover {
  background: var(--accent-cyan);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 212, 170, 0.3);
}

@media (max-width: 992px) {
  #hero {
    height: 100vh;
  }

  #hero .carousel-container {
    top: 66px;
    left: 20px;
    right: 20px;
  }

  #hero .container {
    padding: 40px 30px;
  }

  #hero h2 {
    font-size: 36px;
  }

  #hero h4 {
    font-size: 16px;
  }

  .hero-stats {
    gap: 25px;
  }

  .hero-stats .stat-number {
    font-size: 28px;
  }
}

.hero-labels {
  display: flex;
  gap: 2rem;
  justify-content: center;
  flex-wrap: wrap;
}

.label-item {
  text-decoration: none;
  color: white;
  font-size: 1.1rem;
  padding: 0.75rem 1.5rem;
  border: 2px solid white;
  border-radius: 50px;
  transition: all 0.3s ease;
}

.label-item:hover {
  background-color: white;
  color: #64a377ff;
}

.label-item span {
  display: block;
}

@media (max-width: 768px) {
  #hero h2 {
    font-size: 28px;
  }

  #hero h4 {
    font-size: 15px;
  }

  #hero .container {
    padding: 30px 20px;
  }

  .hero-badge {
    font-size: 12px;
    padding: 6px 16px;
  }

  .hero-stats {
    gap: 20px;
  }

  .hero-stats .stat-number {
    font-size: 24px;
  }

  .hero-stats .stat-label {
    font-size: 11px;
  }

  .hero-tech-stack .tech-tag {
    font-size: 12px;
    padding: 6px 12px;
  }

  .hero-use-cases {
    gap: 20px;
  }

  .hero-use-cases .use-case i {
    width: 50px;
    height: 50px;
    font-size: 24px;
  }

  .hero-use-cases .use-case span {
    font-size: 12px;
  }

  .hero-features .feature-item {
    font-size: 14px;
    gap: 12px;
  }

  .hero-features .feature-item i {
    font-size: 20px;
  }

  .btn-hero-cta {
    font-size: 14px;
    padding: 12px 24px;
  }
}

@media (min-width: 1024px) {

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

@media (max-height: 500px) {
  #hero {
    height: 120vh;
  }
}

/*--------------------------------------------------------------
# Sections General
--------------------------------------------------------------*/
section {
  padding: 60px 0;
}

.section-bg {
  background-color: var(--bg-light);
}

.section-title {
  text-align: center;
  padding-bottom: 30px;
}

.section-title h2 {
  font-size: 32px;
  font-weight: bold;
  text-transform: uppercase;
  margin-bottom: 20px;
  padding-bottom: 20px;
  position: relative;
}

.section-title h2::before {
  content: "";
  position: absolute;
  display: block;
  width: 120px;
  height: 1px;
  background: #ddd;
  bottom: 1px;
  left: calc(50% - 60px);
}

.section-title h2::after {
  content: "";
  position: absolute;
  display: block;
  width: 40px;
  height: 3px;
  background: var(--accent-cyan);
  bottom: 0;
  left: calc(50% - 20px);
}

.section-title p {
  margin-bottom: 0;
  font-size: 14px;
  color: #919191;
}

section, .section {
  color: var(--default-color);
  background-color: var(--background-color);
  padding: 60px 0;
  scroll-margin-top: 120px;
  overflow: clip;
}
/*--------------------------------------------------------------
# Featured Services
--------------------------------------------------------------*/
.featured-services {
  padding: 20px 0;
}

.featured-services .icon-box {
  padding: 20px;
}

.featured-services .icon-box-bg {
  background-image: linear-gradient(0deg, #222222 0%, #2f2f2f 50%, #222222 100%);
}

.featured-services .icon {
  margin-bottom: 15px;
}

.featured-services .icon i {
  color: var(--accent-cyan);
  font-size: 42px;
}

.featured-services .title {
  font-weight: 700;
  margin-bottom: 15px;
  font-size: 18px;
}

.featured-services .title a {
  color: #222222;
  transition: 0.3s;
}

.featured-services .icon-box:hover .title a {
  color: var(--primary-teal);
}

.featured-services .description {
  line-height: 24px;
  font-size: 14px;
}

/*--------------------------------------------------------------
# About Us
--------------------------------------------------------------*/
.about .content h3 {
  font-weight: 700;
  font-size: 28px;
}

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

.about .content ul li {
  padding-bottom: 10px;
  padding-left:10px;
  margin-left: 30px;
  list-style-type: disc;
}

.about .content ul i {
  font-size: 20px;
  padding-right: 4px;
  color: var(--accent-cyan);
}

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

/*--------------------------------------------------------------
# Why Us
--------------------------------------------------------------*/
.why-us {
  padding: 0;
}

.why-us .row {
  overflow: hidden;
}

.why-us .content-item {
  padding: 40px;
  border-left: 1px solid #eee;
  border-bottom: 1px solid #eee;
  margin: -1px;
}

.why-us .content-item span {
  display: block;
  font-size: 24px;
  font-weight: 400;
  color: var(--accent-cyan);
}

.why-us .content-item h4 {
  font-size: 26px;
  font-weight: 300;
  padding: 0;
  margin: 20px 0;
}

.why-us .content-item p {
  color: #aaaaaa;
  font-size: 15px;
  margin: 0;
  padding: 0;
}

@media (max-width: 768px) {
  .why-us .content-item {
    padding: 40px 0;
  }
}

/*--------------------------------------------------------------
# Our Clients
--------------------------------------------------------------*/
.clients .swiper-slide img {
  opacity: 0.5;
  transition: 0.3s;
}

.clients .swiper-slide img:hover {
  opacity: 1;
}

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

.clients .swiper-pagination .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  background-color: #fff;
  opacity: 1;
  border: 1px solid var(--primary-teal);
}

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

/*--------------------------------------------------------------
# Services
--------------------------------------------------------------*/
.services .icon-box {
  text-align: center;
  padding: 70px 20px 80px 20px;
  transition: all ease-in-out 0.3s;
  background: #fff;
  box-shadow: 0px 5px 90px 0px rgba(110, 123, 131, 0.1);
}

/* Lynx product specific styling */
#lynx-product .icon-box {
  text-align: left;
  box-shadow: 0px 0 30px rgba(188, 198, 100, 0.15);
  border: 2px solid rgba(188, 198, 100, 0.1);
  transition: all 0.3s ease;
}

#lynx-product .icon-box:hover {
  border-color: #bcc664;
  box-shadow: 0px 0 40px rgba(188, 198, 100, 0.25);
  transform: translateY(-5px);
}

#lynx-product .icon-box .icon {
  text-align: center;
}

.btn-outline-success {
  color: #bcc664;
  border: 2px solid #bcc664;
  padding: 12px 30px;
  border-radius: 4px;
  font-weight: 600;
  transition: all 0.3s ease;
  display: inline-block;
  text-decoration: none;
}

.btn-outline-success:hover {
  background: #bcc664;
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(188, 198, 100, 0.3);
}

.services .icon-box {
  text-align: center;
  padding: 70px 20px 80px 20px;
  transition: all ease-in-out 0.3s;
  background: #fff;
  box-shadow: 0px 5px 90px 0px rgba(110, 123, 131, 0.1);
}

.services .icon-box .icon {
  margin: 0 auto;
  width: 100px;
  height: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: ease-in-out 0.3s;
  position: relative;
}
.call-to-action {
  padding: 120px 0;
  position: relative;
  clip-path: inset(0);
  margin-bottom: 30px;
}

.call-to-action h3 {
  color: var(--default-color);
  font-size: 28px;
  font-weight: 700;
}

.call-to-action .cta-btn {
  font-family: var(--heading-font);
  font-weight: 500;
  font-size: 16px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 12px 40px;
  border-radius: 50px;
  transition: 0.5s;
  margin: 10px;
  border: 2px solid var(--contrast-color);
  color: var(--contrast-color);
}

.services .icon-box .icon i {
  font-size: 36px;
  transition: 0.5s;
  position: relative;
}

.services .icon-box .icon svg {
  position: absolute;
  top: 0;
  left: 0;
}

.services .icon-box .icon svg path {
  transition: 0.5s;
  fill: #f5f5f5;
}

.services .icon-box h4 {
  font-weight: 600;
  margin: 10px 0 15px 0;
  font-size: 22px;
}

.services .icon-box h4 a {
  color: #222222;
  transition: ease-in-out 0.3s;
}

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

.services .icon-box:hover {
  border-color: #fff;
  box-shadow: 0px 0 35px 0 rgba(0, 0, 0, 0.08);
}

.services .iconbox-blue i {
  color: #47aeff;
}

.services .iconbox-blue:hover .icon i {
  color: #fff;
}

.services .iconbox-blue:hover .icon path {
  fill: #47aeff;
}

.services .iconbox-orange i {
  color: #ffa76e;
}

.services .iconbox-orange:hover .icon i {
  color: #fff;
}

.services .iconbox-orange:hover .icon path {
  fill: #ffa76e;
}

.services .iconbox-pink i {
  color: #e80368;
}

.services .iconbox-pink:hover .icon i {
  color: #fff;
}

.services .iconbox-pink:hover .icon path {
  fill: #e80368;
}

.services .iconbox-yellow i {
  color: #ffbb2c;
}

.services .iconbox-yellow:hover .icon i {
  color: #fff;
}

.services .iconbox-yellow:hover .icon path {
  fill: #ffbb2c;
}

.services .iconbox-red i {
  color: #ff5828;
}

.services .iconbox-red:hover .icon i {
  color: #fff;
}

.services .iconbox-red:hover .icon path {
  fill: #ff5828;
}

.services .iconbox-teal i {
  color: #11dbcf;
}

.services .iconbox-teal:hover .icon i {
  color: #fff;
}

.services .iconbox-teal:hover .icon path {
  fill: #11dbcf;
}

.services .content ul li {
  padding-bottom: 10px;
  padding-left:10px;
  margin-left: 30px;
  list-style-type: "\2705";
}

.services .content h3 {
  font-weight: 700;
  font-size: 28px;
  margin-bottom: 10px;
  margin-top: 30px;
}

/*--------------------------------------------------------------
# Cta
--------------------------------------------------------------*/
.cta {
  background: var(--primary-teal);
  padding: 80px 0;
}

.cta h3 {
  color: #fff;
  font-size: 28px;
  font-weight: 700;
}

.cta p {
  color: #fff;
}

.cta .cta-btn {
  font-family: "Raleway", sans-serif;
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 10px 30px;
  border-radius: 2px;
  transition: 0.5s;
  margin: 10px;
  border: 2px solid #fff;
  color: #fff;
  border-radius: 4px;
}

.cta .cta-btn:hover {
  background: #fff;
  color: var(--primary-teal);
}

@media (max-width: 1024px) {
  .cta {
    background-attachment: scroll;
  }
}

@media (min-width: 769px) {
  .cta .cta-btn-container {
    display: flex;
    align-items: center;
    justify-content: flex-end;
  }
}

/*--------------------------------------------------------------
# Portfolio
--------------------------------------------------------------*/
.portfolio .portfolio-item {
  margin-bottom: 30px;
}

.portfolio #portfolio-flters {
  padding: 0;
  margin: 0 auto 20px auto;
  list-style: none;
  text-align: center;
}

.portfolio #portfolio-flters li {
  cursor: pointer;
  display: inline-block;
  padding: 8px 15px 10px 15px;
  font-size: 14px;
  font-weight: 600;
  line-height: 1;
  text-transform: uppercase;
  color: #444444;
  margin-bottom: 5px;
  transition: all 0.3s ease-in-out;
  border-radius: 3px;
}

.portfolio #portfolio-flters li:hover,
.portfolio #portfolio-flters li.filter-active {
  color: #fff;
  background: var(--accent-cyan);
}

.portfolio #portfolio-flters li:last-child {
  margin-right: 0;
}

.portfolio .portfolio-wrap {
  transition: 0.3s;
  position: relative;
  overflow: hidden;
  z-index: 1;
  background: rgba(34, 34, 34, 0.6);
}

.portfolio .portfolio-wrap::before {
  content: "";
  background: rgba(34, 34, 34, 0.6);
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  transition: all ease-in-out 0.3s;
  z-index: 2;
  opacity: 0;
}

.portfolio .portfolio-wrap img {
  transition: all ease-in-out 0.3s;
}

.portfolio .portfolio-wrap .portfolio-info {
  opacity: 0;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 3;
  transition: all ease-in-out 0.3s;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: flex-start;
  padding: 20px;
}

.portfolio .portfolio-wrap .portfolio-info h4 {
  font-size: 20px;
  color: #fff;
  font-weight: 600;
}

.portfolio .portfolio-wrap .portfolio-info p {
  color: rgba(255, 255, 255, 0.7);
  font-size: 14px;
  text-transform: uppercase;
  padding: 0;
  margin: 0;
  font-style: italic;
}

.portfolio .portfolio-wrap .portfolio-links {
  text-align: center;
  z-index: 4;
}

.portfolio .portfolio-wrap .portfolio-links a {
  color: #fff;
  margin: 0 5px 0 0;
  font-size: 28px;
  display: inline-block;
  transition: 0.3s;
}

.portfolio .portfolio-wrap .portfolio-links a:hover {
  color: var(--accent-cyan);
}

.portfolio .portfolio-wrap:hover::before {
  opacity: 1;
}

.portfolio .portfolio-wrap:hover img {
  transform: scale(1.2);
}

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

/*--------------------------------------------------------------
# Portfolio Details
--------------------------------------------------------------*/
.portfolio-details {
  padding-top: 40px;
}

.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: #fff;
  opacity: 1;
  border: 1px solid var(--primary-teal);
}

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

.portfolio-details .portfolio-info {
  padding: 30px;
  box-shadow: 0px 0 30px rgba(34, 34, 34, 0.08);
}

.portfolio-details .portfolio-info h3 {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 20px;
  padding-bottom: 20px;
  border-bottom: 1px solid #eee;
}

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

/*--------------------------------------------------------------
# Team
--------------------------------------------------------------*/
.team .member {
  text-align: center;
  margin-bottom: 20px;
  box-shadow: 0px 0px 12px 0px rgba(34, 34, 34, 0.07);
  padding: 30px 20px;
  background: #fff;
}

.team .member img {
  max-width: 60%;
  border-radius: 50%;
  margin: 0 0 30px 0;
  width: 100%;
  max-height: 250px;
}

.team .member h4 {
  font-weight: 700;
  margin-bottom: 2px;
  font-size: 18px;
}

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

.team .member p {
  padding-top: 10px;
  font-size: 16px;
  font-style: italic;
  color: #aaaaaa;
}

.team .member .social {
  margin-top: 15px;
}

.team .member .social a {
  color: #919191;
  transition: 0.3s;
}

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

.team .member .social i {
  font-size: 18px;
  margin: 0 2px;
}

/*--------------------------------------------------------------
# Contact
--------------------------------------------------------------*/
.contact .info {
  border-top: 3px solid var(--accent-cyan);
  border-bottom: 3px solid var(--accent-cyan);
  padding: 30px;
  background: #fff;
  width: 100%;
  box-shadow: 0 0 24px 0 rgba(0, 0, 0, 0.12);
}

.contact .info i {
  font-size: 20px;
  color: var(--primary-teal);
  float: left;
  width: 44px;
  height: 44px;
  background: rgba(44, 95, 93, 0.1);
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50px;
  transition: all 0.3s ease-in-out;
}

.contact .info h4 {
  padding: 0 0 0 60px;
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 5px;
  color: #222222;
}

.contact .info p {
  padding: 0 0 10px 60px;
  margin-bottom: 20px;
  font-size: 14px;
  color: #555555;
}

.contact .info .social-links {
  padding-left: 60px;
}

.contact .info .social-links a {
  font-size: 18px;
  display: inline-block;
  background: #333;
  color: #fff;
  line-height: 1;
  padding: 8px 0;
  border-radius: 50%;
  text-align: center;
  width: 36px;
  height: 36px;
  transition: 0.3s;
  margin-right: 10px;
}

.contact .info .social-links a:hover {
  background: var(--accent-cyan);
  color: #fff;
}

.contact .info .email:hover i,
.contact .info .address:hover i,
.contact .info .phone:hover i {
  background: var(--accent-cyan);
  color: #fff;
}

.contact .php-email-form {
  width: 100%;
  border-top: 3px solid var(--accent-cyan);
  border-bottom: 3px solid var(--accent-cyan);
  padding: 30px;
  background: #fff;
  box-shadow: 0 0 24px 0 rgba(0, 0, 0, 0.12);
}

.contact .php-email-form .form-group {
  padding-bottom: 8px;
}

.contact .php-email-form .error-message {
  display: none;
  color: #fff;
  background: #ed3c0d;
  text-align: left;
  padding: 15px;
  font-weight: 600;
}

.contact .php-email-form .error-message br+br {
  margin-top: 25px;
}

.contact .php-email-form .sent-message {
  display: none;
  color: #fff;
  background: #18d26e;
  text-align: center;
  padding: 15px;
  font-weight: 600;
}

.contact .php-email-form .loading {
  display: none;
  background: #fff;
  text-align: center;
  padding: 15px;
}

.contact .php-email-form .loading:before {
  content: "";
  display: inline-block;
  border-radius: 50%;
  width: 24px;
  height: 24px;
  margin: 0 10px -6px 0;
  border: 3px solid #18d26e;
  border-top-color: #eee;
  animation: animate-loading 1s linear infinite;
}

.contact .php-email-form input,
.contact .php-email-form textarea {
  border-radius: 0;
  box-shadow: none;
  font-size: 14px;
  border-radius: 4px;
}

.contact .php-email-form input:focus,
.contact .php-email-form textarea:focus {
  border-color: var(--accent-cyan);
}

.contact .php-email-form input {
  height: 44px;
}

.contact .php-email-form textarea {
  padding: 10px 12px;
}

.contact .php-email-form button[type=submit] {
  background: var(--accent-coral);
  border: 0;
  padding: 10px 24px;
  color: #fff;
  transition: 0.4s;
  border-radius: 4px;
}

.contact .php-email-form button[type=submit]:hover {
  background: var(--accent-cyan);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 212, 170, 0.3);
}

@keyframes animate-loading {
  0% {
    transform: rotate(0deg);
  }

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

/*--------------------------------------------------------------
# Breadcrumbs
--------------------------------------------------------------*/
.breadcrumbs {
  padding: 15px 0;
  background: #fbfbfb;
  min-height: 40px;
}

@media (max-width: 992px) {
  .breadcrumbs {
    margin-top: 66px;
  }
}

.breadcrumbs h2 {
  font-size: 28px;
  font-weight: 300;
}

.breadcrumbs ol {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  padding: 0;
  margin: 0;
  font-size: 14px;
}

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

.breadcrumbs ol li+li::before {
  display: inline-block;
  padding-right: 10px;
  color: #3c3c3c;
  content: "/";
}

@media (max-width: 768px) {
  .breadcrumbs .d-flex {
    display: block !important;
  }

  .breadcrumbs ol {
    display: block;
  }

  .breadcrumbs ol li {
    display: inline-block;
  }
}

/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/
#footer {
  background: #090909;
  color: #fff;
  font-size: 14px;
  text-align: left;
  padding: 30px 0;
}

#footer h3 {
  font-size: 36px;
  font-weight: 700;
  color: #fff;
  position: relative;
  font-family: "Poppins", sans-serif;
  padding: 0;
  margin: 0 0 15px 0;
}

#footer p {
  font-size: 15;
  padding: 0;
}

#footer .social-links {
  margin: 0 0 40px 0;
}

#footer .social-links a {
  font-size: 18px;
  display: inline-block;
  background: var(--primary-teal);
  color: #fff;
  line-height: 1;
  padding: 8px 0;
  margin-right: 4px;
  border-radius: 50%;
  text-align: center;
  width: 36px;
  height: 36px;
  transition: 0.3s;
}

#footer .social-links a:hover {
  background: var(--accent-cyan);
  color: #fff;
  text-decoration: none;
}

#footer .copyright {
  margin: 0 0 5px 0;
}

#footer .credits {
  font-size: 13px;
}

#h4_carousel {
  color: #fff;
}

.offer-table table {
  border-collapse: collapse;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  width: 100%;
  background: var(--bg-white);
  border-radius: 8px;
  overflow: hidden;
}

.offer-table thead {
  background-color: var(--primary-teal);
  color: var(--bg-white);
  text-transform: uppercase;
  font-weight: 600;
}

.offer-table thead th {
  padding: 1rem;
  text-align: left;
}

.offer-table tbody tr {
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  transition: background-color 0.3s ease;
}

.offer-table tbody tr:hover {
  background-color: rgba(188, 198, 100, 0.1);
}

.offer-table td {
  padding: 1.5rem;
  vertical-align: middle;
  color: var(--text-gray);
}

.offer-table strong {
  color: var(--primary-dark);
}

/*--------------------------------------------------------------
# Button Styles
--------------------------------------------------------------*/
.btn {
  font-weight: 600;
  border-radius: 4px;
  transition: all 0.3s ease;
  text-transform: uppercase;
  font-size: 13px;
  letter-spacing: 0.5px;
  display: inline-block;
  padding: 10px 24px;
  border: none;
  cursor: pointer;
  text-decoration: none;
}

/* Primary Button */
.btn-primary {
  background: var(--primary-teal);
  color: #fff;
  border: 2px solid var(--primary-teal);
}

.btn-primary:hover {
  background: var(--accent-cyan);
  border-color: var(--accent-cyan);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(128, 199, 146, 0.3);
  color: #fff;
}

/*--------------------------------------------------------------
# Offer Section
--------------------------------------------------------------*/
.offer {
  background: #f9fafb;
}

.offer-card {
  background: white;
  padding: 2rem;
  border-radius: 8px;
  text-align: center;
  transition: all 0.3s ease;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  height: 100%;
  display: flex;
  flex-direction: column;
}

.offer-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 24px rgba(128, 199, 146, 0.2);
}

.offer-icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, #c9ce78ff, #64a377ff);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  font-size: 28px;
  color: white;
}

.offer-card h3 {
  font-size: 18px;
  font-weight: 700;
  color: #64a377ff;
  margin-bottom: 1rem;
}

.offer-card p {
  font-size: 14px;
  color: #666;
  line-height: 1.6;
  flex-grow: 1;
}

.offer-card-link {
  text-decoration: none;
  color: inherit;
  cursor: pointer;
}

.offer-card-link:hover,
.offer-card-link:focus,
.offer-card-link:active {
  text-decoration: none;
  color: inherit;
}

/* Product Section */
.product-content h4 {
  font-size: 28px;
  font-weight: 700;
  color: #64a377ff;
  margin-bottom: 0.5rem;
}

.features-list {
  list-style: none;
  padding: 0;
  margin: 1.5rem 0;
}

.features-list li {
  display: flex;
  align-items: center;
  margin-bottom: 1rem;
  font-size: 14px;
  color: #333;
}

.features-list i {
  margin-right: 0.75rem;
  font-size: 16px;
}

@media (max-width: 768px) {
  .offer-card {
    padding: 1.5rem;
  }

  .offer-card h3 {
    font-size: 16px;
  }

  .product-image {
    margin-bottom: 2rem;
  }
}
/* Product Card Styling */
.offer-card.product-card {
  background: linear-gradient(135deg, #f0f8fb 0%, #e8f5f9 100%);
  border: 2px solid #80c792;
  position: relative;
  overflow: hidden;
}

.offer-card.product-card::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 80px;
  height: 80px;
  background: rgba(128, 199, 146, 0.1);
  border-radius: 0 0 0 100%;
}

.product-badge {
  display: inline-block;
  background: #80c792;
  color: white;
  padding: 4px 12px;
  border-radius: 20px;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 1rem;
  position: relative;
  z-index: 1;
}

.offer-card.product-card .offer-icon {
  background: linear-gradient(135deg, #80c792, #5da87a);
}

.offer-card.product-card h3 {
  color: #64a377ff;
  font-size: 20px;
  font-weight: 700;
}

.product-subtitle {
  font-size: 13px;
  color: #666;
  font-style: italic;
  margin-bottom: 1rem !important;
}

.features-list-compact {
  list-style: none;
  padding: 0;
  margin: 1rem 0;
  flex-grow: 1;
}

.features-list-compact li {
  display: flex;
  align-items: flex-start;
  margin-bottom: 0.75rem;
  font-size: 13px;
  color: #555;
  line-height: 1.4;
}

.features-list-compact i {
  color: #80c792;
  margin-right: 0.5rem;
  margin-top: 2px;
  flex-shrink: 0;
  font-size: 14px;
}

.offer-card.product-card:hover {
  border-color: #80c792;
  box-shadow: 0 8px 24px rgba(128, 199, 146, 0.3);
}

@media (max-width: 768px) {
  .offer-card.product-card {
    border-width: 2px;
  }

  .product-badge {
    font-size: 10px;
    padding: 3px 10px;
  }

  .offer-card.product-card h3 {
    font-size: 18px;
  }
}

/* Navigation Dropdown */
#navbar .dropdown {
  position: relative;
}

#navbar .dropdown > a {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

#navbar .dropdown > a i {
  transition: transform 0.3s ease;
}

#navbar .dropdown > a:hover i {
  transform: rotate(180deg);
}

#navbar .dropdown ul {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background: white;
  list-style: none;
  padding: 0.5rem 0;
  border-radius: 4px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.15);
  min-width: 250px;
  z-index: 1000;
}

#navbar .dropdown ul li {
  margin: 0;
}

#navbar .dropdown ul li a {
  display: block;
  padding: 0.75rem 1.5rem;
  color: #333;
  text-decoration: none;
  transition: all 0.3s ease;
}

#navbar .dropdown ul li a:hover {
  background: #f0f8fb;
  color: #80c792;
  padding-left: 2rem;
}

#navbar .dropdown ul li.divider {
  height: 1px;
  background: #f0f0f0;
  margin: 0.5rem 0;
}

#navbar .dropdown:hover > ul {
  display: block;
}

/* SERVICES-DETAILS */
.service-header {
  text-align: center;
  padding: 2rem 0;
}

.service-icon-large {
  font-size: 48px;
  color: #80c792;
}

.service-list {
  list-style: none;
  padding: 0;
}

.service-list li {
  padding: 0.75rem 0;
  padding-left: 2rem;
  position: relative;
}

.service-list li:before {
  content: '✓';
  position: absolute;
  left: 0;
  color: #80c792;
  font-weight: bold;
  font-size: 18px;
}

.use-case-card {
  background: #f9fafb;
  padding: 1.5rem;
  border-radius: 8px;
  border-left: 4px solid #80c792;
  margin: 1.5rem 0;
}

.tech-stack {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin: 1rem 0;
}

.tech-badge {
  display: inline-block;
  background: #e8f5f9;
  color: #1a5f7a;
  padding: 0.5rem 1rem;
  border-radius: 20px;
  font-size: 13px;
  font-weight: 600;
}

.sidebar-card {
  background: white;
  padding: 1.5rem;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
  margin-bottom: 1.5rem;
}

.service-menu {
  list-style: none;
  padding: 0;
}

.service-menu li a {
  display: block;
  padding: 0.75rem 0;
  color: #666;
  text-decoration: none;
  border-bottom: 1px solid #f0f0f0;
  transition: all 0.3s ease;
}

.service-menu li a:hover,
.service-menu li a.active {
  color: #80c792;
  font-weight: 600;
}

.cta-card {
  background: linear-gradient(135deg, #f0f8fb, #e8f5f9);
  border: 2px solid #80c792;
}

/* Products */
.product-features {
  list-style: none;
  padding: 0;
}

.product-features li {
  display: flex;
  align-items: flex-start;
  margin-bottom: 1.5rem;
  gap: 1rem;
}

.product-features i {
  color: #80c792;
  font-size: 20px;
  margin-top: 2px;
  flex-shrink: 0;
}

.how-it-works {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 2rem;
  margin: 2rem 0;
}

.step {
  text-align: center;
}

.step-number {
  width: 50px;
  height: 50px;
  background: #80c792;
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  font-size: 24px;
  margin: 0 auto 1rem;
}

.step h4 {
  color: #64a377ff;
  margin-bottom: 0.5rem;
}

.step p {
  font-size: 14px;
  color: #666;
}

/*--------------------------------------------------------------
# Portfolio & Projects Section
--------------------------------------------------------------*/

/* Portfolio Overview */
.portfolio-overview {
  padding: 80px 0;
  background: linear-gradient(135deg, #f8fcf9 0%, #ffffff 100%);
}

.portfolio-overview .section-title {
  text-align: center;
  margin-bottom: 50px;
}

.portfolio-overview .section-title h2 {
  font-size: 42px;
  color: #64a377ff;
  margin-bottom: 15px;
  font-weight: 700;
}

.portfolio-overview .section-title p {
  font-size: 16px;
  color: var(--text-gray);
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.8;
}

/* Project Cards */
.project-card {
  background: var(--bg-white);
  border-radius: 12px;
  padding: 30px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  border-top: 4px solid var(--primary-teal);
  height: 100%;
  display: flex;
  flex-direction: column;
}

.project-card:hover {
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.15);
  transform: translateY(-8px);
}

.project-card-header {
  margin-bottom: 20px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
}

.project-badges {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}

.project-tag {
  display: inline-block;
  background: rgba(188, 198, 100, 0.15);
  color: var(--primary-teal);
  padding: 6px 14px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.project-date-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(128, 199, 146, 0.15);
  color: var(--primary-dark);
  padding: 6px 12px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 600;
}

.project-date-badge i {
  font-size: 12px;
}

.project-card h3 {
  font-size: 24px;
  color: #64a377ff;
  margin: 0;
  font-weight: 700;
}

.project-summary {
  font-size: 15px;
  color: var(--text-gray);
  line-height: 1.8;
  margin: 15px 0;
  flex-grow: 1;
}

.project-highlights {
  list-style: none;
  padding: 0;
  margin: 20px 0;
}

.project-highlights li {
  font-size: 14px;
  color: var(--text-charcoal);
  margin: 12px 0;
  display: flex;
  align-items: start;
}

.project-highlights i {
  color: var(--accent-cyan);
  margin-right: 10px;
  font-size: 16px;
  flex-shrink: 0;
}

.project-cta {
  margin-top: auto;
  padding-top: 20px;
  border-top: 1px solid rgba(0, 0, 0, 0.05);
}

.project-note {
  margin: 0;
  color: var(--text-gray);
  font-size: 14px;
  font-weight: 600;
}

.btn-project {
  display: inline-block;
  color: var(--primary-teal);
  font-weight: 600;
  font-size: 14px;
  transition: all 0.3s ease;
  padding: 10px 0;
  border-bottom: 2px solid transparent;
}

.btn-project:hover {
  color: var(--primary-dark);
  border-bottom-color: var(--primary-dark);
}

.btn-full {
  display: block;
  text-align: center;
  width: 100%;
  padding: 12px 0 !important;
  background: var(--primary-teal);
  color: white !important;
  border-radius: 6px;
  transition: all 0.3s ease;
  border-bottom: none !important;
  margin-top: 10px;
}

.btn-full:hover {
  background: var(--primary-dark);
  transform: translateY(-2px);
  box-shadow: 0 6px 12px rgba(119, 178, 88, 0.3);
}

/* Project Detail Pages */
.project-detail {
  min-height: 80vh;
  padding: 60px 0;
}

.project-detail-header {
  margin-bottom: 50px;
  padding-bottom: 40px;
  border-bottom: 2px solid rgba(0, 0, 0, 0.08);
}

.project-header-main {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 24px;
}

.project-header-text {
  flex: 1;
}

.project-partner-logo-link {
  display: inline-block;
  margin-bottom: 0;
}

.project-partner-logo {
  max-width: 180px;
  width: 100%;
  height: auto;
  object-fit: contain;
}

.btn-back {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--primary-teal);
  font-weight: 600;
  margin-bottom: 20px;
  transition: all 0.3s ease;
}

.btn-back:hover {
  color: var(--primary-dark);
  transform: translateX(-4px);
}

.btn-back i {
  font-size: 14px;
}

.project-tag-detail {
  display: inline-block;
  background: rgba(188, 198, 100, 0.15);
  color: var(--primary-teal);
  padding: 6px 14px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 15px;
}

.project-detail-header h1 {
  font-size: 48px;
  color: var(--primary-dark);
  margin: 15px 0 10px;
  font-weight: 700;
}

.project-intro {
  font-size: 18px;
  color: var(--text-gray);
  font-weight: 500;
  margin: 0;
}

/* Detail Sections */
.detail-section {
  margin-bottom: 50px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

.detail-section:last-child {
  border-bottom: none;
}

.detail-section h2 {
  font-size: 28px;
  color: var(--primary-dark);
  margin-bottom: 20px;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 12px;
}

.detail-section h2 i {
  color: var(--primary-teal);
  font-size: 32px;
}

.detail-section p {
  font-size: 15px;
  color: var(--text-gray);
  line-height: 1.9;
  margin-bottom: 15px;
}

.section-subtitle {
  font-weight: 600;
  color: var(--primary-dark);
  margin-top: 25px !important;
  margin-bottom: 15px !important;
}

.detail-list {
  list-style: none;
  padding: 0;
  margin: 20px 0;
}

.detail-list li {
  font-size: 15px;
  color: var(--text-gray);
  margin: 15px 0;
  padding-left: 28px;
  position: relative;
  line-height: 1.7;
}

.detail-list li:before {
  content: "▸";
  color: var(--primary-teal);
  font-size: 20px;
  position: absolute;
  left: 0;
  top: -2px;
}

.questions-list li {
  font-size: 15px;
  line-height: 1.8;
}

.questions-list li strong {
  color: var(--primary-dark);
}

.highlight-box {
  background: linear-gradient(135deg, rgba(188, 198, 100, 0.1) 0%, rgba(128, 199, 146, 0.1) 100%);
  border-left: 4px solid var(--primary-teal);
  padding: 25px;
  border-radius: 8px;
  margin: 30px 0;
}

.highlight-box strong {
  color: var(--primary-dark);
  display: block;
  margin-bottom: 10px;
  font-size: 16px;
}

.highlight-box p {
  margin: 0;
  color: var(--text-charcoal);
}

/* Detail Sidebar */
.detail-sidebar {
  display: flex;
  flex-direction: column;
  gap: 25px;
}

.sidebar-card {
  background: var(--bg-white);
  border-radius: 10px;
  padding: 25px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.06);
  border-top: 3px solid var(--primary-teal);
}

.sidebar-card h4 {
  font-size: 16px;
  color: var(--primary-dark);
  margin: 0 0 15px 0;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 8px;
}

.sidebar-card h4 i {
  color: var(--primary-teal);
  font-size: 18px;
}

.sidebar-card p {
  font-size: 14px;
  color: var(--text-gray);
  line-height: 1.7;
  margin: 0;
}

.tech-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 10px;
}

.tech-badge {
  display: inline-block;
  background: rgba(119, 178, 88, 0.12);
  color: var(--primary-dark);
  padding: 8px 14px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 600;
  border: 1px solid rgba(119, 178, 88, 0.2);
}

.sidebar-cta {
  background: linear-gradient(135deg, var(--primary-teal) 0%, rgba(188, 198, 100, 0.8) 100%);
  border: none;
}

.sidebar-cta h4 {
  color: white;
  margin-bottom: 12px;
}

.sidebar-cta h4 i {
  color: white;
}

.sidebar-cta p {
  color: rgba(255, 255, 255, 0.95);
  margin-bottom: 15px;
}

.partners-list {
  margin: 0 0 14px 0;
  padding-left: 18px;
}

.partners-list li {
  color: rgba(255, 255, 255, 0.97);
  font-size: 13px;
  line-height: 1.6;
  margin-bottom: 6px;
}

.partners-stat {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.2px;
  color: #ffffff;
  margin-bottom: 0;
}

.project-map-embed {
  margin-top: 26px;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid rgba(119, 178, 88, 0.2);
  box-shadow: 0 12px 34px rgba(19, 58, 78, 0.12);
}

.project-map-embed iframe {
  display: block;
  width: 100%;
  min-height: 760px;
  border: 0;
  background: #f6faf7;
}

.project-map-embed-sidebar iframe {
  min-height: 540px;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
  .portfolio-overview .section-title h2 {
    font-size: 32px;
  }

  .project-card {
    padding: 25px;
  }

  .project-detail-header h1 {
    font-size: 36px;
  }

  .project-header-main {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
  }

  .project-partner-logo {
    max-width: 150px;
  }

  .detail-section h2 {
    font-size: 24px;
  }

  .detail-sidebar {
    margin-top: 40px;
  }

  .project-map-embed iframe {
    min-height: 520px;
  }

  .project-map-embed-sidebar iframe {
    min-height: 460px;
  }

  .row {
    flex-direction: column-reverse;
  }

  .col-lg-4 {
    width: 100%;
  }

  .col-lg-8 {
    width: 100%;
  }
}
