/* 
  Future Life Care & Biotech - Modern Design System 
  Senior UI/UX Overhaul
*/

/* Mobile Navbar Fix */
@media (max-width: 768px) {
  .navbar {
    position: fixed;
    top: -12px;
    left: 0;
    width: 100%;
    z-index: 9999;
    background: rgba(0, 0, 0, 0.85) !important;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    padding: 0.8rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.15);
  }
}

:root {
  --primary: #114b32;
  --primary-light: #166444;
  --secondary: #2c5282;
  --accent: #48bb78;
  --accent-light: #f0fff4;
  --text-dark: #1a202c;
  --text-muted: #4a5568;
  --white: #ffffff;
  --bg-light: #f7fafc;
  --bg-gradient: linear-gradient(135deg, #f0f7f4 0%, #ffffff 100%);
  --biotech-gradient: linear-gradient(135deg, #114b32 0%, #2c5282 100%);
  --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.05);
  --shadow-md: 0 10px 15px -3px rgba(0, 0, 0, 0.1),
    0 4px 6px -2px rgba(0, 0, 0, 0.05);
  --shadow-lg: 0 20px 25px -5px rgba(0, 0, 0, 0.1),
    0 10px 10px -5px rgba(0, 0, 0, 0.04);
  --radius-sm: 0.5rem;
  --radius-md: 1rem;
  --radius-lg: 2rem;
  --transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Outfit", "Inter", sans-serif;
  color: var(--text-dark);
  background-color: var(--white);
  line-height: 1.6;
  overflow-x: hidden;
  box-sizing: border-box;
}

h1, h2, h3, h4, h5, h6 {
  font-weight: 700;
  color: var(--primary);
}

/* Background Shapes */
.bg-shape {
  position: absolute;
  z-index: -1;
  filter: blur(80px);
  opacity: 0.4;
  border-radius: 50%;
}
.shape-1 { width: 300px; height: 300px; background: var(--accent); top: 10%; left: -5%; }
.shape-2 { width: 400px; height: 400px; background: var(--secondary); bottom: 10%; right: -5%; }

/* Logo Styling */
.site-logo {
  width: 190px;
  height: auto;
  margin-left:-40px;
  object-fit: contain;
}

@media (max-width: 416px) {
  .site-logo {
    margin-top: -6px;
    width: 60px;
    max-width: 100%;
  }
}

/* Navbar Modernization */
.navbar {
  /* background: transparent !important;
  color: #ffffff !important;
  backdrop-filter: blur(0px);
  border-bottom: 1px solid rgba(255, 255, 255, 0);
  transition: var(--transition); */



   background: white !important;
  transition: all 0.4s ease;
  backdrop-filter: blur(15px);
  padding: 0.3rem 0;
  box-shadow: 0 10px 30px rgba(0,0,0,0.15); 
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.navbar.scrolled {
  background: #fff !important;
  transition: all 0.4s ease;
  backdrop-filter: blur(15px);
  padding: 0.3rem 0;
  box-shadow: 0 10px 30px rgba(0,0,0,0.15); 
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.navbar.scrolled .nav-link {
  color: #32682f !important;
}

.navbar.scrolled .navbar-toggler-icon {
  filter: invert(1);
  display: block;
  color: #000 !important;
}

.nav-link {
  color: #146a1e !important;
  font-size: 1rem;
  font-weight: 500;
  padding: 0.5rem 1rem !important;  
  position: relative;
  transition: var(--transition);
}

.nav-link::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 0;
  height: 2px;
  background: var(--accent);
  transition: var(--transition);
  transform: translateX(-50%);
  color: #000;
}

.nav-link:hover {
  color: var(--accent) !important;
}

.nav-link:hover::after {
  width: 70%;
}

.navbar-brand img {
  height: 70px !important;
  transition: var(--transition);
}

.navbar.scrolled .navbar-brand img {
  height: 60px !important;
}

.navbar-toggler-icon {
  color: #000 !important;
}

/* Auth Navigation */
.nav-auth-container {
  margin-left: 160px;
}

@media (max-width: 991px) {
  .nav-auth-container {
    margin-left: 0;
    margin-top: 15px;
  }
}

.btn-register-header {
  margin-right: -40px;
}

@media (max-width: 1200px) {
  .btn-register-header {
    margin-right: 0;
  }
}

/* User Avatar & Dropdown */
.user-avatar {
  transition: all 0.3s ease;
  border: 2px solid transparent;
}

.user-avatar:hover {
  border-color: #198754;
  transform: scale(1.05);
}

.dropdown-menu {
  min-width: 200px;
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(10px);
  border: none;
  border-radius: 15px;
  padding: 0.8rem;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
  margin-top: 10px !important;
}

.dropdown-item {
  border-radius: 10px;
  padding: 0.7rem 1.2rem;
  font-weight: 500;
  color: var(--primary) !important;
  transition: all 0.3s ease;
  margin-bottom: 2px;
}

.dropdown-item:hover {
  background: var(--accent-light) !important;
  color: var(--primary) !important;
  transform: translateX(8px);
}

/* Hero Section */
.hero-main {
  width: 100%;
  overflow: hidden;
}

.hero-desktop {
  display: block;
}

.hero-mobile {
  display: none;
}

.hero-desktop-slide {
  margin-top: 90px;
  position: relative;
  height: 80vh;
  
}

.hero-desktop-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 75%; /* default bottom */}

.hero-desktop-content-outer {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
}

.hero-desktop-content-inner {
  max-width: 1200px;
  margin: auto;
  padding: 0 20px;
  color: #fff;
}

.hero-desktop-btn-container {
  position: absolute;
  bottom: 40px;
  left: 50px;
}

.btn-hero-explore {
  display: inline-block;
  padding: 14px 32px;
  background: #198754;
  color: #fff;
  border-radius: 40px;
  text-decoration: none;
  font-size: 15px;
  transition: var(--transition);
}

.btn-hero-explore:hover {
  background: #157347;
  color: #fff;
  transform: translateY(-2px);
}

.btn-hero-join {
  position: relative;
  overflow: hidden;
  transition: all 0.3s ease;
}

.hero-mobile-content {
  padding: 28px 20px 36px;
  text-align: center;
  color: #fff;
  background: var(--primary);
}

.hero-mobile img {
  width: 100%;
  height: auto;
  object-fit: contain;
  display: block;
}

.hero-mobile-title {
  font-size: 1.9rem;
  font-weight: 800;
  line-height: 1.2;
  margin: 14px 0 20px;
}

.btn-hero-mobile-primary {
  display: inline-block;
  width: 100%;
  padding: 14px;
  background: #198754;
  color: #fff;
  border-radius: 30px;
  text-decoration: none;
  margin-bottom: 12px;
}

.btn-hero-mobile-outline {
  display: inline-block;
  width: 100%;
  padding: 14px;
  border: 2px solid #fff;
  color: #fff;
  border-radius: 30px;
  text-decoration: none;
}

@media (max-width: 768px) {
  .hero-desktop {
    display: none !important;
  }
  .hero-mobile {
    display: block !important;
  }
}

/* Features Section V2 */
.features-overview-section {
  padding: 60px 0;
  background: linear-gradient(180deg, #f8fdf9, #ffffff);
}

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

.features-flex-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: center;
}

.feature-card-wrapper {
  flex: 1 1 280px;
  max-width: 360px;
}

.feature-card-v2 {
  background: #ffffff;
  border-radius: 18px;
  padding: 28px;
  height: 100%;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
  display: flex;
  flex-direction: column;
  transition: 0.4s;
}

.feature-card-v2:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.12);
}

.feature-icon-v2 {
  width: 70px;
  height: 70px;
  background: #eaf7ef;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.feature-icon-v2 i {
  font-size: 32px;
  color: #2e7d32;
}

.feature-list-v2 {
  padding-left: 18px;
  color: #555;
  line-height: 1.7;
  font-size: 15px;
  flex-grow: 1;
}

.btn-feature-v2 {
  margin-top: 20px;
  text-decoration: none;
  background: #f4b400;
  color: #000;
  padding: 12px;
  text-align: center;
  border-radius: 10px;
  font-weight: 600;
  transition: var(--transition);
}

.btn-feature-v2:hover {
  background: #dfa400;
  color: #000;
}

/* Featured Products Section V2 */
.products-section-v2 {
  padding: 80px 0;
  background: #f8f9fa;
}

.products-container-v2 {
  max-width: 1200px;
  margin: auto;
  padding: 0 16px;
  text-align: center;
}

.products-title-v2 {
  font-size: 2.2rem;
  font-weight: 700;
  color: #198754;
  margin-bottom: 10px;
}

.products-subtitle-v2 {
  color: #6c757d;
  margin-bottom: 50px;
}

.products-flex-grid-v2 {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 24px;
}

.product-card-v2 {
  width: 170px;
  background: #fff;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
  transition: 0.4s ease;
  padding: 10px;
}

.product-card-v2:hover {
  transform: translateY(-8px);
}

.product-img-box-v2 {
  height: 140px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1px;
  background: #ffffff;
}

.product-img-v2 {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

.product-info-v2 {
  padding: 2px;
}

.product-btn-v2 {
  display: inline-block;
  font-size: 13px;
  padding: 6px 14px;
  background: #198754;
  color: #fff;
  border-radius: 20px;
  text-decoration: none;
  transition: var(--transition);
}

.product-btn-v2:hover {
  background: #157347;
  color: #fff;
}

/* Impact Section */
.impact-section {
  background:#337f44 url('https://www.transparenttextures.com/patterns/cubes.png') !important;
  position: relative;
  overflow: hidden;
}

.impact-section::before {
  content: '';
  position: absolute;
  top: 0; left: 0; width: 100%; height: 100%;
  background: radial-gradient(circle at center, transparent 0%, rgba(0,0,0,0.4) 100%);
}

.leader-card {
  background: var(--white) !important;
  color: var(--text-dark) !important;
  width: 412px;
  padding: .4rem !important;
  border-radius: var(--radius-md);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  transition: var(--transition);
  border: 1px solid rgba(0, 0, 0, 0.05);
  margin: -1.5rem;
  text-align: center;
}

.leader-card:hover {
  transform: translateY(-15px);
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.1);
  border-color: var(--accent);
}

.leader-card img {
  width: 100px !important;
  height: 100px !important;
  border: 4px solid var(--accent);
  padding: 3px;
  border-radius: 50%;
  margin-bottom: 1.5rem !important;
  box-shadow: var(--shadow-sm);
}

/* Detail Section */
.detail-section position-relative overflow-hidden {
  position: relative;
  overflow: hidden;
}

.detail-card {
  background: transparent !important;
  box-shadow: none !important;
  margin-bottom: 12px !important;
}

.detail-content {
  padding: 4rem !important;
}

.img-round {
  border-radius: var(--radius-md);
  overflow: hidden;
}

.overlap-image-container {
  position: relative;
  padding: 40px;
}

.overlap-image-container img {
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  position: relative;
  z-index: 2;
}

.overlap-image-container::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 80%;
  height: 80%;
  border: 4px solid var(--accent);
  border-radius: var(--radius-md);
  z-index: 1;
}

/* Brand Section */
.snaffel-section {
  background: var(--accent-light);
  padding: 120px 0;
}

.snaffel-logo {
  max-width: 400px;
  filter: drop-shadow(0 10px 20px rgba(0,0,0,0.1));
}

/* Journey Section */
.journey-section {
  padding: 150px 0;
  background: url('../p/ourjaurny.jpg') no-repeat center center/cover !important;
  background-attachment: fixed !important;
  position: relative;
}

.journey-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
}

.footer-logo {
  height: 60px !important;
}

/* Subpage Hero */
.hero-sub {
  height: 40vh;
  min-height: 300px;
  background: var(--biotech-gradient);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: var(--white);
  padding-top: 80px;
}

.hero-sub h1 {
  color: var(--white) !important;
  font-size: 3.5rem;
  font-weight: 800;
  text-shadow: 0 4px 10px rgba(0,0,0,0.2);
}

@media (max-width: 768px) {
  .hero-sub {
    height: 30vh;
  }
  .hero-sub h1 {
    font-size: 2.2rem;
  }
}

/* Footer Section */
footer {
  background: #05160e !important;
  color: #a0aec0 !important;
  padding-top: 80px !important;
}

footer h6 {
  color: var(--white);
  font-size: 1.1rem !important;
  margin-bottom: 1.5rem !important;
}

.footer-link {
  color: #a0aec0 !important;
  margin-bottom: 10px !important;
  font-size: 0.95rem;
  transition: var(--transition);
}

.footer-link:hover {
  color: var(--accent) !important;
  padding-left: 8px;
  text-decoration: none !important;
}

.social-icons a:hover img {
  transform: translateY(-5px);
}

/* Marquee Smooth Scroll */
@keyframes scroll-left {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

.marquee-content {
  display: flex;
  gap: 3rem;
  animation: scroll-left 10s linear infinite;
  width: max-content;
}

.marquee:hover .marquee-content {
  animation-play-state: paused;
}

/* Misc Helpers */
.letter-spacing-2 { letter-spacing: 2px; }

[data-aos] { pointer-events: none; }
.aos-animate { pointer-events: auto; }

/* FAQ & Contact Page Styles */
.faq-section {
    padding-top: 5rem;
    padding-bottom: 5rem;
}

.category-title {
    color: var(--primary-green);
    font-weight: 700;
    margin-top: 3rem;
    margin-bottom: 1.5rem;
    position: relative;
    padding-left: 1rem;
    border-left: 4px solid var(--primary-green);
}

.accordion-item {
    border: none;
    margin-bottom: 1rem;
    border-radius: 15px !important;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.accordion-button {
    font-weight: 600;
    padding: 1.25rem;
    color: var(--dark-green) !important;
    background: white;
}

.accordion-button:not(.collapsed) {
    background-color: var(--primary-green) !important;
    color: white !important;
    box-shadow: none;
}

.accordion-button:focus {
    box-shadow: none;
    border-color: rgba(0,0,0,.125);
}

.accordion-button::after {
    filter: grayscale(1) brightness(0);
}

.accordion-button:not(.collapsed)::after {
    filter: brightness(0) invert(1);
}

/* Contact Card */
.flc-contact-card {
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 30px;
    padding: 3rem;
    box-shadow: var(--shadow-lg);
}

.flc-form-control {
    border-radius: 15px !important;
    padding: 1rem 1rem 1rem 3rem !important;
    border: 1px solid #eee !important;
    background: #f9f9f9 !important;
    transition: all 0.3s ease !important;
}

.flc-form-control:focus {
    background: white !important;
    border-color: var(--primary-green) !important;
    box-shadow: 0 0 0 0.25rem rgba(46, 204, 113, 0.1) !important;
}

.flc-form-group {
    position: relative;
    margin-bottom: 1.5rem;
}

.flc-input-icon {
    position: absolute;
    left: 1.25rem;
    top: 50%;
    transform: translateY(-50%);
    color: var(--primary-green);
    z-index: 10;
}

.flc-textarea-icon {
    position: absolute;
    left: 1.25rem;
    top: 1.25rem;
    color: var(--primary-green);
    z-index: 10;
}

.flc-btn-submit {
    background: var(--gradient-primary);
    color: white !important;
    border: none !important;
    padding: 1rem 3rem !important;
    border-radius: 50px !important;
    font-weight: 700 !important;
    transition: all 0.3s ease !important;
}

.flc-btn-submit:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(46, 204, 113, 0.3);
    color: white !important;
}

/* Glass Section */
.glass-section {
  padding: 60px 20px;
  background: linear-gradient(135deg, #f0fdf4 0%, #dcfce7 100%);
}

.glass-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 20px;
  max-width: 1000px;
  margin: 40px auto 0;
}

.glass-card {
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-radius: 16px;
  padding: 24px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  text-align: center;
  transition: all 0.3s ease;
  height: 140px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.glass-card:hover {
  transform: translateY(-8px);
  background: rgba(255, 255, 255, 0.95);
  box-shadow: 0 20px 40px rgba(16, 185, 129, 0.15);
}

.glass-icon {
  font-size: 32px;
  margin-bottom: 12px;
}

.glass-card h3 {
  font-size: 1.1rem;
  font-weight: 600;
  color: #111827;
  margin-bottom: 12px;
}

.glass-link {
  font-size: 0.875rem;
  color: #10B981;
  text-decoration: none;
  font-weight: 500;
  opacity: 0;
  transform: translateY(5px);
  transition: all 0.3s ease;
}

.glass-card:hover .glass-link {
  opacity: 1;
  transform: translateY(0);
}

/* Minimal Features */
.minimal-features {
  padding: 40px 20px;
  background: #ffffff;
}

.minimal-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 15px;
  justify-items: center;

}

.minimal-card {
  text-align: center;
  padding: 10px 1px;
  border-radius: 12px;
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  transition: all 0.3s ease;
  width: 100%;
  max-width: 320px;
}

.minimal-card:hover {
  transform: translateY(-10px);
  border-color: #10b981;
  background: white;
  box-shadow: 0 20px 40px rgba(11, 165, 114, 0.3);
}

.minimal-icon {
  font-size: 35px;
  margin-bottom: 10px;
}

.minimal-card h3 {
  font-size: 1rem;
  font-weight: 600px;
}

.minimal-card p {
  color: #64748b;
  font-size: 0.9rem;
  line-height: 1.2;
  margin-bottom: 14px;
}

.minimal-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #10b981;
  text-decoration: none;
  font-weight: 600;
}

.minimal-link:hover {
  gap: 12px;
}

/* Snaffel Brand Section Refinements */
.snaffel-section {
  padding: 60px 15px;
  background-color: #fff;
  margin-bottom: 20px;
}

.snaffel-container {
  max-width: 1140px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 40px;
}

.snaffel-content {
  flex: 1 1 400px;
  min-width: 280px;
  color: #333;
  text-align: left;
}

.snaffel-content h2 {
  font-size: 2.5rem;
  font-weight: 700;
  color: #198754;
  margin-bottom: 12px;
  line-height: 1.2;
}

.snaffel-content .snaffel-promise {
  font-weight: 700;
  font-size: 1.1rem;
  margin-bottom: 24px;
  color: #198754;
}

.snaffel-content p {
  color: #666;
  font-size: 1rem;
  line-height: 1.6;
  margin-bottom: 20px;
}

.snaffel-image-box {
  flex: 1 1 350px;
  min-width: 280px;
  text-align: center;
}

.snaffel-brand-img {
  max-width: 70%;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.1);
}

@media (max-width: 767px) {
  .snaffel-container {
    flex-direction: column !important;
    text-align: center !important;
  }
  .snaffel-content {
    text-align: center !important;
  }
}

/* Minimal Journey */
.minimal-journey {
  padding: 100px 20px;
  background: linear-gradient(135deg, #f8fafc 0%, #ecfdf5 100%);
  position: relative;
}

.minimal-journey-container {
  max-width: 800px;
  margin: 0 auto;
}

.minimal-journey-content {
  text-align: center;
}

.minimal-journey-subtitle {
  display: inline-block;
  color: #10b981;
  font-size: 0.875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 16px;
}

.minimal-journey-title {
  font-size: 3rem;
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 48px;
  line-height: 1.2;
}

.minimal-journey-card {
  background: white;
  border-radius: 24px;
  padding: 48px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.05);
  border: 1px solid #e2e8f0;
}

.minimal-journey-text {
  font-size: 1.125rem;
  color: #475569;
  line-height: 1.8;
  margin-bottom: 40px;
}

.minimal-journey-actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

.minimal-journey-btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #10b981;
  color: white;
  text-decoration: none;
  font-weight: 600;
  padding: 16px 32px;
  border-radius: 12px;
  transition: all 0.3s ease;
}

.minimal-journey-btn-primary:hover {
  background: #059669;
  transform: translateY(-2px);
  box-shadow: 0 10px 20px rgba(16, 185, 129, 0.3);
}

.minimal-journey-btn-secondary {
  display: inline-flex;
  align-items: center;
  background: transparent;
  color: #10b981;
  text-decoration: none;
  font-weight: 600;
  padding: 16px 32px;
  border-radius: 12px;
  border: 2px solid #10b981;
  transition: all 0.3s ease;
}

.minimal-journey-btn-secondary:hover {
  background: #10b981;
  color: white;
  transform: translateY(-2px);
}

@media (max-width: 768px) {
  .minimal-journey-title {
    font-size: 2.5rem;
  }
  
  .minimal-journey-card {
    padding: 32px 24px;
  }
  
  .minimal-journey-actions {
    flex-direction: column;
  }
  
  .minimal-journey-btn-primary,
  .minimal-journey-btn-secondary {
    width: 100%;
    justify-content: center;
  }
}

@media (max-width: 480px) {
  .minimal-journey-title {
    font-size: 2rem;
  }
  
  .minimal-journey-text {
    font-size: 1rem;
  }
}


/* Footer Links */
.footer-link {
  color: rgba(255, 255, 255, 0.7) !important;
  text-decoration: none;
  transition: all 0.3s ease;
  display: inline-block;
  margin-bottom: 0.8rem;
  font-size: 0.95rem;
}

.footer-link:hover {
  color: var(--accent) !important;
  transform: translateX(8px);
}

/* Brand Marquee */
.brand-marquee {
  background: white;
  padding: 50px 0;
  overflow: hidden;
  border-top: 1px solid rgba(0,0,0,0.05);
  border-bottom: 1px solid rgba(0,0,0,0.05);
}

.marquee-content {
  display: flex;
  gap: 100px;
  animation: scrollMarquee 10s linear infinite;
  width: max-content;
}

.marquee-content img {
  height: 50px;
  width: auto;
  /* filter: grayscale(1) opacity(0.5); */
  transition: all 0.3s ease;
}

.marquee-content img:hover {
  filter: grayscale(0) opacity(1);
  transform: scale(1.1);
}

@keyframes scrollMarquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* How It Works Section */
.how-it-works {
  background-color: #f3f9f5;
  padding: 80px 0;
}

.how-it-works-title {
  text-align: center;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #1a7b32;
  font-size: 2.2rem;
  font-weight: 700;
  margin-bottom: 50px;
}

.how-it-works-title::before,
.how-it-works-title::after {
  content: "";
  flex: 1;
  height: 2px;
  background: #1a7b32;
  margin: 0 25px;
  max-width: 250px;
  opacity: 0.3;
}

.how-it-works-grid {
  display: flex;
  justify-content: space-between;
  align-items: stretch;
  gap: 0px; /* Gap handled by arrows and padding */
}

.step-card-wrap {
  flex: 1;
  display: flex;
  align-items: center;
  position: relative;
  padding: 0 10px;
}

.step-card {
  background: white;
  padding: 35px 25px;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
  height: 100%;
  width: 100%;
  transition: all 0.3s ease;
  border: 1px solid rgba(0, 0, 0, 0.02);
}

.step-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
}

.step-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 15px;
}

.step-number {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-weight: 700;
  font-size: 1.1rem;
  flex-shrink: 0;
}

.step-number.step-1,
.step-number.step-2 {
  background-color: #3e7d32;
}

.step-number.step-3 {
  background-color: #b87333; /* Bronze/Gold */
}

.step-title {
  font-size: 1.4rem;
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 0;
  white-space: nowrap;
}

.step-divider {
  height: 1px;
  background-color: #eeeeee;
  margin-bottom: 20px;
  width: 100%;
}

.step-desc {
  color: #4a4a4a;
  font-size: 0.92rem;
  line-height: 1.7;
  margin-bottom: 0;
}

.step-arrow {
  color: #3e7d32;
  font-size: 32px;
  margin: 0 -10px;
  z-index: 2;
  opacity: 0.5;
}

.btn-business-model {
  display: inline-flex;
  align-items: center;
  background-color: #06402b;
  color: white;
  padding: 12px 35px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  font-size: 1rem;
  transition: all 0.3s ease;
  border: none;
  margin-top: 40px;
}

.btn-business-model:hover {
  background-color: #042d1e;
  color: white;
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
}

@media (max-width: 1100px) {
  .how-it-works-title::before,
  .how-it-works-title::after {
    max-width: 100px;
  }
  .step-arrow {
    display: none;
  }
  .how-it-works-grid {
    flex-wrap: wrap;
    gap: 30px;
  }
  .step-card-wrap {
    flex: 1 1 300px;
  }
}

@media (max-width: 768px) {
  .how-it-works-title {
    font-size: 1.8rem;
  }
  .how-it-works-title::before,
  .how-it-works-title::after {
    display: none;
  }
  .step-title {
    font-size: 1.2rem;
  }
  .step-card {
    padding: 25px;
  }
}

/* Show More / Show Less Logic */
.extra-content {
  display: none;
}

.step-card.expanded .extra-content {
  display: inline;
}

.show-more-link {
  color: #3e7d32;
  font-weight: 700;
  cursor: pointer;
  display: block;
  margin-top: 10px;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  transition: all 0.3s ease;
}

.show-more-link:hover {
  color: #06402b;
  text-decoration: none;
  transform: translateX(3px);
}

/* Company Overview Section */
.company-overview {
  padding: 80px 0 40px;
  background: white;
  position: relative;
}

.overview-content-box {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}

.overview-text {
  color: #4a4a4a;
  font-size: 1.1rem;
  line-height: 1.8;
  margin-bottom: 20px;
}

.overview-extra-content {
  display: none;
  margin-top: 15px;
}

.company-overview.expanded .overview-extra-content {
  display: block;
}

.overview-toggle-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #1a7b32;
  font-weight: 700;
  cursor: pointer;
  margin-top: 10px;
  padding: 8px 20px;
  border: 1.5px solid #1a7b32;
  border-radius: 30px;
  transition: all 0.3s ease;
  user-select: none;
}

.overview-toggle-btn:hover {
  background: #1a7b32;
  color: white;
}

.overview-toggle-btn i {
  transition: transform 0.3s ease;
}

.company-overview.expanded .overview-toggle-btn i {
  transform: rotate(180deg);
}

/* Short Grid Styling */
.overview-short-grid {
  display: flex;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
  margin: 30px 0;
}

.overview-item {
  flex: 1 1 250px;
  max-width: 320px;
  display: flex;
  align-items: flex-start;
  gap: 15px;
  text-align: left;
  background: #fdfefd;
  padding: 15px;
  border-radius: 12px;
  border: 1px solid #f0f7f0;
  transition: all 0.3s ease;
}

.overview-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0,0,0,0.05);
  border-color: #1a7b32;
}

.overview-icon {
  font-size: 2rem;
  line-height: 1;
  flex-shrink: 0;
}

.overview-item-text {
  font-size: 0.9rem;
  color: #555;
  line-height: 1.5;
}

.overview-item-text strong {
  color: #1a7b32;
  font-size: 1rem;
  display: block;
  margin-bottom: 4px;
}

.why-flc-container {
  margin-top: 60px;
}

.why-flc-title {
  text-align: center;
  margin-bottom: 40px;
  color: #1a7b32;
  font-weight: 700;
}

