/*--------------------------------------------------------------
# General
--------------------------------------------------------------*/
body {
  font-family: "Geist", sans-serif;
  color: #444444;
}

a {
  color: #5846f9;
  text-decoration: none;
}

a:hover {
  color: #8577fb;
  text-decoration: none;
}

p,
ul,
li,
a,
h3,
h5,
h6 {
  font-family: "Geist", sans-serif;
}

h1, h2, h4, div {
  font-family: "Geist", sans-serif;
}

h2 {
  line-height: 1.7; 
}

/*--------------------------------------------------------------
# Back to top button
--------------------------------------------------------------*/
/*--------------------------------------------------------------
# Modern SaaS Back-to-Top Button
--------------------------------------------------------------*/
.back-to-top {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  right: 24px;
  bottom: 24px;
  z-index: 996;
  background: linear-gradient(135deg, #6366f1 0%, #8b5cf6 100%);
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 8px 25px rgba(99, 102, 241, 0.3);
  border: none;
  backdrop-filter: blur(20px);
}

.back-to-top::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, #8b5cf6 0%, #6366f1 100%);
  border-radius: 50%;
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: -1;
}

.back-to-top i {
  font-size: 20px;
  color: #fff;
  line-height: 1;
  transition: all 0.3s ease;
}

.back-to-top:hover {
  transform: translateY(-2px) scale(1.05);
  box-shadow: 0 12px 35px rgba(99, 102, 241, 0.4);
}

.back-to-top:hover::before {
  opacity: 1;
}

.back-to-top:hover i {
  transform: translateY(-1px);
}

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

.back-to-top:active {
  transform: translateY(-1px) scale(0.95);
}

/* Mobile adjustments */
@media (max-width: 768px) {
  .back-to-top {
    right: 16px;
    bottom: 16px;
    width: 44px;
    height: 44px;
  }
  
  .back-to-top i {
    font-size: 18px;
  }
}

/*--------------------------------------------------------------
# Minimalistic SaaS Preloader
--------------------------------------------------------------*/
#preloader {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 9999;
  overflow: hidden;
  background: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
}

.spinner-container {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.minimal-spinner {
  width: 20px;
  height: 20px;
  border: 1.5px solid #f1f5f9;
  border-top: 1.5px solid #6366f1;
  border-radius: 50%;
  animation: minimal-spin 1s linear infinite;
}

@keyframes minimal-spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

/* Mobile optimizations */
@media (max-width: 768px) {
  .minimal-spinner {
    width: 18px;
    height: 18px;
    border-width: 1.5px;
  }
}

/*--------------------------------------------------------------
# Modern SaaS Back-to-Top Button
--------------------------------------------------------------*/
.back-to-top {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  right: 24px;
  bottom: 24px;
  z-index: 996;
  background: linear-gradient(135deg, #6366f1 0%, #8b5cf6 100%);
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 8px 25px rgba(99, 102, 241, 0.3);
  border: none;
  backdrop-filter: blur(20px);
}

.back-to-top::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, #8b5cf6 0%, #6366f1 100%);
  border-radius: 50%;
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: -1;
}

.back-to-top i {
  font-size: 20px;
  color: #fff;
  line-height: 1;
  transition: all 0.3s ease;
}

.back-to-top:hover {
  transform: translateY(-2px) scale(1.05);
  box-shadow: 0 12px 35px rgba(99, 102, 241, 0.4);
}

.back-to-top:hover::before {
  opacity: 1;
}

.back-to-top:hover i {
  transform: translateY(-1px);
}

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

.back-to-top:active {
  transform: translateY(-1px) scale(0.95);
}

/* Mobile adjustments */
@media (max-width: 768px) {
  .back-to-top {
    right: 16px;
    bottom: 16px;
    width: 44px;
    height: 44px;
  }
  
  .back-to-top i {
    font-size: 18px;
  }
}

/*--------------------------------------------------------------
# Disable aos animation delay on mobile devices
--------------------------------------------------------------*/
@media screen and (max-width: 768px) {
  [data-aos-delay] {
    transition-delay: 0 !important;
  }
}

/*--------------------------------------------------------------
# Modern Floating Header
--------------------------------------------------------------*/
#header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 997;
  padding: 16px 0;
  background: transparent;
  transition: all 0.3s ease;
}

#header .container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

#header.header-scrolled {
  padding: 12px 0;
}

#header.header-scrolled .navbar-container {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

.navbar-container {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 50px;
  padding: 12px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: all 0.3s ease;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.08);
}

#header .logo {
  display: flex;
  align-items: center;
  margin: 0;
  padding: 0;
  line-height: 1;
}

#header .logo a {
  color: #fff;
  text-decoration: none;
  display: flex;
  align-items: center;
}

#header.header-scrolled .logo a {
  color: #0f172a;
}

#header .logo img {
  height: 32px;
  width: auto;
  transition: all 0.3s ease;
}

/* Logo switching styles */
#header .logo img.logo-light {
  display: block;
}

#header .logo img.logo-dark {
  display: none;
}

#header.header-scrolled .logo img.logo-light {
  display: none;
}

#header.header-scrolled .logo img.logo-dark {
  display: block;
}

/* Logo visibility fix for white background */
#header.header-scrolled .logo img {
  transition: all 0.3s ease;
}

/*--------------------------------------------------------------
# Modern Navigation Menu
--------------------------------------------------------------*/
.navbar {
  display: flex;
  align-items: center;
  gap: 40px;
  flex: 1;
  justify-content: center;
  padding: 0;
}

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

.navbar li {
  position: relative;
}

.navbar a,
.navbar a:focus {
  font-family: "Geist", sans-serif;
  font-size: 14px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  padding: 8px 16px;
  border-radius: 20px;
  transition: all 0.2s ease;
  position: relative;
}

#header.header-scrolled .navbar a,
#header.header-scrolled .navbar a:focus {
  color: #64748b;
}

.navbar a:hover,
.navbar .active,
.navbar .active:focus {
  color: #fff;
  background: rgba(255, 255, 255, 0.15);
  transform: translateY(-1px);
}

#header.header-scrolled .navbar a:hover,
#header.header-scrolled .navbar .active {
  color: #0f172a;
  background: rgba(0, 0, 0, 0.05);
}

/* Responsive Navigation */
@media (max-width: 1024px) {
  .navbar ul {
    display: none !important;
}

.mobile-nav-toggle {
    display: flex !important;
    align-items: center;
    justify-content: center;
  color: #fff;
    font-size: 24px;
  cursor: pointer;
    background: none;
    border: none;
    padding: 8px;
    border-radius: 50%;
    transition: all 0.2s ease;
    width: 40px;
    height: 40px;
  }

  .navbar-container {
    padding: 8px 16px;
  }
}

.navbar-mobile {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(20px);
  z-index: 998;
  display: none;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.navbar-mobile.active {
  display: flex;
}

.navbar-mobile ul {
  list-style: none;
  margin: 0;
  padding: 0;
  text-align: center;
}

.navbar-mobile li {
  margin: 16px 0;
}

.navbar-mobile a {
  font-family: 'Geist', sans-serif;
  font-size: 18px;
  font-weight: 500;
  color: #0f172a;
  text-decoration: none;
  padding: 12px 24px;
  border-radius: 20px;
  transition: all 0.2s ease;
  display: inline-block;
}

.navbar-mobile a:hover,
.navbar-mobile .active {
  background: rgba(0, 0, 0, 0.05);
  transform: translateY(-1px);
}

.mobile-nav-close {
  position: absolute;
  top: 24px;
  right: 24px;
  font-size: 24px;
  color: #0f172a;
  cursor: pointer;
  background: none;
  border: none;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s ease;
  }

.mobile-nav-close:hover {
  background: rgba(0, 0, 0, 0.05);
}

/* Ensure mobile toggle is ONLY visible on mobile devices */
.mobile-nav-toggle {
  display: none !important;
}

@media (max-width: 1024px) {
  .mobile-nav-toggle {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    color: #fff !important;
    font-size: 24px !important;
    cursor: pointer !important;
    background: none !important;
    border: none !important;
    padding: 8px !important;
    border-radius: 50% !important;
    transition: all 0.2s ease !important;
    width: 40px !important;
    height: 40px !important;
    visibility: visible !important;
    opacity: 1 !important;
    position: relative !important;
    z-index: 999 !important;
}
}

#header.header-scrolled .mobile-nav-toggle {
  color: #0f172a;
}

.mobile-nav-toggle:hover {
  background: rgba(255, 255, 255, 0.1);
}

#header.header-scrolled .mobile-nav-toggle {
  color: #0f172a !important;
}

#header.header-scrolled .mobile-nav-toggle:hover {
  background: rgba(0, 0, 0, 0.05);
}

/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
#hero {
  width: 100%;
  height: 100vh;
  background: linear-gradient(45deg, rgba(86, 58, 200, 0.9) 0%, rgba(80, 15, 214, 0.9) 100%), url("../img/hero-bg.jpg") center center no-repeat;
  background-size: cover;
  overflow: hidden;
  position: relative;
}

#hero .container,
#hero .container-fluid {
  max-width: 1200px;
  width: 100%;
  margin: 0 auto;
  padding: 84px 20px 0;
  position: relative;
  z-index: 2;
}

/* Ensure hero content stays contained */
#hero .hero-content {
  max-width: 100%;
  position: relative;
  z-index: 2;
}

/* Ensure hero image stays contained */
#hero .hero-img {
  max-width: 100%;
  position: relative;
  z-index: 1;
}

#hero .hero-img img {
  max-width: 110%;
  height: auto;
  object-fit: contain;
}

#hero h1 {
  margin: 0;
  font-size: 52px;
  font-weight: 700;
  line-height: 64px;
  color: #fff;
}

#hero h2 {
  color: rgba(255, 255, 255, 0.8);
  margin: 10px 0 0 0;
  font-size: 20px;
}

#hero .btn-get-started {
  font-family: "Geist", sans-serif;
  font-weight: 500;
  font-size: 16px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 10px 28px;
  border-radius: 5px;
  transition: 0.5s;
  margin-top: 30px;
  color: #fff;
  border: 2px solid #fff;
}

#hero .btn-get-started:hover {
  background: #fff;
  color: #5846f9;
}

#hero .animated {
  animation: up-down 2s ease-in-out infinite alternate-reverse both;
}

@media (min-width: 1200px) {
  #hero {
    background-attachment: fixed;
  }
  
  #hero .container,
  #hero .container-fluid {
    max-width: 1200px;
  }
}

/* Large screen and zoom out protection */
@media (min-width: 1400px) {
  #hero .container,
  #hero .container-fluid {
    max-width: 1400px;
    padding-left: 0px;
    padding-right: 40px;
  }
  
  #hero .hero-img img {
    max-width: 140%;
  }
}

/* Desktop view - larger hero image */
@media (min-width: 1200px) and (max-width: 1399px) {
  #hero .hero-img img {
    max-width: 130%;
  }
}

/* Standard desktop view */
@media (min-width: 992px) and (max-width: 1199px) {
  #hero .hero-img img {
    max-width: 125%;
  }
}

@media (max-width: 1024px) {
  #hero {
    text-align: center;
  }

  #hero .container,
  #hero .container-fluid {
    padding-top: 68px;
    padding-left: 15px;
    padding-right: 15px;
  }

  #hero .animated {
    animation: none;
  }

  #hero .hero-img {
    text-align: center;
    max-width: 100%;
    margin: 0 auto;
  }

  #hero .hero-img img {
    width: 50%;
    max-width: 90%;
    margin: 0 auto;
  }
}

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

  #hero .container,
  #hero .container-fluid {
    padding-top: 60px;
    padding-left: 15px;
    padding-right: 15px;
  }

  #hero h1 {
    font-size: 26px;
    line-height: 36px;
    padding: 0px 30px 0px 30px;
    max-width: 100%;
  }

  #hero h2 {
    font-size: 18px;
    line-height: 24px;
    padding: 0px 30px 0px 30px;
    max-width: 100%;
  }

  #hero .hero-img {
    margin-top: 2rem;
    padding: 0 15px;
    max-width: 100%;
  }

  #hero .hero-img img {
    width: 60%;
    max-width: 85%;
    margin: 0 auto;
  }
}

@media (max-width: 575px) {
  #hero .hero-img img {
    width: 100%;
    margin-top: -15px;
    
  }
}

@media (max-width: 575px),
(max-height: 600px) {
  #hero {
    height: auto;
  }
}

@keyframes up-down {
  0% {
    transform: translateY(10px);
  }

  100% {
    transform: translateY(-10px);
  }
}

/*--------------------------------------------------------------
# Sections General
--------------------------------------------------------------*/
section {
  padding: 100px 0;
  overflow: hidden;
}

.section-bg {
  background-color: #f9f8ff;
}

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

.target-title {
  text-align: center;
  padding-bottom: 10px;
}

.section-title h2 {
  font-size: 32px;
  color: #2c4964;
  margin-bottom: 20px;
  font-weight: 600;
  padding-bottom: 20px;
  position: relative;
}

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

.section-title h2::after {
  content: "";
  position: absolute;
  display: block;
  width: 50px;
  height: 3px;
  background: #5846f9;
  bottom: 0;
  left: calc(50% - 25px);
}

.target-title h2::after {
  content: "";
  position: absolute;
  display: block;
  width: 50px;
  height: 3px;
  background: #fff;
  bottom: 0;
  left: calc(50% - 25px);
}

.section-title p {
  margin-bottom: 0;
  font-size: 17px;
}

/*--------------------------------------------------------------
# About
--------------------------------------------------------------*/
.about {
  padding: 120px 0;
}

.about .content h3 {
  font-weight: 600;
  font-size: 32px;
  color: #2c4964;
}

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

.about .content ul li {
  padding-bottom: 10px;
}

.about .content ul i {
  font-size: 20px;
  padding-right: 4px;
  color: #5846f9;
}

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

.about .content .read-more {
  font-family: "Geist", sans-serif;
  font-weight: 500;
  font-size: 16px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 10px 50px 10px 28px;
  border-radius: 5px;
  transition: 0.5s;
  color: #fff;
  background: linear-gradient(45deg, #5846f9 0%, #7b27d8 100%);
  position: relative;
}

.about .content .read-more:hover {
  background: linear-gradient(180deg, #5846f9 0%, #7b27d8 100%);
}

.about .content .read-more i {
  font-size: 15px;
  position: absolute;
  right: 20px;
  top: 12.5px;
}

@media (max-width: 575px) {
  #about {
    padding-left: 20px;
    padding-right: 20px;
  }
}

/* Modern About Section Mobile Optimizations */
@media (max-width: 992px) {
  #about h2 {
    font-size: 2.5rem !important;
  }
  
  #about .about-image {
    padding: 0.5rem !important;
  }
}

/* Mobile Dashboard Image - Horizontal Scrollable (SaaS-like) */
@media (max-width: 768px) {
  #about {
    padding: 60px 0 !important;
  }
  
  #about h2 {
    font-size: 2rem !important;
    padding: 0 15px !important;
  }
  
  #about p {
    font-size: 1rem !important;
    padding: 0 15px !important;
  }
  
  /* Horizontal Scrollable Dashboard */
  #about .about-image {
    padding: 0 !important;
    margin-bottom: 2rem !important;
    overflow: visible !important;
    position: relative !important;
  }
  
  #about .about-image > div {
    position: relative !important;
    width: 100% !important;
    overflow: visible !important;
    padding: 0 20px !important;
    margin: 0 !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    min-height: fit-content !important;
  }
  
  #about .about-image > div::-webkit-scrollbar {
    display: none !important;
  }
  
  #about .about-image img {
    width: 100% !important;
    max-width: 500px !important;
    height: auto !important;
    object-fit: contain !important;
    margin: 0 auto !important;
    border-radius: 12px !important;
    flex-shrink: 0 !important;
    display: block !important;
  }
  
  /* Add small note below image for mobile */
  #about .about-image::after {
    content: "👆 View the dashboard" !important;
    position: absolute !important;
    bottom: -30px !important;
    left: 50% !important;
    transform: translateX(-50%) !important;
    font-family: 'Geist', sans-serif !important;
    font-size: 0.7rem !important;
    color: #94a3b8 !important;
    font-weight: 500 !important;
    white-space: nowrap !important;
    opacity: 0.8 !important;
  }
}

/* Minimalistic Feature Tabs - Applied from 972px and below */
@media (max-width: 991px) {
  /* Mobile Feature Tabs - Minimalistic Cards */
  #about .feature-tabs-container {
    margin-top: 1.5rem !important;
  }
  
  #about .feature-tab {
    background: #ffffff !important;
    border: 1px solid #f1f5f9 !important;
    border-radius: 12px !important;
    padding: 18px 16px !important;
    margin-bottom: 12px !important;
    transition: all 0.2s ease !important;
    position: relative !important;
    box-shadow: none !important;
  }
  
  #about .feature-tab:hover {
    border-color: #e2e8f0 !important;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04) !important;
  }
  
  #about .feature-tab.active-tab {
    border-color: #cbd5e1 !important;
    background: #fafbfc !important;
  }
  
  #about .feature-tab .tab-indicator {
    display: none !important;
  }
  
  #about .feature-tab .tab-icon {
    font-size: 16px !important;
    color: #64748b !important;
    margin-right: 12px !important;
    width: 32px !important;
    height: 32px !important;
    background: #f8fafc !important;
    border: 1px solid #f1f5f9 !important;
    border-radius: 8px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    margin-bottom: 12px !important;
  }
  
  #about .feature-tab h4 {
    font-size: 1rem !important;
    font-weight: 500 !important;
    color: #1e293b !important;
    margin-bottom: 6px !important;
  }
  
  #about .feature-tab p {
    font-size: 0.85rem !important;
    color: #64748b !important;
    line-height: 1.4 !important;
    margin: 0 !important;
  }
  
  #about .feature-tabs-base-line {
    display: none !important;
  }
}

@media (max-width: 576px) {
  #about h2 {
    font-size: 1.8rem !important;
    line-height: 1.3 !important;
    padding: 0 10px !important;
  }
  
  #about p {
    font-size: 0.95rem !important;
    padding: 0 10px !important;
  }
  
  /* Smaller dashboard for very small screens */
  #about .about-image {
    margin-bottom: 1.5rem !important;
  }
  
  #about .about-image > div {
    margin: 0 !important;
    padding: 0 15px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    min-height: fit-content !important;
    overflow: visible !important;
  }
  
  #about .about-image img {
    width: 100% !important;
    max-width: 400px !important;
    height: auto !important;
    margin: 0 auto !important;
  }
  
  /* Compact feature cards */
  #about .feature-tabs-container {
    margin-top: 1rem !important;
  }
  
  #about .feature-tab {
    padding: 16px 14px !important;
    margin-bottom: 10px !important;
  }
  
  #about .feature-tab .tab-icon {
    width: 28px !important;
    height: 28px !important;
    font-size: 14px !important;
    margin-bottom: 10px !important;
  }
  
  #about .feature-tab h4 {
    font-size: 0.95rem !important;
    margin-bottom: 5px !important;
  }
  
  #about .feature-tab p {
    font-size: 0.8rem !important;
  }
  

}

@media (max-width: 480px) {
  /* Ultra compact for very small screens */
  #about .about-image {
    margin-bottom: 1.2rem !important;
  }
  
  #about .about-image > div {
    margin: 0 !important;
    padding: 0 6px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    min-height: fit-content !important;
    overflow: visible !important;
  }
  
  #about .about-image img {
    width: 100% !important;
    max-width: 380px !important;
    height: auto !important;
    margin: 0 auto !important;
  }
  
  #about .feature-tabs-container {
    margin-top: 0.8rem !important;
  }
  
  #about .feature-tab {
    padding: 14px 12px !important;
    margin-bottom: 8px !important;
  }
  
  #about .feature-tab .tab-icon {
    width: 26px !important;
    height: 26px !important;
    font-size: 13px !important;
    margin-bottom: 8px !important;
  }
  
  #about .feature-tab h4 {
    font-size: 0.9rem !important;
    margin-bottom: 4px !important;
  }
  
  #about .feature-tab p {
    font-size: 0.75rem !important;
  }
  

}

/*--------------------------------------------------------------
# Modern Counts Section
--------------------------------------------------------------*/
.counts-modern {
  padding: 100px 0;
  background: #ffffff;
}

.modern-badge {
  background: linear-gradient(135deg, rgba(99, 102, 241, 0.1), rgba(167, 85, 247, 0.1));
  color: #6366f1;
  padding: 10px 24px;
  border-radius: 50px;
  font-size: 14px;
  font-weight: 600;
  font-family: 'Geist', sans-serif;
  border: 1px solid rgba(99, 102, 241, 0.2);
  display: inline-block;
}

.modern-heading {
  font-family: 'Geist', sans-serif;
  font-size: 2.5rem;
  font-weight: 600;
  line-height: 1.2;
  color: #0f172a;
  margin-bottom: 1.5rem;
}

.modern-description {
  font-family: 'Geist', sans-serif;
  font-size: 1rem;
  color: #64748b;
  line-height: 1.6;
  margin: 0;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.modern-stat-card {
  background: #ffffff;
  border: 1px solid #f1f5f9;
  border-radius: 12px;
  padding: 24px 20px;
  text-align: center;
  transition: all 0.3s ease;
  height: 100%;
  position: relative;
  overflow: hidden;
}

.modern-stat-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, #6366f1, #8b5cf6, #06b6d4, #10b981);
  border-radius: 12px 12px 0 0;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.modern-stat-card:hover::before {
  opacity: 1;
}

.modern-stat-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.08);
  border-color: #e2e8f0;
}

.stat-icon {
  width: 40px;
  height: 40px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
  position: relative;
  overflow: hidden;
}

.stat-icon::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  border-radius: 12px;
  opacity: 0.1;
  transition: opacity 0.3s ease;
}

.stat-icon i {
  font-size: 18px;
  color: white;
  position: relative;
  z-index: 2;
}

.stat-icon-blue {
  background: linear-gradient(135deg, #3b82f6, #2563eb);
}

.stat-icon-blue::before {
  background: #3b82f6;
}

.stat-icon-orange {
  background: linear-gradient(135deg, #f59e0b, #d97706);
}

.stat-icon-orange::before {
  background: #f59e0b;
}

.stat-icon-green {
  background: linear-gradient(135deg, #10b981, #059669);
}

.stat-icon-green::before {
  background: #10b981;
}

.stat-icon-purple {
  background: linear-gradient(135deg, #8b5cf6, #7c3aed);
}

.stat-icon-purple::before {
  background: #8b5cf6;
}

.modern-stat-card:hover .stat-icon::before {
  opacity: 0.2;
}

.stat-content {
  text-align: center;
}

.stat-number {
  font-family: 'Geist', sans-serif;
  font-size: 2.5rem;
  font-weight: 700;
  color: #0f172a;
  line-height: 1;
  margin-bottom: 8px;
  background: linear-gradient(135deg, #0f172a, #374151);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.stat-label {
  font-family: 'Geist', sans-serif;
  font-size: 1rem;
  font-weight: 500;
  color: #1e293b;
  margin-bottom: 2px;
  line-height: 1.3;
}

.stat-sublabel {
  font-family: 'Geist', sans-serif;
  font-size: 0.85rem;
  color: #64748b;
  font-weight: 400;
}

/* Responsive Design */
@media (max-width: 992px) {
  .modern-heading {
    font-size: 2.2rem;
}

  .modern-description {
    font-size: 1rem;
  }
  
  .modern-stat-card {
    padding: 20px 16px;
  }
  
  .stat-icon {
    width: 36px;
    height: 36px;
    margin-bottom: 14px;
  }
  
  .stat-icon i {
    font-size: 16px;
  }
  
  .stat-number {
    font-size: 2.2rem;
  }
}

@media (max-width: 768px) {
  .counts-modern {
    padding: 60px 0;
  }
  
  .modern-heading {
    font-size: 2rem;
  }
  
  .modern-description {
    font-size: 0.95rem;
    padding: 0 20px;
  }
  
  /* 2x2 Grid Layout for Mobile */
  .counts-modern .col-lg-3.col-md-6 {
    flex: 0 0 50%;
    max-width: 50%;
  }

  .modern-stat-card {
    padding: 18px 12px;
    margin-bottom: 16px;
  }

  .stat-icon {
    width: 32px;
    height: 32px;
    margin-bottom: 10px;
  }
  
  .stat-icon i {
    font-size: 14px;
  }

  .stat-number {
    font-size: 2rem;
    margin-bottom: 6px;
  }
  
  .stat-label {
    font-size: 0.9rem;
    margin-bottom: 1px;
  }
  
  .stat-sublabel {
    font-size: 0.75rem;
  }
}

@media (max-width: 576px) {
  .modern-heading {
    font-size: 1.8rem;
    line-height: 1.3;
  }
  
  .modern-description {
    font-size: 0.9rem;
    padding: 0 15px;
  }
  
  /* Maintain 2x2 Grid */
  .counts-modern .col-lg-3.col-md-6 {
    flex: 0 0 50%;
    max-width: 50%;
    padding: 0 8px;
  }

  .modern-stat-card {
    padding: 16px 10px;
    margin-bottom: 12px;
  }
  
  .stat-icon {
    width: 28px;
    height: 28px;
    margin-bottom: 8px;
  }
  
  .stat-icon i {
    font-size: 12px;
  }
  
  .stat-number {
    font-size: 1.8rem;
    margin-bottom: 4px;
  }
  
  .stat-label {
    font-size: 0.85rem;
    margin-bottom: 1px;
    line-height: 1.2;
  }
  
  .stat-sublabel {
    font-size: 0.7rem;
  }
}

@media (max-width: 480px) {
  .counts-modern {
    padding: 50px 0;
  }
  
  .counts-modern .col-lg-3.col-md-6 {
    padding: 0 6px;
  }
  
  .modern-stat-card {
    padding: 14px 8px;
    margin-bottom: 10px;
  }
  
  .row.g-4 {
    --bs-gutter-x: 0.75rem;
    --bs-gutter-y: 0.75rem;
  }
  
  .stat-icon {
    width: 24px;
    height: 24px;
    margin-bottom: 6px;
  }
  
  .stat-icon i {
    font-size: 10px;
  }
  
  .stat-number {
    font-size: 1.6rem;
  }
  
  .stat-label {
    font-size: 0.8rem;
  }
  
  .stat-sublabel {
    font-size: 0.65rem;
  }
}


/*--------------------------------------------------------------
# Grid System Values Section
--------------------------------------------------------------*/
.values-modern {
  padding: 100px 0;
  background: #f8fafc;
  position: relative;
  overflow: hidden;
}

.values-badge {
  background: linear-gradient(135deg, rgba(239, 68, 68, 0.15), rgba(220, 38, 127, 0.15));
  color: #ef4444;
  padding: 8px 20px;
  border-radius: 50px;
  font-size: 14px;
  font-weight: 600;
  font-family: 'Geist', sans-serif;
  border: 1px solid rgba(239, 68, 68, 0.2);
  display: inline-block;
}

.values-heading {
  font-family: 'Geist', sans-serif;
  font-size: 2.5rem;
  font-weight: 600;
  line-height: 1.2;
  color: #0f172a;
  margin-bottom: 1.5rem;
}

.values-description {
  font-family: 'Geist', sans-serif;
  font-size: 1rem;
  color: #64748b;
  line-height: 1.6;
  margin: 0;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

/* Grid System Layout */
.values-grid-system {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  position: relative;
}

.grid-background {
  position: absolute;
  top: -50px;
  left: -50px;
  right: -50px;
  bottom: -50px;
  pointer-events: none;
  z-index: 1;
}

.grid-lines {
  width: calc(100% + 80px);
  height: calc(100% + 80px);
  background-image: 
    repeating-linear-gradient(
      0deg,
      transparent 0px,
      transparent 39px,
      rgba(148, 163, 184, 0.15) 39px,
      rgba(148, 163, 184, 0.15) 40px,
      transparent 40px
    ),
    repeating-linear-gradient(
      90deg,
      transparent 0px,
      transparent 39px,
      rgba(148, 163, 184, 0.15) 39px,
      rgba(148, 163, 184, 0.15) 40px,
      transparent 40px
    );
  background-position: 40px 20px;
  will-change: transform;
}

.grid-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2px;
  position: relative;
  z-index: 2;
  background: rgba(148, 163, 184, 0.1);
  padding: 2px;
  border-radius: 8px;
}

.grid-cell {
  position: relative;
}

.grid-item {
  background: #ffffff;
  height: 100%;
  position: relative;
  overflow: hidden;
  transition: all 0.4s ease;
  border: 1px solid rgba(148, 163, 184, 0.2);
}

.grid-item::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.1), transparent);
  pointer-events: none;
  transition: opacity 0.4s ease;
  opacity: 0;
}

.grid-item:hover::before {
  opacity: 1;
}

.grid-item:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
  border-color: rgba(148, 163, 184, 0.3);
}

.grid-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 24px 0;
  position: relative;
}

.grid-label {
  font-family: 'Geist', sans-serif;
  font-size: 0.75rem;
  font-weight: 600;
  color: #94a3b8;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.grid-icon {
  width: 40px;
  height: 40px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.4s ease;
}

.grid-icon i {
  font-size: 20px;
  color: white;
  transition: all 0.4s ease;
}

.grid-content {
  padding: 16px 24px 24px;
}

.grid-content h4 {
  font-family: 'Geist', sans-serif;
  font-size: 0.95rem;
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 12px;
  letter-spacing: 0.5px;
  line-height: 1.3;
}

.grid-content p {
  font-family: 'Geist', sans-serif;
  font-size: 0.8rem;
  color: #64748b;
  line-height: 1.5;
  margin: 0;
}

.grid-corner {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 20px;
  height: 20px;
  border-top: 2px solid;
  border-left: 2px solid;
  opacity: 0.3;
  transition: all 0.4s ease;
}

.grid-item:hover .grid-corner {
  opacity: 0.6;
  width: 30px;
  height: 30px;
}

/* Theme Colors */
.grid-item-blue .grid-icon {
  background: linear-gradient(135deg, #3b82f6, #1d4ed8);
  box-shadow: 0 4px 12px rgba(59, 130, 246, 0.25);
}

.grid-item-blue .grid-corner {
  border-color: #3b82f6;
}

.grid-item-blue:hover .grid-icon {
  transform: scale(1.1);
  box-shadow: 0 6px 20px rgba(59, 130, 246, 0.4);
}

.grid-item-orange .grid-icon {
  background: linear-gradient(135deg, #f59e0b, #d97706);
  box-shadow: 0 4px 12px rgba(245, 158, 11, 0.25);
}

.grid-item-orange .grid-corner {
  border-color: #f59e0b;
}

.grid-item-orange:hover .grid-icon {
  transform: scale(1.1);
  box-shadow: 0 6px 20px rgba(245, 158, 11, 0.4);
}

.grid-item-pink .grid-icon {
  background: linear-gradient(135deg, #ec4899, #be185d);
  box-shadow: 0 4px 12px rgba(236, 72, 153, 0.25);
}

.grid-item-pink .grid-corner {
  border-color: #ec4899;
}

.grid-item-pink:hover .grid-icon {
  transform: scale(1.1);
  box-shadow: 0 6px 20px rgba(236, 72, 153, 0.4);
}

.grid-item-yellow .grid-icon {
  background: linear-gradient(135deg, #eab308, #ca8a04);
  box-shadow: 0 4px 12px rgba(234, 179, 8, 0.25);
}

.grid-item-yellow .grid-corner {
  border-color: #eab308;
}

.grid-item-yellow:hover .grid-icon {
  transform: scale(1.1);
  box-shadow: 0 6px 20px rgba(234, 179, 8, 0.4);
}

/* Responsive Design */
@media (max-width: 992px) {
  .values-heading {
    font-size: 2.2rem;
}

  .values-description {
    font-size: 0.95rem;
  }
  
  .grid-container {
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 1.5px;
  }
}

/* iPad/Tablet 2x2 Grid Layout */
@media (min-width: 769px) and (max-width: 1024px) {
  .values-modern {
    padding: 80px 0;
}

  .values-heading {
    font-size: 2.3rem;
  }
  
  .values-description {
    font-size: 0.95rem;
    padding: 0 30px;
  }
  
  .values-grid-system {
    padding: 0 20px;
  }
  
  .grid-container {
    grid-template-columns: 1fr 1fr !important;
    grid-template-rows: 1fr 1fr !important;
    gap: 2px !important;
    max-width: 800px !important;
    margin: 0 auto !important;
}

  .grid-header {
    padding: 18px 20px 0;
  }
  
  .grid-content {
    padding: 14px 20px 20px;
  }
  
  .grid-icon {
    width: 38px;
    height: 38px;
  }
  
  .grid-icon i {
    font-size: 17px;
  }
  
  .grid-content h4 {
    font-size: 0.9rem;
    margin-bottom: 10px;
  }
  
  .grid-content p {
    font-size: 0.8rem;
    line-height: 1.4;
  }
  
  .grid-label {
    font-size: 0.7rem;
  }
  
  .grid-header {
    padding: 18px 20px 0;
}

  .grid-content {
    padding: 14px 20px 20px;
  }
  
  .grid-icon {
    width: 36px;
    height: 36px;
}

  .grid-icon i {
    font-size: 18px;
}

  .grid-content h4 {
    font-size: 0.9rem;
  }
  
  .grid-content p {
    font-size: 0.75rem;
  }
}

/* iPad/Tablet 2x2 Grid Layout */
@media (min-width: 769px) and (max-width: 1024px) {
  .values-modern {
    padding: 80px 0;
  }
  
  .values-heading {
    font-size: 2.3rem;
}

  .values-description {
    font-size: 0.95rem;
    padding: 0 30px;
  }
  
  .values-grid-system {
    padding: 0 20px;
  }
  
  .grid-container {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 1fr 1fr;
    gap: 2px;
    max-width: 800px;
    margin: 0 auto;
  }
  
  .grid-header {
    padding: 18px 20px 0;
  }
  
  .grid-content {
    padding: 14px 20px 20px;
  }
  
  .grid-icon {
    width: 38px;
    height: 38px;
}

  .grid-icon i {
    font-size: 17px;
  }
  
  .grid-content h4 {
    font-size: 0.9rem;
    margin-bottom: 10px;
  }
  
  .grid-content p {
    font-size: 0.8rem;
    line-height: 1.4;
  }
  
  .grid-label {
    font-size: 0.7rem;
  }
}

@media (max-width: 768px) {
  .values-modern {
    padding: 60px 0;
  }
  
  .values-heading {
    font-size: 2rem;
}

  .values-description {
    font-size: 0.9rem;
    padding: 0 20px;
  }
  
  .values-grid-system {
    padding: 0 15px;
  }
  
  /* Keep grid background on mobile */
  .grid-background {
    position: absolute !important;
    top: -50px !important;
    left: -50px !important;
    right: -50px !important;
    bottom: -50px !important;
    pointer-events: none !important;
    z-index: 1 !important;
  }
  
  .grid-lines {
    width: calc(100% + 80px) !important;
    height: calc(100% + 80px) !important;
    background-image: 
      repeating-linear-gradient(
        0deg,
        transparent 0px,
        transparent 19px,
        rgba(148, 163, 184, 0.12) 19px,
        rgba(148, 163, 184, 0.12) 20px,
        transparent 20px
      ),
      repeating-linear-gradient(
        90deg,
        transparent 0px,
        transparent 19px,
        rgba(148, 163, 184, 0.12) 19px,
        rgba(148, 163, 184, 0.12) 20px,
        transparent 20px
      ) !important;
    background-position: 20px 10px !important;
    will-change: transform !important;
  }
  
  .grid-container {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 1fr 1fr;
    gap: 2px;
    max-width: 800px;
    margin: 0 auto;
}

  .grid-header {
    padding: 16px 18px 0;
  }
  
  .grid-content {
    padding: 12px 18px 18px;
  }
  
  .grid-icon {
    width: 34px;
    height: 34px;
  }
  
  .grid-icon i {
    font-size: 16px;
}

  .grid-content h4 {
    font-size: 0.85rem;
    margin-bottom: 10px;
}

  .grid-content p {
    font-size: 0.7rem;
    line-height: 1.4;
}

  .grid-label {
    font-size: 0.7rem;
  }
}

@media (max-width: 576px) {
  .values-heading {
    font-size: 1.8rem;
    line-height: 1.3;
}

  .values-description {
    font-size: 0.85rem;
    padding: 0 15px;
  }
  
  .grid-container {
    grid-template-columns: 1fr;
    gap: 1px;
}

  .grid-header {
    padding: 14px 16px 0;
  }
  
  .grid-content {
    padding: 10px 16px 16px;
  }
  
  .grid-icon {
    width: 32px;
    height: 32px;
}

  .grid-icon i {
    font-size: 14px;
}

  .grid-content h4 {
    font-size: 0.8rem;
    margin-bottom: 8px;
  }
  
  .grid-content p {
    font-size: 0.75rem;
  }
  
  .grid-label {
    font-size: 0.65rem;
  }
}

@media (max-width: 480px) {
  .values-modern {
    padding: 50px 0;
}

  .values-grid-system {
    padding: 0 10px;
  }
  
  .grid-header {
    padding: 12px 14px 0;
  }
  
  .grid-content {
    padding: 8px 14px 14px;
  }
  
  .grid-lines {
    background-size: 30px 30px;
  }
}

/*--------------------------------------------------------------
# Modern How It Works Section
--------------------------------------------------------------*/
.how-it-works-modern {
  padding: 100px 0;
  background: #ffffff;
}

.works-badge {
  background: linear-gradient(135deg, rgba(99, 102, 241, 0.15), rgba(167, 85, 247, 0.15));
  color: #6366f1;
  padding: 8px 20px;
  border-radius: 50px;
  font-size: 14px;
  font-weight: 600;
  font-family: 'Geist', sans-serif;
  border: 1px solid rgba(99, 102, 241, 0.2);
  display: inline-block;
}

.works-heading {
  font-family: 'Geist', sans-serif;
  font-size: 2.5rem;
  font-weight: 600;
  line-height: 1.2;
  color: #0f172a;
  margin-bottom: 1.5rem;
}

.text-highlight {
  background: linear-gradient(135deg, #6366f1, #a855f7);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-weight: 600;
}

.works-grid-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 1fr 1fr;
  gap: 20px;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 20px;
}

.feature-box {
  background: #ffffff;
  padding: 28px 24px;
  position: relative;
  transition: all 0.2s ease;
  border: 1px solid #e2e8f0;
  border-radius: 12px;
  min-height: 240px;
  display: flex;
  flex-direction: column;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

.feature-box:hover {
  background: #fafbfc;
  border-color: #cbd5e1;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
}

.feature-number {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 24px;
  height: 24px;
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Geist', sans-serif;
  font-size: 0.7rem;
  font-weight: 600;
  color: #64748b;
  background: #f1f5f9;
}

.feature-icon {
  width: 32px;
  height: 32px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  background: #f8fafc;
  border: 1px solid #e2e8f0;
}

.feature-icon i {
  font-size: 16px;
  color: #64748b;
}

.feature-content {
  flex: 1;
}

.feature-content h4 {
  font-family: 'Geist', sans-serif;
  font-size: 0.95rem;
  font-weight: 600;
  color: #1e293b;
  margin-bottom: 8px;
  line-height: 1.3;
}

.feature-content p {
  font-family: 'Geist', sans-serif;
  font-size: 0.8rem;
  color: #64748b;
  line-height: 1.5;
  margin: 0 0 16px 0;
}

/* Visual Graphics for Each Step */
.feature-visual {
  width: 100%;
  height: 80px;
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  border-radius: 8px;
  position: relative;
  overflow: hidden;
  margin-top: auto;
  display: flex;
  align-items: center;
  justify-content: center;
}

.feature-visual::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.5), transparent);
}

/* Enhanced Profile Creation Visual */
.visual-profile {
  background: linear-gradient(135deg, #f0f9ff, #e0f2fe);
  border-color: #bae6fd;
  overflow: hidden;
}

.visual-profile::before {
  content: '';
  position: absolute;
  top: 12px;
  left: 12px;
  width: 28px;
  height: 28px;
  background: linear-gradient(135deg, #3b82f6, #1d4ed8);
  border-radius: 50%;
  z-index: 3;
}

.visual-profile::after {
  content: '👤';
  position: absolute;
  top: 12px;
  left: 12px;
  width: 28px;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  opacity: 0.9;
  z-index: 4;
}

.visual-profile .visual-form {
  position: absolute;
  top: 12px;
  left: 50px;
  right: 12px;
  bottom: 12px;
  background: rgba(255, 255, 255, 0.8);
  border-radius: 6px;
  border: 1px solid #bae6fd;
  padding: 8px;
  backdrop-filter: blur(5px);
}

.visual-profile .visual-form::before {
  content: '';
  position: absolute;
  top: 6px;
  left: 6px;
  width: 70%;
  height: 3px;
  background: linear-gradient(90deg, #3b82f6, #60a5fa);
  border-radius: 2px;
  opacity: 0.6;
}

.visual-profile .visual-form::after {
  content: '';
  position: absolute;
  top: 14px;
  left: 6px;
  width: 50%;
  height: 2px;
  background: #93c5fd;
  border-radius: 1px;
  opacity: 0.5;
}

.visual-profile .visual-fields {
  position: absolute;
  bottom: 8px;
  left: 6px;
  right: 6px;
  height: 20px;
  background: linear-gradient(135deg, rgba(59, 130, 246, 0.1), rgba(147, 197, 253, 0.1));
  border-radius: 4px;
  border: 1px solid rgba(59, 130, 246, 0.2);
}

.visual-profile .visual-fields::before {
  content: '';
  position: absolute;
  top: 4px;
  left: 4px;
  width: 30%;
  height: 2px;
  background: #3b82f6;
  border-radius: 1px;
  opacity: 0.4;
}

.visual-profile .visual-fields::after {
  content: '';
  position: absolute;
  top: 4px;
  right: 4px;
  width: 8px;
  height: 8px;
  background: #10b981;
  border-radius: 50%;
  opacity: 0.7;
}

/* Resume Generation Visual */
.visual-resume {
  background: linear-gradient(135deg, #fefce8, #fef3c7);
  border-color: #fde68a;
}

.visual-resume::before {
  content: '🤖';
  position: absolute;
  top: 12px;
  left: 12px;
  font-size: 16px;
  opacity: 0.7;
  z-index: 3;
}

.visual-resume::after {
  content: '';
  position: absolute;
  top: 12px;
  left: 40px;
  right: 12px;
  bottom: 12px;
  background: white;
  border-radius: 4px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.visual-resume .visual-content {
  position: absolute;
  top: 20px;
  left: 48px;
  right: 20px;
  z-index: 2;
}

.visual-resume .visual-content::before,
.visual-resume .visual-content::after {
  content: '';
  position: absolute;
  left: 0;
  background: #eab308;
  border-radius: 1px;
  opacity: 0.5;
}

.visual-resume .visual-content::before {
  top: 0;
  width: 75%;
  height: 2px;
}

.visual-resume .visual-content::after {
  top: 8px;
  width: 55%;
  height: 2px;
}

/* Enhanced Job Matching Visual */
.visual-matching {
  background: linear-gradient(135deg, #f0fdf4, #dcfce7);
  border-color: #bbf7d0;
  overflow: hidden;
}

.visual-matching::before {
  content: '';
  position: absolute;
  top: 10px;
  left: 10px;
  width: 24px;
  height: 24px;
  background: linear-gradient(135deg, #10b981, #059669);
  border-radius: 6px;
  z-index: 3;
}

.visual-matching::after {
  content: '👤';
  position: absolute;
  top: 10px;
  left: 10px;
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  opacity: 0.9;
  z-index: 4;
}

.visual-matching .visual-connection {
  position: absolute;
  top: 22px;
  left: 40px;
  right: 40px;
  height: 2px;
  background: linear-gradient(90deg, #10b981, #34d399, #10b981);
  border-radius: 1px;
  opacity: 0.6;
}

.visual-matching .visual-connection::before {
  content: '';
  position: absolute;
  top: -2px;
  left: 50%;
  transform: translateX(-50%);
  width: 6px;
  height: 6px;
  background: #10b981;
  border-radius: 50%;
  animation: pulse-dot 2s infinite;
}

@keyframes pulse-dot {
  0%, 100% {
    opacity: 1;
    transform: translateX(-50%) scale(1);
  }
  50% {
    opacity: 0.5;
    transform: translateX(-50%) scale(1.2);
  }
}

.visual-matching .visual-jobs {
  position: absolute;
  top: 10px;
  right: 10px;
  width: 24px;
  height: 24px;
  background: linear-gradient(135deg, #6366f1, #4f46e5);
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.visual-matching .visual-jobs::before {
  content: '💼';
  font-size: 12px;
  opacity: 0.9;
}

.visual-matching .visual-algorithm {
  position: absolute;
  bottom: 8px;
  left: 8px;
  right: 8px;
  height: 28px;
  background: linear-gradient(135deg, rgba(16, 185, 129, 0.1), rgba(52, 211, 153, 0.1));
  border-radius: 6px;
  border: 1px solid rgba(16, 185, 129, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 3px;
}

.visual-matching .visual-algorithm::before {
  content: '';
  width: 3px;
  height: 12px;
  background: #10b981;
  border-radius: 2px;
  opacity: 0.4;
  animation: bar-1 1.5s infinite;
}

.visual-matching .visual-algorithm::after {
  content: '';
  width: 3px;
  height: 8px;
  background: #34d399;
  border-radius: 2px;
  opacity: 0.6;
  animation: bar-2 1.5s infinite;
}

.visual-matching .visual-bars {
  width: 3px;
  height: 16px;
  background: #059669;
  border-radius: 2px;
  opacity: 0.5;
  animation: bar-3 1.5s infinite;
}

@keyframes bar-1 {
  0%, 100% { height: 12px; opacity: 0.4; }
  50% { height: 16px; opacity: 0.7; }
}

@keyframes bar-2 {
  0%, 100% { height: 8px; opacity: 0.6; }
  50% { height: 12px; opacity: 0.8; }
}

@keyframes bar-3 {
  0%, 100% { height: 16px; opacity: 0.5; }
  50% { height: 10px; opacity: 0.9; }
}

/* Application Process Visual */
.visual-application {
  background: linear-gradient(135deg, #fdf2f8, #fce7f3);
  border-color: #f9a8d4;
}

.visual-application::before {
  content: '📄';
  position: absolute;
  top: 16px;
  left: 16px;
  font-size: 16px;
  opacity: 0.6;
}

.visual-application::after {
  content: '⚡';
  position: absolute;
  top: 50%;
  right: 16px;
  transform: translateY(-50%);
  font-size: 16px;
  opacity: 0.7;
}

.visual-application .visual-form {
  position: absolute;
  top: 20px;
  left: 40px;
  right: 40px;
  bottom: 20px;
  background: rgba(255, 255, 255, 0.6);
  border-radius: 4px;
  border: 1px solid #f9a8d4;
}

.visual-application .visual-form::before,
.visual-application .visual-form::after {
  content: '';
  position: absolute;
  left: 8px;
  background: #ec4899;
  border-radius: 1px;
  opacity: 0.3;
}

.visual-application .visual-form::before {
  top: 8px;
  width: 70%;
  height: 2px;
}

.visual-application .visual-form::after {
  top: 16px;
  width: 50%;
  height: 2px;
}

/* All feature boxes use the same minimal styling - no theme colors needed */

/* Responsive Design */
@media (max-width: 992px) {
  .works-heading {
    font-size: 2.2rem;
  }
  
  .works-grid-container {
    max-width: 950px;
    gap: 16px;
    padding: 0 15px;
  }
  
  .feature-box {
    padding: 24px 20px;
    min-height: 180px;
  }
  
  .feature-icon {
    width: 28px;
    height: 28px;
    margin-bottom: 14px;
  }
  
  .feature-icon i {
    font-size: 14px;
  }
  
  .feature-content h4 {
    font-size: 0.9rem;
  }
  
  .feature-content p {
    font-size: 0.75rem;
  }
  
  .feature-number {
    width: 22px;
    height: 22px;
    font-size: 0.65rem;
  }
  
  .feature-visual {
    height: 70px;
  }
}

@media (max-width: 768px) {
  .how-it-works-modern {
    padding: 60px 0;
  }
  
  .works-heading {
    font-size: 2rem;
  }
  
  .works-grid-container {
    max-width: 600px;
    gap: 12px;
    padding: 0 10px;
  }
  
  .feature-box {
    padding: 20px 16px;
    min-height: 160px;
  }
  
  .feature-icon {
    width: 26px;
    height: 26px;
    margin-bottom: 12px;
  }
  
  .feature-icon i {
    font-size: 13px;
  }
  
  .feature-content h4 {
    font-size: 0.85rem;
    margin-bottom: 6px;
  }
  
  .feature-content p {
    font-size: 0.7rem;
  }
  
  .feature-number {
    width: 20px;
    height: 20px;
    font-size: 0.6rem;
    top: 16px;
    right: 16px;
  }
  
  .feature-visual {
    height: 70px;
  }
}

@media (max-width: 576px) {
  .works-heading {
    font-size: 1.6rem;
    line-height: 1.3;
    margin-left: 3px;
    margin-right: 3px;
  }
  
  .works-grid-container {
    grid-template-columns: 1fr;
    grid-template-rows: repeat(4, 1fr);
    max-width: 400px;
  }
  
  .feature-box {
    padding: 18px 14px;
    min-height: 140px;
  }
  
  .feature-icon {
    width: 24px;
    height: 24px;
    margin-bottom: 10px;
  }
  
  .feature-icon i {
    font-size: 12px;
  }
  
  .feature-content h4 {
    font-size: 0.8rem;
  }
  
  .feature-content p {
    font-size: 0.75rem;
  }
  
  .feature-number {
    width: 18px;
    height: 18px;
    font-size: 0.55rem;
    top: 14px;
    right: 14px;
  }
  
  .feature-visual {
    height: 70px;
  }
  
  .visual-matching::after {
    font-size: 16px;
  }
}

@media (max-width: 480px) {
  .how-it-works-modern {
    padding: 50px 0;
  }
  
  .feature-box {
    padding: 16px 12px;
    min-height: 130px;
  }
}

/*--------------------------------------------------------------
# Modern Who We Help Section
--------------------------------------------------------------*/
.help-modern {
  padding: 100px 0;
  background: #f8fafc;
}

.help-badge {
  background: linear-gradient(135deg, rgba(34, 197, 94, 0.15), rgba(16, 185, 129, 0.15));
  color: #22c55e;
  padding: 8px 20px;
  border-radius: 50px;
  font-size: 14px;
  font-weight: 600;
  font-family: 'Geist', sans-serif;
  border: 1px solid rgba(34, 197, 94, 0.2);
  display: inline-block;
}

.help-heading {
  font-family: 'Geist', sans-serif;
  font-size: 2.5rem;
  font-weight: 600;
  line-height: 1.2;
  color: #0f172a;
  margin-bottom: 1.5rem;
}

.help-description {
  font-family: 'Geist', sans-serif;
  font-size: 1rem;
  color: #64748b;
  line-height: 1.6;
  margin: 0;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.help-grid-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(450px, 1fr));
  gap: 40px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.help-card {
  background: #ffffff;
  border-radius: 16px;
  padding: 32px;
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  text-align: left;
  transition: all 0.3s ease;
  border: 1px solid #e2e8f0;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.04);
  position: relative;
  overflow: hidden;
  gap: 24px;
}

.help-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(99, 102, 241, 0.03), rgba(16, 185, 129, 0.03));
  opacity: 0;
  transition: opacity 0.4s ease;
}

.help-card:hover::before {
  opacity: 1;
}

.help-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
  border-color: #cbd5e1;
}

.help-image-container {
  width: 180px;
  height: 180px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  background: linear-gradient(135deg, #f8fafc, #f1f5f9);
  padding: 20px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
  transition: all 0.3s ease;
  flex-shrink: 0;
}

.help-card:hover .help-image-container {
  transform: scale(1.02);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06);
}

.help-image {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.1));
}

.help-content {
  flex: 1;
  width: 100%;
}

.help-content h3 {
  font-family: 'Geist', sans-serif;
  font-size: 0.8rem;
  font-weight: 600;
  color: #ffffff;
  margin-bottom: 20px;
  background: linear-gradient(135deg, #6366f1, #8b5cf6);
  padding: 8px 20px;
  border-radius: 50px;
  display: inline-block;
  box-shadow: 0 4px 12px rgba(99, 102, 241, 0.3);
  position: relative;
  overflow: hidden;
}

.help-content h3::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transition: left 0.6s ease;
}

.help-card:hover .help-content h3::before {
  left: 100%;
}

/* PWD Card Theme */
.help-card:first-child .help-content h3 {
  background: linear-gradient(135deg, #3b82f6, #1d4ed8);
  box-shadow: 0 4px 12px rgba(59, 130, 246, 0.3);
}

.help-card:first-child:hover {
  border-color: rgba(59, 130, 246, 0.2);
}

/* Ex-Offenders Card Theme */
.help-card:last-child .help-content h3 {
  background: linear-gradient(135deg, #f59e0b, #d97706);
  box-shadow: 0 4px 12px rgba(245, 158, 11, 0.3);
}

.help-card:last-child:hover {
  border-color: rgba(245, 158, 11, 0.2);
}

.help-content p {
  font-family: 'Geist', sans-serif;
  font-size: 14px;
  font-weight: 400;
  color: #475569;
  line-height: 1.6;
  margin: 0;
  text-align: left;
}



/* Responsive Design */
@media (max-width: 992px) {
  .help-heading {
    font-size: 2.2rem;
  }
  
  .help-description {
    font-size: 0.95rem;
  }
  
  .help-grid-container {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  
  .help-card {
    padding: 28px;
    flex-direction: column;
    text-align: center;
    gap: 20px;
  }
  
  .help-image-container {
    width: 220px;
    height: 200px;
    align-self: center;
  }
  
  .help-content p {
    text-align: center;
    max-width: 480px;
    margin: 0 auto;
  }
}

@media (max-width: 768px) {
  .help-modern {
    padding: 60px 0;
  }
  
  .help-heading {
    font-size: 2rem;
  }
  
  .help-description {
    font-size: 0.9rem;
    padding: 0 20px;
  }
  
  .help-grid-container {
    grid-template-columns: 1fr;
    gap: 24px;
    padding: 0 15px;
  }
  
  .help-card {
    padding: 28px;
    flex-direction: column;
    text-align: center;
    gap: 20px;
  }
  
  .help-image-container {
    width: 260px;
    height: 240px;
    align-self: center;
  }
  
  .help-content {
    text-align: center;
  }
  
  .help-content h3 {
    font-size: 0.75rem;
    padding: 7px 18px;
    margin-bottom: 16px;
  }
  
  .help-content p {
    font-size: 0.9rem;
    color: #475569;
    line-height: 1.6;
    text-align: center;
    max-width: 480px;
    margin: 0 auto;
  }
}

@media (max-width: 576px) {
  .help-heading {
    font-size: 1.8rem;
    line-height: 1.3;
  }
  
  .help-description {
    font-size: 0.85rem;
    padding: 0 15px;
  }
  
  .help-card {
    padding: 24px;
    gap: 18px;
  }
  
  .help-image-container {
    width: 240px;
    height: 220px;
  }
  
  .help-content h3 {
    font-size: 0.7rem;
    padding: 6px 16px;
    margin-bottom: 14px;
  }
  
  .help-content p {
    font-size: 0.85rem;
    color: #475569;
    line-height: 1.6;
    max-width: 400px;
    margin: 0 auto;
    text-align: center;
  }
}

@media (max-width: 480px) {
  .help-modern {
    padding: 50px 0;
  }
  
  .help-grid-container {
    padding: 0 10px;
  }
  
  .help-card {
    padding: 20px;
    gap: 16px;
  }
  
  .help-image-container {
    width: 200px;
    height: 180px;
  }
  
  .help-content h3 {
    font-size: 0.65rem;
    padding: 6px 14px;
    margin-bottom: 12px;
  }
  
  .help-content p {
    font-size: 0.8rem;
    color: #475569;
    line-height: 1.6;
    max-width: 340px;
    margin: 0 auto;
    text-align: center;
  }
}

/*--------------------------------------------------------------
# Partners
--------------------------------------------------------------*/
.partners {
  padding: 15px 0;
  text-align: center;
}

.img1, .img2, .img3, .img5 {
  max-width: 60%;
  transition: all 0.4s ease-in-out;
  display: inline-block;
  padding: 15px 0;
}

.img4 {
  transition: all 0.4s ease-in-out;
  display: inline-block;
  padding: 15px 0;
}

.partners img:hover {
  transform: scale(1.15);
}

@media (max-width: 768px) {
  .img1, .img2, .img3, .img5 {
    max-width: 60%;
    padding-top: 30px;
  }
  .img4 {
    max-width: 75%;
    padding-top: 30px;
  }
}

.row {
  display: flex;
  flex-wrap: wrap;
  margin-right: 0px; 
  margin-left: 0px; 
}

/*--------------------------------------------------------------
# Modern Team Section
--------------------------------------------------------------*/
.team-modern {
  padding: 100px 0;
  background: #ffffff;
}

.team-badge {
  background: linear-gradient(135deg, rgba(139, 92, 246, 0.15), rgba(99, 102, 241, 0.15));
  color: #8b5cf6;
  padding: 8px 20px;
  border-radius: 50px;
  font-size: 14px;
  font-weight: 600;
  font-family: 'Geist', sans-serif;
  border: 1px solid rgba(139, 92, 246, 0.2);
  display: inline-block;
}

.team-heading {
  font-family: 'Geist', sans-serif;
  font-size: 2.5rem;
  font-weight: 600;
  line-height: 1.2;
  color: #0f172a;
  margin-bottom: 1.5rem;
}

.team-description {
  font-family: 'Geist', sans-serif;
  font-size: 1rem;
  color: #64748b;
  line-height: 1.6;
  margin: 0;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

/* Team Photos Section */
.team-photos-container {
  margin: 60px 0;
  position: relative;
}

.team-photos-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 20px;
}

.team-photo-card {
  position: relative;
  border-radius: 8px;
  overflow: hidden;
  background: #ffffff;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
  transition: all 0.3s ease;
  border: 1px solid #f1f5f9;
}

.team-photo-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.12);
}

.team-photo-card img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.3s ease;
}

.team-photo-card:hover img {
  transform: scale(1.02);
}

.team-photo-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.7));
  padding: 24px;
  color: white;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.team-photo-card:hover .team-photo-overlay {
  opacity: 1;
}

.team-photo-overlay h4 {
  font-family: 'Geist', sans-serif;
  font-size: 1.1rem;
  font-weight: 500;
  margin: 0 0 4px 0;
}

.team-photo-overlay p {
  font-family: 'Geist', sans-serif;
  font-size: 0.85rem;
  margin: 0;
  opacity: 0.9;
}

/* Minimalistic Testimonials Section */
.team-testimonials {
  background: #ffffff;
  padding: 20px;
  margin: 0;
  position: relative;
}

.testimonials-slider {
  position: relative;
}

.testimonial-item {
  background: #ffffff;
  border-radius: 8px;
  padding: 20px;
  box-shadow: none;
  border: 1px solid #f1f5f9;
  transition: all 0.2s ease;
  margin: 10px 5px;
  position: relative;
}

.testimonial-item:hover {
  border-color: #e2e8f0;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

.testimonial-quote {
  font-family: 'Geist', sans-serif;
  font-size: 0.85rem;
  color: #64748b;
  line-height: 1.6;
  margin-bottom: 16px;
  position: relative;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.testimonial-img {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid #f8fafc;
}

.testimonial-info h3 {
  font-family: 'Geist', sans-serif;
  font-size: 0.9rem;
  font-weight: 600;
  color: #1e293b;
  margin: 0 0 2px 0;
}

.testimonial-info h4 {
  font-family: 'Geist', sans-serif;
  font-size: 0.75rem;
  font-weight: 500;
  color: #94a3b8;
  margin: 0;
}

/* Swiper Pagination */
.swiper-pagination {
  margin-top: 20px;
  position: relative;
}

.swiper-pagination-bullet {
  width: 4px;
  height: 4px;
  background: #cbd5e1;
  opacity: 1;
  border-radius: 50%;
  transition: all 0.15s ease;
  margin: 0 2px;
}

.swiper-pagination-bullet-active {
  background: #475569;
  width: 20px;
  border-radius: 2px;
  transform: scale(1);
}

/* Responsive Design */
@media (max-width: 992px) {
  .team-heading {
    font-size: 2.2rem;
  }
  
  .team-description {
    font-size: 0.95rem;
  }
  
  .team-photos-grid {
    gap: 20px;
    padding: 0 15px;
  }
  
  .team-testimonials {
    padding: 16px;
    margin: 0;
  }
  
  .testimonial-item {
    padding: 18px;
  }
}

@media (max-width: 768px) {
  .team-modern {
    padding: 60px 0;
  }
  
  .team-heading {
    font-size: 2rem;
  }
  
  .team-description {
    font-size: 0.9rem;
    padding: 0 20px;
}

  .team-photos-container {
    margin: 40px 0;
  }
  
  .team-photos-grid {
    grid-template-columns: 1fr;
    gap: 16px;
    padding: 0 10px;
  }
  
  .team-testimonials {
    padding: 12px;
    margin: 0;
  }
  
  .testimonial-item {
    padding: 16px;
    margin: 8px 2px;
  }
  
  .testimonial-quote {
    font-size: 0.9rem;
  }
  
  .testimonial-img {
    width: 48px;
    height: 48px;
  }
  
  .testimonial-info h3 {
    font-size: 0.95rem;
  }
  
  .testimonial-info h4 {
    font-size: 0.8rem;
  }
}

@media (max-width: 576px) {
  .team-heading {
    font-size: 1.8rem;
    line-height: 1.3;
  }
  
  .team-description {
    font-size: 0.85rem;
    padding: 0 15px;
  }
  
  .team-testimonials {
    padding: 10px;
  }
  
  .testimonial-item {
    padding: 14px;
    margin: 6px 0;
  }
  
  .testimonial-quote {
    font-size: 0.8rem;
    margin-bottom: 14px;
  }
  
  .testimonial-author {
    gap: 12px;
  }
  
  .testimonial-img {
    width: 44px;
    height: 44px;
  }
  
  .testimonial-info h3 {
    font-size: 0.9rem;
  }
  
  .testimonial-info h4 {
    font-size: 0.75rem;
  }
}

@media (max-width: 480px) {
  .team-modern {
    padding: 50px 0;
  }
  
  .team-photos-grid {
    padding: 0 5px;
  }
  
  .team-testimonials {
    margin: 0 5px;
  }
}

/*--------------------------------------------------------------
# Modern FAQ Section
--------------------------------------------------------------*/
.faq {
  background: #f8fafc;
  padding: 100px 0;
  position: relative;
  overflow: hidden;
}

.faq::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: 
    repeating-linear-gradient(
      0deg,
      transparent 0px,
      transparent 39px,
      rgba(148, 163, 184, 0.03) 39px,
      rgba(148, 163, 184, 0.03) 40px,
      transparent 40px
    ),
    repeating-linear-gradient(
      90deg,
      transparent 0px,
      transparent 39px,
      rgba(148, 163, 184, 0.03) 39px,
      rgba(148, 163, 184, 0.03) 40px,
      transparent 40px
    );
  background-position: 0 0;
  pointer-events: none;
  z-index: 1;
}

.faq .container {
  position: relative;
  z-index: 2;
}

.faq-badge {
  background: linear-gradient(135deg, rgba(99, 102, 241, 0.15), rgba(167, 85, 247, 0.15));
  color: #6366f1;
  padding: 8px 20px;
  border-radius: 50px;
  font-size: 14px;
  font-weight: 600;
  font-family: 'Geist', sans-serif;
  border: 1px solid rgba(99, 102, 241, 0.2);
  display: inline-block;
}

.faq-heading {
  font-family: 'Geist', sans-serif;
  font-size: 2.5rem;
  font-weight: 600;
  line-height: 1.2;
  color: #0f172a;
  margin-bottom: 1.5rem;
}

.faq-description {
  font-family: 'Geist', sans-serif;
  font-size: 1rem;
  color: #64748b;
  line-height: 1.6;
  margin: 0;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.faq-container {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 20px;
}

.faq .faq-list {
  padding: 0;
  margin-top: 60px;
}

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

.faq .faq-list li {
  margin-bottom: 12px;
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 12px;
  overflow: hidden;
  transition: all 0.2s ease;
  position: relative;
}

.faq .faq-list li:hover {
  border-color: #cbd5e1;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

.faq .faq-list a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 24px;
  font-family: "Geist", sans-serif;
  font-size: 0.95rem;
  font-weight: 500;
  color: #1e293b;
  text-decoration: none;
  outline: none;
  cursor: pointer;
  transition: color 0.2s ease;
  margin: 0;
  position: relative;
}

.faq .faq-list a:hover {
  color: #0f172a;
}

.faq .faq-list .icon-help {
  display: none;
}

.faq .faq-list .icon-show,
.faq .faq-list .icon-close {
  font-size: 16px;
  color: #64748b;
  transition: all 0.2s ease;
  flex-shrink: 0;
  margin-left: 16px;
}

.faq .faq-list a:hover .icon-show,
.faq .faq-list a:hover .icon-close {
  color: #475569;
}

.faq .faq-list p {
  margin: 0;
  padding: 0 24px 24px;
  font-family: "Geist", sans-serif;
  font-size: 0.9rem;
  color: #64748b;
  line-height: 1.6;
  border-top: 1px solid #f1f5f9;
}

.faq .faq-list .icon-show {
  display: inline-block;
}

.faq .faq-list .icon-close {
  display: none;
}

.faq .faq-list a.collapsed .icon-show {
  display: none;
}

.faq .faq-list a.collapsed .icon-close {
  display: inline-block;
}

/* Question Text Styling */
.faq .faq-list a .question-text {
  flex: 1;
  font-weight: 500;
  color: #1e293b;
}

/* Answer Styling */
.faq .faq-list .collapse.show + .faq-answer {
  display: block;
}

/* Responsive Design */
@media (max-width: 992px) {
  .faq-heading {
    font-size: 2.2rem;
  }
  
  .faq-description {
    font-size: 0.95rem;
  }
  
  .faq-container {
    padding: 0 15px;
  }
}

@media (max-width: 768px) {
  .faq {
    padding: 60px 0;
  }
  
  .faq-heading {
    font-size: 2rem;
  }
  
  .faq-description {
    font-size: 0.9rem;
    padding: 0 20px;
  }
  
  .faq .faq-list {
    margin-top: 40px;
  }
  
  .faq .faq-list a {
    padding: 18px 20px;
    font-size: 0.9rem;
  }
  
  .faq .faq-list p {
    padding: 0 20px 20px;
    font-size: 0.85rem;
  }
}

@media (max-width: 576px) {
  .faq-heading {
    font-size: 1.8rem;
    line-height: 1.3;
  }
  
  .faq-description {
    font-size: 0.85rem;
    padding: 0 15px;
  }
  
  .faq-container {
    padding: 0 10px;
  }
  
  .faq .faq-list a {
    padding: 16px 18px;
    font-size: 0.85rem;
  }
  
  .faq .faq-list p {
    padding: 0 18px 18px;
    font-size: 0.8rem;
  }
  
  .faq .faq-list .icon-show,
  .faq .faq-list .icon-close {
    font-size: 14px;
    margin-left: 12px;
  }
}

/*--------------------------------------------------------------
# Modern Contact Section
--------------------------------------------------------------*/
.contact {
  background: #ffffff;
  padding: 100px 0;
}

.contact-badge {
  background: linear-gradient(135deg, rgba(99, 102, 241, 0.15), rgba(167, 85, 247, 0.15));
  color: #6366f1;
  padding: 8px 20px;
  border-radius: 50px;
  font-size: 14px;
  font-weight: 600;
  font-family: 'Geist', sans-serif;
  border: 1px solid rgba(99, 102, 241, 0.2);
  display: inline-block;
}

.contact-heading {
  font-family: 'Geist', sans-serif;
  font-size: 2.5rem;
  font-weight: 600;
  line-height: 1.2;
  color: #0f172a;
  margin-bottom: 1rem;
}

.contact-description {
  font-family: 'Geist', sans-serif;
  font-size: 1rem;
  color: #64748b;
  line-height: 1.6;
  margin: 0 auto;
  max-width: 600px;
}

.contact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px;
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 20px;
}

.contact-card {
  background: #ffffff;
  border: 1px solid #f1f5f9;
  border-radius: 16px;
  padding: 28px 20px;
  text-align: center;
  transition: all 0.2s ease;
  position: relative;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

.contact-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
  border-color: #e2e8f0;
}

.contact-icon-container {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
  transition: all 0.2s ease;
}

.contact-icon {
  font-size: 20px;
  color: white;
  transition: all 0.2s ease;
}

/* Instagram Theme */
.contact-card-instagram .contact-icon-container {
  background: #64748b;
}

/* LinkedIn Theme */
.contact-card-linkedin .contact-icon-container {
  background: #64748b;
}

/* Email Theme */
.contact-card-email .contact-icon-container {
  background: #64748b;
}

.contact-title {
  font-family: 'Geist', sans-serif;
  font-size: 1rem;
  font-weight: 500;
  color: #0f172a;
  margin: 0 0 6px 0;
}

.contact-info {
  font-family: 'Geist', sans-serif;
  font-size: 0.85rem;
  color: #64748b;
  margin: 0;
  font-weight: 400;
}

/* Responsive Design */
@media (max-width: 992px) {
  .contact-heading {
    font-size: 2.2rem;
  }
  
  .contact-description {
    font-size: 0.95rem;
  }
  
  .contact-grid {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
    padding: 0 15px;
}

  .contact-card {
    padding: 28px 20px;
  }
  
  .contact-icon-container {
    width: 56px;
    height: 56px;
    margin-bottom: 18px;
  }
  
  .contact-icon {
    font-size: 22px;
  }
}

@media (max-width: 768px) {
  .contact {
    padding: 60px 0;
  }
  
  .contact-heading {
    font-size: 2rem;
  }
  
  .contact-description {
    font-size: 0.9rem;
    padding: 0 20px;
  }
  
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 16px;
    padding: 0 10px;
  }
  
  .contact-card {
    padding: 24px 18px;
  }
  
  .contact-icon-container {
    width: 52px;
    height: 52px;
    margin-bottom: 16px;
  }
  
  .contact-icon {
    font-size: 20px;
  }
  
  .contact-title {
    font-size: 1rem;
    margin-bottom: 6px;
  }
  
  .contact-info {
    font-size: 0.85rem;
  }
}

@media (max-width: 576px) {
  .contact-heading {
    font-size: 1.8rem;
    line-height: 1.3;
  }
  
  .contact-description {
    font-size: 0.85rem;
    padding: 0 15px;
  }
  
  .contact-card {
    padding: 20px 16px;
  }
  
  .contact-icon-container {
    width: 48px;
    height: 48px;
    margin-bottom: 14px;
  }
  
  .contact-icon {
    font-size: 18px;
  }
  
  .contact-title {
    font-size: 0.95rem;
  }
  
  .contact-info {
    font-size: 0.8rem;
  }
}

@media (max-width: 480px) {
  .contact {
    padding: 50px 0;
  }
  
  .contact-grid {
    padding: 0 5px;
  }
  
  .contact-card {
    padding: 18px 14px;
  }
  
  .contact-icon-container {
    width: 44px;
    height: 44px;
    margin-bottom: 12px;
  }
  
  .contact-icon {
  font-size: 16px;
  }
  
  .contact-title {
    font-size: 0.9rem;
  }
  
  .contact-info {
    font-size: 0.75rem;
  }
}

.contact .php-email-form {
  box-shadow: 0 0 30px rgba(214, 215, 216, 0.6);
  padding: 30px;
  background: #fff;
}

.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: 5px;
  box-shadow: none;
  font-size: 14px;
}

.contact .php-email-form input:focus,
.contact .php-email-form textarea:focus {
  border-color: #5846f9;
}

.contact .php-email-form input {
  padding: 10px 15px;
}

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

.contact .php-email-form button[type=submit] {
  background: #5846f9;
  border: 0;
  padding: 10px 24px;
  color: #fff;
  transition: 0.4s;
  border-radius: 5px;
}

.contact .php-email-form button[type=submit]:hover {
  background: #7b27d8;
}

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

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

/*--------------------------------------------------------------
# Breadcrumbs
--------------------------------------------------------------*/
.breadcrumbs {
  padding: 15px 0;
  background: #f2f6f9;
  min-height: 40px;
  margin-top: 85px;
}

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

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

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

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

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

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

  .breadcrumbs ol {
    display: block;
  }

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

.info-box {
  border-radius: 20px;
}

/*--------------------------------------------------------------
# Modern Minimalistic Footer
--------------------------------------------------------------*/
#footer {
  background: #ffffff;
  border-top: 1px solid #f1f5f9;
  padding: 32px 0;
}

#footer .copyright-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 16px;
  text-align: center;
}

#footer .copyright {
  font-family: 'Geist', sans-serif;
  font-size: 14px;
  font-weight: 400;
  color: #64748b;
  margin: 0;
}

#footer .copyright strong {
  color: #0f172a;
  font-weight: 600;
}

#footer .social-links {
  display: flex;
  align-items: center;
  gap: 12px;
}

#footer .social-links a {
  display: flex !important;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  background: #f8fafc;
  border: 1px solid #f1f5f9;
  border-radius: 50%;
  color: #64748b;
  font-size: 16px;
  text-decoration: none;
  transition: all 0.2s ease;
  position: relative !important;
  z-index: 9999 !important;
  pointer-events: auto !important;
  cursor: pointer !important;
}

#footer .social-links a:hover {
  background: #0f172a;
  border-color: #0f172a;
  color: #ffffff;
  transform: translateY(-1px);
}

@media (max-width: 768px) {
  #footer {
    padding: 24px 0;
}

#footer .copyright-wrap {
    gap: 12px;
}

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

#footer .social-links a {
    width: 32px;
    height: 32px;
    font-size: 14px;
    position: relative;
    z-index: 10;
    pointer-events: auto;
  }
}

@media (max-width: 576px) {
  #footer .copyright-wrap {
    flex-direction: column;
    gap: 16px;
  }
}

/* Demo Button Styling */
.btn-demo {
  font-family: "Geist", sans-serif;
  font-weight: 500;
  font-size: 16px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 10px 28px;
  border-radius: 5px;
  transition: 0.5s;
  margin-top: 30px;
  color: #fff;
  border: 2px solid #fff;
}

.btn-demo:hover {
  background: #fff;
  color: #92f8c3;
}

/* Pulse animation for the demo button */
.pulse-animation {
  animation: pulse 2s infinite ease-in-out;
}

@keyframes pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(66, 184, 131, 0.7);
  }
  70% {
    box-shadow: 0 0 0 15px rgba(66, 184, 131, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(66, 184, 131, 0);
  }
}

/* Modern SaaS Hero Button Styles */
.hero-btn-primary:hover {
  background: linear-gradient(135deg, #2563eb 0%, #1d4ed8 100%) !important;
  transform: translateY(-3px) !important;
  box-shadow: 0 16px 40px rgba(59, 130, 246, 0.5) !important;
}

.hero-btn-secondary:hover {
  background: rgba(255, 255, 255, 0.15) !important;
  border-color: rgba(255, 255, 255, 0.4) !important;
  transform: translateY(-2px) !important;
  box-shadow: 0 8px 25px rgba(255, 255, 255, 0.1) !important;
  color: white !important;
}

.hero-btn-primary:active {
  transform: translateY(-1px) !important;
}

.hero-btn-secondary:active {
  transform: translateY(-1px) !important;
}

/* Mobile Optimizations */
@media (max-width: 768px) {
  #hero h1 {
    font-size: 2.2rem !important;
    line-height: 1.2 !important;
    margin-bottom: 1rem !important;
  }
  
  #hero p {
    font-size: 1.1rem !important;
    margin-bottom: 1.5rem !important;
    max-width: 100% !important;
  }
  
  .hero-actions .d-flex {
    flex-direction: column !important;
    gap: 0.8rem !important;
  }
  
  .hero-btn-primary, .hero-btn-secondary {
    padding: 12px 20px !important;
    font-size: 14px !important;
    text-align: center !important;
    width: 100% !important;
    border-radius: 8px !important;
  }
  
  div.hero-stats.d-flex.flex-wrap {
    margin-top: 1.5rem !important;
    justify-content: space-between !important;
    gap: 8px !important;
    display: flex !important;
    flex-direction: row !important;
    flex-wrap: nowrap !important;
    width: 100% !important;
  }
  
  div.hero-stats.d-flex.flex-wrap div.stat-item.d-flex.align-items-center {
    background: rgba(255, 255, 255, 0.08) !important;
    border-radius: 10px !important;
    padding: 12px 8px !important;
    backdrop-filter: blur(20px) !important;
    border: 1px solid rgba(255, 255, 255, 0.1) !important;
    width: 48% !important;
    min-width: 120px !important;
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    text-align: center !important;
  }
  
  div.hero-stats.d-flex.flex-wrap div.stat-item.d-flex.align-items-center > div:first-child {
    margin: 0 0 8px 0 !important;
  }
  
  div.hero-stats.d-flex.flex-wrap div.stat-item.d-flex.align-items-center > div:last-child {
    text-align: center !important;
    width: 100% !important;
  }
  
  div.hero-stats.d-flex.flex-wrap div.stat-item.d-flex.align-items-center > div:last-child > div {
    text-align: center !important;
    line-height: 1.2 !important;
  }
  
  .col-xl-6, .col-xl-4 {
    text-align: center !important;
  }
  
  .hero-img {
    margin-top: 2rem !important;
    max-width: 95% !important;
    margin-left: auto !important;
    margin-right: auto !important;
  }
  
  .hero-img img {
    max-width: 110% !important;
    height: auto !important;
  }
  
  /* Hide floating elements on mobile for cleaner look */
  .hero-img > div > div {
    display: none !important;
  }
  
  .badge {
    font-size: 12px !important;
    padding: 6px 12px !important;
  }
  
  .funding-badge {
    font-size: 12px !important;
    padding: 7px 14px !important;
  }
  
  .funding-badge span {
    font-size: 15px !important;
    font-weight: 800 !important;
  }
}

/* Trust Section Responsive */
@media (max-width: 768px) {
  .trust-section {
    padding: 40px 0 !important;
  }
  
  .funding-card {
    padding: 20px 25px !important;
    margin: 0 15px !important;
  }
  
  .funding-amount {
    flex-direction: column !important;
    gap: 10px !important;
  }
  
  .award-icon {
    width: 50px !important;
    height: 50px !important;
  }
  
  .award-icon i {
    font-size: 24px !important;
  }
  
  .amount-text div:first-child {
    font-size: 2.5rem !important;
  }
  
  .funding-source {
    font-size: 1rem !important;
  }
  
  .trust-content h3 {
    font-size: 1rem !important;
  }
}

@media (max-width: 480px) {
  .funding-card {
    padding: 15px 20px !important;
    margin: 0 10px !important;
  }
  
  .amount-text div:first-child {
    font-size: 2.2rem !important;
  }
  
  .funding-source {
    font-size: 0.8rem !important;
  }
  
  .funding-description {
    font-size: 0.85rem !important;
  }
}

/* Tablet Optimizations (iPads, etc.) - Enhanced for iPad Air 820px to iPad Pro 1024px */
@media (min-width: 769px) and (max-width: 1024px) {
  #hero {
    text-align: center !important;
  }
  
  #hero .container,
  #hero .container-fluid {
    padding-top: 75px !important;
  }
  
  /* Force vertical stacking with image on top */
  #hero .row {
    flex-direction: column !important;
    align-items: center !important;
  }
  
  /* Hero image section - appears first (on top) */
  .hero-img {
    max-width: 95% !important;
    margin: 0 auto 1.5rem !important;
    position: relative !important;
    text-align: center !important;
    order: -1 !important;
  }
  
  .hero-img img {
    max-width: 100% !important;
    height: auto !important;
    transform: scale(1.1) !important;
  }
  
  /* Content section - appears second (below image) */
  .hero-content {
    order: 2 !important;
    margin-top: 0 !important;
    display: flex !important;
    flex-direction: column !important;
  }
  
  /* Ensure proper order within content - Image first, then title, then description */
  #hero h1 {
    order: 1 !important;
  }
  
  #hero p {
    order: 2 !important;
  }
  
  .hero-actions {
    order: 3 !important;
  }
  
  .badge {
    order: 4 !important;
  }
  
  .funding-badge {
    order: 5 !important;
  }
  
  div.hero-stats.d-flex.flex-wrap {
    order: 6 !important;
  }
  
  #hero h1 {
    font-size: 2.8rem !important;
    line-height: 1.3 !important;
    margin-bottom: 1rem !important;
    padding: 0 20px !important;
  }
  
  #hero p {
    font-size: 1.15rem !important;
    margin-bottom: 1.5rem !important;
    padding: 0 30px !important;
    max-width: 700px !important;
    margin-left: auto !important;
    margin-right: auto !important;
    line-height: 1.6 !important;
  }
  
  .hero-btn-primary, .hero-btn-secondary {
    padding: 14px 28px !important;
    font-size: 15px !important;
    min-width: 160px !important;
  }
  
  .hero-actions .d-flex {
    gap: 1rem !important;
    justify-content: center !important;
    flex-wrap: wrap !important;
    margin-bottom: 1.5rem !important;
  }
  
  div.hero-stats.d-flex.flex-wrap {
    margin-top: 1rem !important;
    gap: 1.2rem !important;
    justify-content: center !important;
    padding: 0 15px !important;
    flex-wrap: wrap !important;
  }
  
  div.hero-stats.d-flex.flex-wrap div.stat-item.d-flex.align-items-center {
    width: auto !important;
    min-width: 170px !important;
    padding: 14px 18px !important;
    background: rgba(255, 255, 255, 0.08) !important;
    border-radius: 12px !important;
    border: 1px solid rgba(255, 255, 255, 0.1) !important;
    backdrop-filter: blur(20px) !important;
    margin-bottom: 0.5rem !important;
  }
  
  .badge {
    font-size: 13px !important;
    padding: 8px 16px !important;
    margin-bottom: 0.8rem !important;
  }
  
  .funding-badge {
    font-size: 13px !important;
    padding: 8px 16px !important;
    margin-bottom: 0.8rem !important;
  }
  
  .funding-badge span {
    font-size: 16px !important;
    font-weight: 800 !important;
  }
  
  /* Hide floating elements for tablets */
  .hero-img > div > div {
    display: none !important;
  }
  
  /* Center align all content */
  .col-xl-6, .col-xl-4 {
    text-align: center !important;
    width: 100% !important;
    max-width: 100% !important;
  }
}

/* iPad Mini specific adjustments for 768px */
@media (min-width: 768px) and (max-width: 768px) {
  #hero {
    padding-bottom: 100px !important;
  }
  
  div.hero-stats.d-flex.flex-wrap {
    margin-bottom: 40px !important;
    padding-bottom: 20px !important;
  }
}

@media (max-width: 480px) {
  #hero h1 {
    font-size: 2rem !important;
  }
  
  #hero p {
    font-size: 0.8rem !important;
  }
  
  div.hero-stats.d-flex.flex-wrap {
    gap: 0.6rem !important;
  }
  
  div.hero-stats.d-flex.flex-wrap div.stat-item.d-flex.align-items-center {
    padding: 18px 10px !important;
    text-align: center !important;
  }
  
  div.hero-stats.d-flex.flex-wrap div.stat-item.d-flex.align-items-center > div:last-child {
    text-align: center !important;
    width: 100% !important;
  }
  
  div.hero-stats.d-flex.flex-wrap div.stat-item.d-flex.align-items-center > div:last-child > div:first-child {
    font-size: 13px !important;
    line-height: 1.2 !important;
    text-align: center !important;
  }
  
  div.hero-stats.d-flex.flex-wrap div.stat-item.d-flex.align-items-center > div:last-child > div:last-child {
    font-size: 12px !important;
    line-height: 1.3 !important;
    text-align: center !important;
  }
  
  div.hero-stats.d-flex.flex-wrap div.stat-item.d-flex.align-items-center > div:first-child {
    width: 28px !important;
    height: 28px !important;
    margin: 0 0 6px 0 !important;
  }
  
  div.hero-stats.d-flex.flex-wrap div.stat-item.d-flex.align-items-center > div:first-child i {
    font-size: 12px !important;
  }
}

/*--------------------------------------------------------------
# Modern Values Section
--------------------------------------------------------------*/
.values-modern {
  padding: 100px 0;
  background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
}

.values-badge {
  background: linear-gradient(135deg, rgba(239, 68, 68, 0.1), rgba(220, 38, 127, 0.1));
  color: #ef4444;
  padding: 10px 24px;
  border-radius: 50px;
  font-size: 14px;
  font-weight: 600;
  font-family: 'Geist', sans-serif;
  border: 1px solid rgba(239, 68, 68, 0.2);
  display: inline-block;
}

.values-heading {
  font-family: 'Geist', sans-serif;
  font-size: 2.5rem;
  font-weight: 600;
  line-height: 1.2;
  color: #0f172a;
  margin-bottom: 1.5rem;
}

.values-description {
  font-family: 'Geist', sans-serif;
  font-size: 1rem;
  color: #64748b;
  line-height: 1.6;
  margin: 0;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.value-card {
  background: #ffffff;
  border-radius: 20px;
  padding: 32px 24px;
  text-align: center;
  transition: all 0.4s ease;
  height: 100%;
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(10px);
}

.value-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 50% 0%, rgba(255, 255, 255, 0.1), transparent 70%);
  opacity: 0;
  transition: opacity 0.4s ease;
}

.value-card:hover::before {
  opacity: 1;
}

.value-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.value-gradient {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  opacity: 0;
  transition: opacity 0.4s ease;
  border-radius: 20px 20px 0 0;
}

.value-card:hover .value-gradient {
  opacity: 1;
}

.value-icon {
  width: 64px;
  height: 64px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
  position: relative;
  transition: all 0.4s ease;
}

.value-icon i {
  font-size: 28px;
  transition: all 0.4s ease;
  position: relative;
  z-index: 2;
}

.value-content h4 {
  font-family: 'Geist', sans-serif;
  font-size: 1.1rem;
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 16px;
  letter-spacing: 0.5px;
}

.value-content p {
  font-family: 'Geist', sans-serif;
  font-size: 0.9rem;
  color: #64748b;
  line-height: 1.6;
  margin: 0;
}

/* Blue Theme - Inclusivity */
.value-card-blue .value-icon {
  background: linear-gradient(135deg, #3b82f6, #1d4ed8);
  box-shadow: 0 8px 24px rgba(59, 130, 246, 0.3);
}

.value-card-blue .value-icon i {
  color: white;
}

.value-card-blue .value-gradient {
  background: linear-gradient(90deg, #3b82f6, #1d4ed8);
}

.value-card-blue:hover {
  border-color: rgba(59, 130, 246, 0.2);
}

.value-card-blue:hover .value-icon {
  transform: scale(1.1);
  box-shadow: 0 12px 32px rgba(59, 130, 246, 0.4);
}

/* Orange Theme - Empowerment */
.value-card-orange .value-icon {
  background: linear-gradient(135deg, #f59e0b, #d97706);
  box-shadow: 0 8px 24px rgba(245, 158, 11, 0.3);
}

.value-card-orange .value-icon i {
  color: white;
}

.value-card-orange .value-gradient {
  background: linear-gradient(90deg, #f59e0b, #d97706);
}

.value-card-orange:hover {
  border-color: rgba(245, 158, 11, 0.2);
}

.value-card-orange:hover .value-icon {
  transform: scale(1.1);
  box-shadow: 0 12px 32px rgba(245, 158, 11, 0.4);
}

/* Pink Theme - Equality */
.value-card-pink .value-icon {
  background: linear-gradient(135deg, #ec4899, #be185d);
  box-shadow: 0 8px 24px rgba(236, 72, 153, 0.3);
}

.value-card-pink .value-icon i {
  color: white;
}

.value-card-pink .value-gradient {
  background: linear-gradient(90deg, #ec4899, #be185d);
}

.value-card-pink:hover {
  border-color: rgba(236, 72, 153, 0.2);
}

.value-card-pink:hover .value-icon {
  transform: scale(1.1);
  box-shadow: 0 12px 32px rgba(236, 72, 153, 0.4);
}

/* Yellow Theme - Innovation */
.value-card-yellow .value-icon {
  background: linear-gradient(135deg, #eab308, #ca8a04);
  box-shadow: 0 8px 24px rgba(234, 179, 8, 0.3);
}

.value-card-yellow .value-icon i {
  color: white;
}

.value-card-yellow .value-gradient {
  background: linear-gradient(90deg, #eab308, #ca8a04);
}

.value-card-yellow:hover {
  border-color: rgba(234, 179, 8, 0.2);
}

.value-card-yellow:hover .value-icon {
  transform: scale(1.1);
  box-shadow: 0 12px 32px rgba(234, 179, 8, 0.4);
}

/* Responsive Design */
@media (max-width: 992px) {
  .values-heading {
    font-size: 2.2rem;
  }
  
  .values-description {
    font-size: 0.95rem;
  }
  
  .value-card {
    padding: 28px 20px;
  }
  
  .value-icon {
    width: 56px;
    height: 56px;
    margin-bottom: 20px;
  }
  
  .value-icon i {
    font-size: 24px;
  }
}

@media (max-width: 768px) {
  .values-modern {
    padding: 60px 0;
  }
  
  .values-heading {
    font-size: 2rem;
  }
  
  .values-description {
    font-size: 0.9rem;
    padding: 0 20px;
  }
  
  .value-card {
    padding: 24px 18px;
    margin-bottom: 20px;
  }
  
  .value-icon {
    width: 52px;
    height: 52px;
    margin-bottom: 18px;
  }
  
  .value-icon i {
    font-size: 22px;
  }
  
  .value-content h4 {
    font-size: 1rem;
    margin-bottom: 12px;
  }
  
  .value-content p {
    font-size: 0.85rem;
  }
}

@media (max-width: 576px) {
  .values-heading {
    font-size: 1.8rem;
    line-height: 1.3;
  }
  
  .values-description {
    font-size: 0.85rem;
    padding: 0 15px;
  }
  
  .value-card {
    padding: 20px 16px;
  }
  
  .value-icon {
    width: 48px;
    height: 48px;
    margin-bottom: 16px;
  }
  
  .value-icon i {
    font-size: 20px;
  }
  
  .value-content h4 {
    font-size: 0.95rem;
  }
  
  .value-content p {
    font-size: 0.8rem;
  }
}

@media (max-width: 480px) {
  .values-modern {
    padding: 50px 0;
  }
  
  .value-card {
    margin-bottom: 16px;
  }
  
  .row.g-4 {
    --bs-gutter-x: 1rem;
    --bs-gutter-y: 1rem;
  }
}

/*--------------------------------------------------------------
# Feature Tabs
--------------------------------------------------------------*/
.feature-tab {
  padding: 32px 20px 24px;
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
}

.tab-indicator {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: transparent;
  border-radius: 2px;
  z-index: 2;
  transition: background-color 0.3s ease;
}

/* Hover effect for all tabs */
.feature-tab:hover .tab-indicator {
  background: rgba(59, 130, 246, 0.15) !important;
}

/* Active state overrides hover */
.feature-tab.active-tab .tab-indicator {
  background: #3b82f6 !important;
}

.tab-icon {
  font-size: 20px;
  color: #64748b;
  margin-right: 8px;
  transition: color 0.3s ease;
}

.feature-tab.active-tab .tab-icon {
  color: #3b82f6;
}

.feature-tab h4 {
  font-family: 'Geist', sans-serif;
  font-weight: 500;
  color: #0f172a;
  margin: 0;
  font-size: 0.95rem;
  line-height: 1.3;
}

.feature-tab p {
  font-family: 'Geist', sans-serif;
  color: #64748b;
  margin: 0;
  font-size: 0.85rem;
  line-height: 1.5;
}

.feature-tabs-container {
  position: relative;
}

.feature-tabs-base-line {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: #e2e8f0;
  border-radius: 2px;
  z-index: 1;
}

/* Feature Tabs Responsive */
@media (max-width: 1024px) {
  .feature-tab {
    margin-bottom: 0;
    border-bottom: 1px solid #f1f5f9;
    padding: 24px 16px 20px;
  }
  
  .feature-tab:last-child {
    border-bottom: none;
  }
  
  .feature-tab h4 {
    font-size: 0.9rem;
  }
  
  .feature-tab p {
    font-size: 0.8rem;
  }
}

@media (max-width: 576px) {
  .feature-tab {
    padding: 20px 12px 16px;
  }
  
  .feature-tab h4 {
    font-size: 0.85rem;
  }
  
  .feature-tab p {
    font-size: 0.75rem;
  }
  
  .tab-icon {
    font-size: 18px;
  }
}
