/* ===== CSS CUSTOM PROPERTIES (VARIABLES) ===== */
:root {
  /* Colors */
  --primary-blue: #3498db;
  --primary-blue-dark: #2980b9;
  --primary-gradient: linear-gradient(135deg, #3498db 0%, #2980b9 100%);
  --hero-gradient: linear-gradient(135deg, #47a0ff 0%, #47a0ff 100%);
  --text-primary: #2c3e50;
  --text-secondary: #333;
  --text-light: #475569;
  --text-muted: #64748b;
  --white: #ffffff;
  --white-transparent: rgba(255, 255, 255, 0.737);
  --white-semi: rgba(255, 255, 255, 0.9);
  --success-light: #dcfce7;
  --success-lighter: #bbf7d0;
  --success-color: #16a34a;
  --success-gradient: linear-gradient(135deg, #22c55e, #16a34a);
  --error-light: #fee2e2;
  --error-lighter: #fecaca;
  --error-color: #dc2626;
  --error-gradient: linear-gradient(135deg, #ef4444, #dc2626);
  --blue-light: #e0e7ff;
  --blue-lighter: #f0f4ff;
  --blue-primary: #1e40af;
  --blue-accent: #3b82f6;
  --gray-50: #f8fafc;
  --gray-100: #f1f5f9;
  --gray-200: #e2e8f0;
  --gray-300: #cbd5e1;
  --gray-900: #1e293b;

  /* Spacing */
  --spacing-xs: 0.5rem;
  --spacing-sm: 1rem;
  --spacing-md: 1.5rem;
  --spacing-lg: 2rem;
  --spacing-xl: 2.5rem;
  --spacing-2xl: 3rem;
  --spacing-3xl: 4rem;

  /* Border Radius */
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 16px;
  --radius-xl: 20px;
  --radius-2xl: 25px;
  --radius-full: 50px;

  /* Shadows */
  --shadow-sm: 0 4px 12px rgba(0, 0, 0, 0.05);
  --shadow-md: 0 8px 20px rgba(0, 0, 0, 0.08);
  --shadow-lg: 0 12px 28px rgba(0, 0, 0, 0.12);
  --shadow-xl: 0 20px 40px rgba(0, 0, 0, 0.1);
  --shadow-header: 0 4px 30px rgba(0, 0, 0, 0.1);
  --shadow-header-scrolled: 0 8px 40px rgba(0, 0, 0, 0.15);
  --shadow-cta: 0 8px 25px rgba(52, 152, 219, 0.3);
  --shadow-hero-image: 0 20px 60px rgba(0, 0, 0, 0.2);
  --shadow-mobile: -10px 0 50px rgba(0, 0, 0, 0.1);

  /* Transitions */
  --transition-fast: 0.3s ease;
  --transition-smooth: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-accordion: 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-reveal: 0.8s cubic-bezier(0.4, 0, 0.2, 1);

  /* Typography */
  --font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  --font-size-xs: clamp(0.85rem, 2vw, 0.95rem);
  --font-size-sm: clamp(0.9rem, 2vw, 1rem);
  --font-size-base: clamp(1.1rem, 2.5vw, 1.3rem);
  --font-size-lg: clamp(1.1rem, 3vw, 1.5rem);
  --font-size-xl: clamp(1.8rem, 5vw, 3rem);
  --font-size-2xl: clamp(2rem, 5vw, 3rem);
  --font-size-3xl: clamp(2.5rem, 5vw, 3.5rem);

  /* Layout */
  --container-sm: 1200px;
  --container-md: 1400px;
  --container-lg: 1600px;
  --header-height: 80px;
  --mobile-sidebar-width: 320px;
}

/* ===== RESET & BASE STYLES ===== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-family);
  line-height: 1.6;
  color: var(--text-secondary);
  overflow-x: hidden;
}

/* ===== HEADER & NAVIGATION ===== */
header {
  position: fixed;
  top: 0;
  width: 100%;
  background: var(--white-transparent);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  z-index: 1000;
  padding: var(--spacing-sm) 0;
  transition: all var(--transition-smooth);
  box-shadow: var(--shadow-header);
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

header.scrolled {
  background: rgba(255, 255, 255, 0.98);
  box-shadow: var(--shadow-header-scrolled);
  padding: 0.7rem 0;
}

nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: var(--container-md);
  margin: 0 auto;
  padding: 0 var(--spacing-lg);
  position: relative;
}

.logo {
  display: flex;
  align-items: center;
  z-index: 1001;
}

.logo img {
  height: 45px;
  width: auto;
  max-width: 220px;
  transition: all var(--transition-fast);
}

header.scrolled .logo img {
  height: 38px;
}

.nav-links {
  display: flex;
  list-style: none;
  gap: var(--spacing-xl);
  align-items: center;
  margin: 0;
}

.nav-links li {
  position: relative;
}

.nav-links a {
  text-decoration: none;
  color: var(--text-primary);
  font-weight: 600;
  font-size: 0.95rem;
  transition: all var(--transition-smooth);
  position: relative;
  white-space: nowrap;
  padding: var(--spacing-xs) 0;
  letter-spacing: 0.3px;
}

.nav-links a:hover {
  color: var(--primary-blue);
  transform: translateY(-1px);
}

.nav-links a::before {
  content: "";
  position: absolute;
  width: 0;
  height: 2px;
  bottom: 0;
  left: 50%;
  background: var(--primary-gradient);
  transition: all var(--transition-slow);
  transform: translateX(-50%);
  border-radius: 2px;
}

.nav-links a:hover::before {
  width: 100%;
}

/* ===== DROPDOWN MENU - DESKTOP ===== */
.dropdown {
  position: relative;
}

.dropdown-content {
  position: absolute;
  top: 100%;
  left: 0;
  background: white;
  min-width: 200px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
  display: none;
  flex-direction: column;
  z-index: 100;
  border-radius: 8px;
  padding: 0.5rem 0;
}

.dropdown:hover .dropdown-content {
  display: flex;
}

.dropdown-content a {
  padding: 10px 16px;
  color: #333;
  text-decoration: none;
  transition: 0.3s;
}

.dropdown-content a:hover {
  background-color: #f0f4ff;
}

/* ===== BUTTONS ===== */
.cta-button {
  background: var(--primary-gradient) !important;
  color: var(--white) !important;
  padding: 0.8rem var(--spacing-lg) !important;
  border-radius: var(--radius-full) !important;
  text-decoration: none !important;
  font-weight: 700 !important;
  transition: all var(--transition-smooth) !important;
  box-shadow: var(--shadow-cta) !important;
  border: none !important;
  position: relative !important;
  overflow: hidden !important;
}

.login-btn {
  color: var(--primary-blue) !important;
  font-weight: 700 !important;
  padding: 0.6rem 1.2rem !important;
  border: 2px solid var(--primary-blue) !important;
  border-radius: var(--radius-2xl) !important;
  transition: all var(--transition-fast) !important;
}

.login-btn:hover {
  background: var(--primary-blue) !important;
  color: var(--white) !important;
  transform: translateY(-1px) !important;
}

/* ===== MOBILE MENU ===== */
.mobile-menu-toggle {
  display: none;
  flex-direction: column;
  cursor: pointer;
  padding: var(--spacing-xs);
  z-index: 1002;
  transition: all var(--transition-fast);
}

.mobile-menu-toggle:hover {
  transform: scale(1.1);
}

.mobile-menu-toggle span {
  width: 28px;
  height: 3px;
  background: var(--text-primary);
  margin: 4px 0;
  transition: all var(--transition-smooth);
  border-radius: 3px;
}

.mobile-menu-toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(8px, 8px);
}

.mobile-menu-toggle.active span:nth-child(2) {
  opacity: 0;
  transform: scale(0);
}

.mobile-menu-toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(8px, -8px);
}

.mobile-sidebar {
  position: fixed;
  top: 0;
  right: -100%;
  width: var(--mobile-sidebar-width);
  height: 100vh;
  background: linear-gradient(
    135deg,
    var(--white-transparent) 0%,
    rgba(248, 250, 252, 0.95) 100%
  );
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  z-index: 999;
  transition: right var(--transition-slow);
  padding: var(--spacing-lg);
  padding-top: 100px;
  box-shadow: var(--shadow-mobile);
  border-left: 1px solid rgba(255, 255, 255, 0.2);
  overflow-y: auto;
}

.mobile-sidebar.active {
  right: 0;
}

.mobile-nav-links {
  list-style: none;
  padding: 0;
}

.mobile-nav-links li {
  margin: var(--spacing-sm) 0;
  opacity: 0;
  transform: translateX(50px);
  transition: all var(--transition-fast);
}

.mobile-sidebar.active .mobile-nav-links li {
  opacity: 1;
  transform: translateX(0);
}

/* Staggered animation delays */
.mobile-sidebar.active .mobile-nav-links li:nth-child(1) {
  transition-delay: 0.1s;
}

.mobile-sidebar.active .mobile-nav-links li:nth-child(2) {
  transition-delay: 0.15s;
}

.mobile-sidebar.active .mobile-nav-links li:nth-child(3) {
  transition-delay: 0.2s;
}

.mobile-sidebar.active .mobile-nav-links li:nth-child(4) {
  transition-delay: 0.25s;
}

.mobile-sidebar.active .mobile-nav-links li:nth-child(5) {
  transition-delay: 0.3s;
}

.mobile-sidebar.active .mobile-nav-links li:nth-child(6) {
  transition-delay: 0.35s;
}

.mobile-nav-links a {
  display: block;
  text-decoration: none;
  color: var(--text-primary);
  font-weight: 600;
  font-size: 1.1rem;
  padding: var(--spacing-sm) var(--spacing-md);
  border-radius: 15px;
  transition: all var(--transition-fast);
  position: relative;
  overflow: hidden;
}

.mobile-nav-links a::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: var(--primary-gradient);
  transition: left var(--transition-fast);
  z-index: -1;
}

.mobile-nav-links a:hover::before {
  left: 0;
}

.mobile-nav-links a:hover {
  color: var(--white);
  transform: translateX(10px);
}

/* ===== MOBILE DROPDOWN SPECIFIC STYLES ===== */
.mobile-nav-links .dropdown-toggle {
  position: relative;
  cursor: pointer;
}

.mobile-nav-links .dropdown-toggle::after {
  content: "▼";
  font-size: 0.8rem;
  position: absolute;
  right: 15px;
  top: 50%;
  transform: translateY(-50%);
  transition: transform var(--transition-fast);
}

.mobile-nav-links li.open .dropdown-toggle::after {
  transform: translateY(-50%) rotate(180deg);
}

.mobile-dropdown-content {
  display: none;
  flex-direction: column;
  margin-left: 0;
  margin-top: var(--spacing-xs);
  background: rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  padding: var(--spacing-xs);
  border-left: 3px solid var(--primary-blue);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.mobile-nav-links li.open .mobile-dropdown-content {
  display: flex;
  animation: slideDown 0.3s ease-out;
}

@keyframes slideDown {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.mobile-dropdown-content a {
  font-size: 0.95rem;
  font-weight: 500;
  padding: var(--spacing-xs) var(--spacing-md);
  margin: 2px 0;
  border-radius: 8px;
  color: var(--text-primary);
}

.mobile-dropdown-content a:hover {
  background: rgba(37, 99, 235, 0.1);
  color: var(--primary-blue);
  transform: translateX(5px);
}

.mobile-cta-button {
  background: var(--primary-gradient) !important;
  color: var(--white) !important;
  margin-top: var(--spacing-sm) !important;
}

.mobile-login-btn {
  border: 2px solid var(--primary-blue) !important;
  color: var(--primary-blue) !important;
  background: transparent !important;
}

.overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  z-index: 998;
  opacity: 0;
  visibility: hidden;
  transition: all var(--transition-fast);
}

.overlay.active {
  opacity: 1;
  visibility: visible;
}

/* ===== RESPONSIVE BREAKPOINTS ===== */
@media (max-width: 768px) {
  .nav-links {
    display: none;
  }

  .mobile-menu-toggle {
    display: flex;
  }
}

@media (max-width: 480px) {
  .mobile-sidebar {
    width: 100vw;
    right: -100vw;
  }

  .mobile-sidebar.active {
    right: 0;
  }
}

/* ===== HERO SECTION ===== */
.hero {
  background: var(--hero-gradient);
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding: 120px 0 60px;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grid" width="10" height="10" patternUnits="userSpaceOnUse"><path d="M 10 0 L 0 0 0 10" fill="none" stroke="rgba(255,255,255,0.1)" stroke-width="0.5"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
  animation: float 20s ease-in-out infinite;
}

.hero-container {
  max-width: var(--container-sm);
  margin: 0 auto;
  padding: 0 var(--spacing-lg);
  position: relative;
  z-index: 2;
  width: 100%;
}

.hero-content-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--spacing-3xl);
  align-items: center;
  margin-bottom: var(--spacing-3xl);
}

.hero-image-container {
  order: 2;
}

.hero-image {
  width: 100%;
  height: auto;
  max-width: 600px;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-hero-image);
  animation: slideInUp 1s ease-out;
  border: 3px solid rgba(255, 255, 255, 0.3);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
  will-change: transform, box-shadow;
}

.hero-text-container {
  order: 1;
}

.hero-content h1 {
  font-size: var(--font-size-3xl);
  color: var(--white);
  margin-bottom: var(--spacing-md);
  line-height: 1.2;
  animation: slideInLeft 1s ease-out;
  font-weight: 700;
}

.hero-content p {
  font-size: var(--font-size-base);
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: var(--spacing-lg);
  animation: slideInLeft 1s ease-out 0.2s both;
  line-height: 1.6;
}

/* ===== HERO STATS ===== */
.hero-stats {
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(15px);
  border-radius: var(--radius-2xl);
  padding: var(--spacing-2xl) var(--spacing-lg);
  border: 1px solid rgba(255, 255, 255, 0.3);
  box-shadow: var(--shadow-xl);
  width: 80%;
  margin: 0 auto;
}

.stats-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: var(--spacing-lg);
  max-width: 1000px;
  margin: 0 auto;
}

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

.hero-stat-item:not(:last-child)::after {
  content: "";
  position: absolute;
  right: -1rem;
  top: 50%;
  transform: translateY(-50%);
  width: 1px;
  height: 60px;
  background: rgba(255, 255, 255, 0.3);
}

.hero-stat-number {
  display: block;
  font-size: var(--font-size-2xl);
  font-weight: 700;
  color: var(--white);
  margin-bottom: var(--spacing-xs);
  line-height: 1;
}

.hero-stat-label {
  font-size: var(--font-size-sm);
  color: rgba(255, 255, 255, 0.9);
  font-weight: 500;
  line-height: 1.4;
}

/* ===== COMPARISON SECTION ===== */

/* ===== ANIMATIONS ===== */
@keyframes float {
  0%,
  100% {
    transform: translateY(0px);
  }

  50% {
    transform: translateY(-20px);
  }
}

@keyframes slideInLeft {
  from {
    opacity: 0;
    transform: translateX(-50px);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes slideInUp {
  from {
    opacity: 0;
    transform: translateY(50px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ===== SOLUTIONS SECTION ===== */

.uc-grid {
  margin-top: 40px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
}

.uc-card {
  background: #e8f1fc;
  border: 1px solid #c0daf7;
  border-radius: 12px;
  padding: 25px 20px;
  text-align: left;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 320px;
  transition: all 0.3s ease;
  position: relative;
  border-color: #006cf0;
}

.uc-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.12);
}

.uc-icon {
  font-size: 1.8rem;
  margin-bottom: 12px;
  color: #0d63b7;
}

.uc-card h3 {
  font-size: 1.2rem;
  margin-bottom: 10px;
  color: #002855;
}

.uc-card p {
  font-size: 0.96rem;
  color: #333;
  margin-bottom: auto;
  line-height: 1.5;
}

.uc-card a {
  font-weight: 600;
  font-size: 0.95rem;
  color: #004aad;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  margin-top: 20px;
}

.uc-card a i {
  margin-left: 6px;
  font-size: 0.9rem;
  transition: transform 0.3s ease;
}

.uc-card a:hover i {
  transform: translateX(4px);
}

@media (max-width: 600px) {
  .uc-card {
    padding: 20px 16px;
  }
}

/* ===== SOLUTIONS SECTION ===== */
.solutions-section {
  padding: 20px 0 60px 0;
  position: relative;
  margin-top: 0;
  z-index: 1;
}

.solutions-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(
      circle at 20% 80%,
      rgba(255, 255, 255, 0.08) 0%,
      transparent 50%
    ),
    radial-gradient(
      circle at 80% 20%,
      rgba(255, 255, 255, 0.08) 0%,
      transparent 50%
    );
  pointer-events: none;
}

.solutions-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  position: relative;
  z-index: 1;
}

.solutions-header {
  text-align: center;
  margin-bottom: 50px;
}

.solutions-title {
  font-size: 2.5rem;
  font-weight: 800;
  background: linear-gradient(135deg, #3b82f6 0%, #1d4ed8 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.solution-icon {
  width: 56px;
  height: 56px;
  background: linear-gradient(135deg, #3b82f6, #3b82f6);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  color: white;
  transition: all 0.2s ease;
}

.solution-card:hover .solution-icon {
  transform: scale(1.05);
  box-shadow: 0 6px 15px rgba(74, 144, 226, 0.25);
}

.solution-card h4 {
  font-size: 20px;
  font-weight: 600;
  color: #1a1a1a;
  margin-bottom: 12px;
  line-height: 1.3;
}

.solution-card p {
  font-size: 14px;
  color: #666;
  line-height: 1.5;
  margin-bottom: 18px;
}

.solution-link {
  color: #4a90e2;
  text-decoration: none;
  font-weight: 600;
  font-size: 16px;
  display: inline-flex;
  align-items: center;
  transition: all 0.3s ease;
  position: relative;
}

.solution-link::after {
  content: "";
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 10;
  height: 2px;
  background: #4a90e2;
  transition: width 0.3s ease;
}

.solution-link:hover::after {
  width: 40%;
}

.solution-link:hover {
  color: #357abd;
  transform: translateX(5px);
}

.managing-providers-section {
  padding: 40px 20px;
  background: linear-gradient(135deg, #f8fafc 0%, #ffffff 100%);
}

.managing-providers-container {
  max-width: 1200px;
  margin: 0 auto;
}

.section-header {
  text-align: center;
  margin-bottom: 40px;
}

.section-title {
  font-size: 2rem;
  font-weight: 700;
  color: #1e293b;
  margin-bottom: 10px;
}

.section-subtitle {
  font-size: 2.5rem;
  font-weight: 800;
  background: linear-gradient(135deg, #3b82f6 0%, #1d4ed8 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.content-grid {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 40px;
  align-items: start;
}

.problem-item {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 20px;
  padding: 20px;
  background: rgba(56, 170, 245, 0.08);
  border-radius: 12px;
  border-left: 3px solid #3b82f6;
  transition: all 0.3s ease;
}

.problem-item:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(59, 130, 246, 0.15);
}

.problem-icon {
  width: 45px;
  height: 45px;
  background: linear-gradient(135deg, #3b82f6 0%, #1d4ed8 100%);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.problem-icon svg {
  width: 22px;
  height: 22px;
  color: white;
}

.problem-title {
  font-size: 1.1rem;
  font-weight: 600;
  color: #1e293b;
}

.industries-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 15px;
}

.industry-card {
  background: white;
  border-radius: 12px;
  padding: 20px 15px;
  text-align: center;
  box-shadow: 0 3px 15px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  border: 1px solid #e2e8f0;
}

.industry-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(59, 130, 246, 0.15);
  border-color: #3b82f6;
}

.industry-icon {
  width: 40px;
  height: 40px;
  background: linear-gradient(135deg, #3b82f6 0%, #1d4ed8 100%);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 12px;
}

.industry-icon svg {
  width: 20px;
  height: 20px;
  color: white;
}

.industry-name {
  font-size: 0.9rem;
  font-weight: 600;
  color: #1e293b;
  line-height: 1.3;
}

@media (max-width: 768px) {
  .content-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .industries-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .section-title {
    font-size: 1.8rem;
  }

  .section-subtitle {
    font-size: 2rem;
  }
}

/* Animation for Industry Cards */
/* Common animation setup */
.problem-item,
.industry-card {
  opacity: 0;
  transform: translateY(20px);
  animation: fadeUp 0.6s ease-out forwards;
}

/* Problem item delays */
.problem-item:nth-child(1) {
  animation-delay: 0.7s;
}

.problem-item:nth-child(2) {
  animation-delay: 0.9s;
}

.problem-item:nth-child(3) {
  animation-delay: 1.1s;
}

.problem-item:nth-child(4) {
  animation-delay: 1.3s;
}

/* Industry card delays */
.industry-card:nth-child(1) {
  animation-delay: 0.6s;
}

.industry-card:nth-child(2) {
  animation-delay: 0.7s;
}

.industry-card:nth-child(3) {
  animation-delay: 0.8s;
}

.industry-card:nth-child(4) {
  animation-delay: 0.9s;
}

.industry-card:nth-child(5) {
  animation-delay: 1s;
}

.industry-card:nth-child(6) {
  animation-delay: 1.1s;
}

.industry-card:nth-child(7) {
  animation-delay: 1.2s;
}

.industry-card:nth-child(8) {
  animation-delay: 1.3s;
}

.industry-card:nth-child(9) {
  animation-delay: 1.4s;
}

.industry-card:nth-child(10) {
  animation-delay: 1.5s;
}

.industry-card:nth-child(11) {
  animation-delay: 1.6s;
}

.industry-card:nth-child(12) {
  animation-delay: 1.7s;
}

.industry-card:nth-child(13) {
  animation-delay: 1.8s;
}

.industry-card:nth-child(14) {
  animation-delay: 1.9s;
}

/* Animation Keyframe */
@keyframes fadeUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Only apply animation when in view */
.animate-on-scroll {
  will-change: opacity, transform;
}

.industry-card:hover {
  transform: translateY(-8px) scale(1.05);
  box-shadow: 0 25px 50px rgba(59, 130, 246, 0.2);
  border-color: #3b82f6;
}

.industry-icon {
  width: 50px;
  height: 50px;
  margin: 0 auto 15px;
  color: #3b82f6;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.industry-card:hover .industry-icon {
  transform: scale(1.2);
  color: #1d4ed8;
}

.industry-name {
  font-size: 0.85rem;
  font-weight: 600;
  color: #1e293b;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  line-height: 1.3;
}

/* Special positioning for center card */
.industry-card.center-card {
  grid-column: 2;
  grid-row: 2;
  background: linear-gradient(135deg, #3b82f6 0%, #1d4ed8 100%);
  color: white;
}

.industry-card.center-card .industry-icon {
  color: white;
}

.industry-card.center-card .industry-name {
  color: white;
}

.industry-card.center-card:hover {
  transform: translateY(-8px) scale(1.1);
  box-shadow: 0 25px 50px rgba(59, 130, 246, 0.3);
}

/* compamies section */
/* Companies/Affiliates Section */
.affiliates-section {
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
  padding: 40px 20px;
  margin-bottom: 0;
}

.affiliates-title {
  font-size: 28px;
  color: #2c3e50;
  font-weight: 700;
  text-align: center;
  margin-bottom: 0px;
  position: relative;
}

.affiliates-title::after {
  content: "";
  display: block;
  width: 60px;
  height: 3px;
  background: linear-gradient(45deg, #007bff, #0056b3);
  margin: 10px auto 0;
  border-radius: 2px;
}

.logos-grid-new {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 10px;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
}

.logo-item {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 70px;
  background: white;
  border-radius: 12px;
  padding: 15px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  border: 1px solid rgba(0, 0, 0, 0.05);
}

.logo-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.logo-item img {
  max-width: 100%;
  max-height: 50px;
  width: auto;
  height: auto;
  object-fit: contain;
  filter: grayscale(0.2);
  transition: all 0.3s ease;
}

.logo-item:hover img {
  filter: grayscale(0);
  transform: scale(1.05);
}

/* Enhanced Footer */
.enhanced-footer {
  background: linear-gradient(135deg, #47a0ff 0%, #47a0ff 100%);
  color: #ffffff;
  padding: 50px 0 0 0;
  position: relative;
  overflow: hidden;
}

.enhanced-footer::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, #007bff, transparent);
}

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

.footer-logo {
  margin-bottom: 25px;
}

.footer-logo img {
  height: 40px;
  filter: brightness(0) invert(1);
}

.footer-section h6 {
  color: #ffffff;
  font-weight: 700;
  font-size: 16px;
  margin-bottom: 20px;
  position: relative;
  padding-bottom: 8px;
}

.footer-section h6::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 30px;
  height: 2px;
  background: #007bff;
  border-radius: 1px;
}

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

.footer-links li {
  margin-bottom: 10px;
}

.footer-links a {
  color: #ffffff;
  text-decoration: none;
  font-size: 14px;
  transition: all 0.3s ease;
  display: block;
  padding: 2px 0;
}

.footer-links a:hover {
  color: #007bff;
  transform: translateX(5px);
}

.app-downloads {
  display: flex;
  gap: 15px;
  margin-bottom: 25px;
  justify-content: center;
}

.app-downloads img {
  height: 45px;
  border-radius: 8px;
  transition: transform 0.3s ease;
}

.app-downloads img:hover {
  transform: scale(1.05);
}

.mascot-container {
  text-align: center;
  margin-bottom: 20px;
}

.mascot-container img {
  height: 100%;
  filter: drop-shadow(0 5px 15px rgba(0, 123, 255, 0.3));
}

.footer-divider {
  border: none;
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent,
    rgb(255, 255, 255),
    transparent
  );
  margin: 40px 0 25px 0;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
  padding-bottom: 30px;
}

.footer-legal {
  display: flex;
  flex-wrap: wrap;
  gap: 25px;
  align-items: center;
}

.footer-legal a {
  color: #fdfefe;
  text-decoration: none;
  font-size: 13px;
  transition: color 0.3s ease;
  white-space: nowrap;
}

.footer-legal a:hover {
  color: #007bff;
}

.social-links {
  display: flex;
  gap: 15px;
  align-items: center;
}

.social-links a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
}

.social-links a:hover {
  background: #007bff;
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(0, 123, 255, 0.4);
}

.social-links img {
  height: 20px;
  width: 20px;
  filter: brightness(0) invert(1);
}

/* Responsive Design */
@media (max-width: 768px) {
  .affiliates-section {
    padding: 30px 15px;
  }

  .logos-grid-new {
    grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
    gap: 15px;
  }

  .logo-item {
    height: 60px;
    padding: 10px;
  }

  .enhanced-footer {
    padding: 40px 0 0 0;
  }

  .footer-container {
    padding: 0 15px;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
    gap: 15px;
  }

  .footer-legal {
    justify-content: center;
    gap: 15px;
  }

  .app-downloads {
    flex-direction: column;
    align-items: center;
    gap: 10px;
  }
}

@media (max-width: 576px) {
  .logos-grid-new {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer-legal {
    flex-direction: column;
    gap: 10px;
  }
}

/* INDUSTRIES SECTION */
.trusted-logos {
  position: relative;
  top: -40px;
  /* Reduced overlap */
  z-index: 10;
  text-align: center;
}

.trusted-logos h3 {
  font-size: 28px;
  font-weight: 600;
  margin-bottom: 20px;
  color: #000000;
}

.logo-row {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 40px;
}

.logo-row img {
  background: #fff;
  padding: 10px 25px;
  border-radius: 12px;
  height: 100px;
  object-fit: contain;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
  transition: transform 0.3s ease;
}

.logo-row img:hover {
  transform: scale(1.05);
}

/* smart service section */
.smart-service-tech {
  background-color: #eaf4ff;
}

.gradient-box {
  background: linear-gradient(135deg, #5896ff, #5eb6ff);
  box-shadow: 0 0 30px rgba(0, 0, 0, 0.1);
}

.img-wrapper img {
  border-radius: 1rem;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.container-footer {
  padding: 0px 20px 0px 20px;
}

@media screen and (max-width: 768px) {
  .img-wrapper img {
    width: 100%;
    height: auto;
  }

  .trusted-logos h3 {
    margin-top: 20px;
  }

  .gradient-box {
    background: linear-gradient(135deg, #5896ff, #5eb6ff);
    box-shadow: 0 0 30px rgba(0, 0, 0, 0.1);
  }
}

/* Tablets and small laptops */
@media (max-width: 1024px) {
  .logos-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
  }
}

/* Tablets and phablets */
@media (max-width: 768px) {
  .logos-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }

  .affiliates-section {
    display: grid;
    gap: 30px;
    align-items: center;
  }

  .affiliates-title {
    font-size: 20px;
    margin-bottom: 30px;
  }
}

/* Mobile phones */
@media (max-width: 480px) {
  .logos-grid {
    grid-template-columns: repeat(4, 1fr) !important; /* ✅ Fix here */
    gap: 15px;
  }
}

/* Responsive Design */
@media (max-width: 1024px) {
  .content-grid {
    grid-template-columns: 1fr;
    gap: 60px;
    text-align: center;
  }

  .industries-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
  }

  .section-title {
    font-size: 2rem;
  }

  .section-subtitle {
    font-size: 2.5rem;
  }
}

@media (max-width: 768px) {
  .managing-providers-section {
    padding: 60px 15px;
  }

  .industries-grid {
    grid-template-columns: 1fr;
    max-width: 300px;
    margin: 0 auto;
  }

  .section-title {
    font-size: 1.8rem;
  }

  .section-subtitle {
    font-size: 2rem;
  }

  .problem-item {
    padding: 20px;
    margin-bottom: 25px;
  }

  .problem-icon {
    width: 50px;
    height: 50px;
  }

  .problem-icon svg {
    width: 24px;
    height: 24px;
  }

  .problem-title {
    font-size: 1.1rem;
  }
}

/* CSS Keyframe Animations */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(40px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes slideInLeft {
  from {
    opacity: 0;
    transform: translateX(-60px);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes slideInRight {
  from {
    opacity: 0;
    transform: translateX(60px);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes fadeInScale {
  from {
    opacity: 0;
    transform: translateY(30px) scale(0.9);
  }

  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@keyframes bounce {
  0%,
  20%,
  50%,
  80%,
  100% {
    transform: translateY(0);
  }

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

  60% {
    transform: translateY(-5px);
  }
}

/* ===== RESPONSIVE MEDIA QUERIES ===== */

/* Large Desktop (1200px+) */
@media (min-width: 1200px) {
  .hero-container {
    max-width: var(--container-md);
  }

  .comparison-container {
    max-width: var(--container-lg);
  }
}

/* Desktop/Tablet (max-width: 1024px) */
@media (max-width: 1024px) {
  nav {
    padding: 0 var(--spacing-md);
  }

  .content-grid {
    grid-template-columns: 1fr;
    gap: 60px;
  }

  .industries-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .hero-content-wrapper {
    gap: var(--spacing-2xl);
  }

  .stats-container {
    grid-template-columns: repeat(2, 1fr);
    gap: var(--spacing-lg);
  }

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

/* Tablet (max-width: 768px) */
@media (max-width: 768px) {
  /* Navigation */
  .nav-links {
    display: none;
  }

  .mobile-menu-toggle {
    display: flex;
  }

  nav {
    padding: 0 var(--spacing-sm);
  }

  /* Hero Section */
  .hero {
    padding: 100px 0 40px;
  }

  .hero-content-wrapper {
    grid-template-columns: 1fr;
    gap: var(--spacing-lg);
    text-align: center;
  }

  .hero-image-container {
    order: 1;
  }

  .hero-text-container {
    order: 2;
  }

  .hero-stats {
    display: flex;
    flex-direction: row;
    width: 50%;
  }

  /* Stats */
  .stats-container {
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-md);
  }

  /* Managing Providers */
  .managing-providers-section {
    padding: 60px 20px;
  }

  .section-title {
    font-size: 2rem;
  }

  .section-subtitle {
    font-size: 2.2rem;
  }

  /* Industries & Affiliates */
  .industries-grid {
    grid-template-columns: 1fr;
  }

  .affiliates-grid {
    gap: 30px;
  }

  .affiliate-logo {
    height: 40px;
  }

  /* Solutions Section */
  .solutions-section {
    padding: 60px 0 40px 0;
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 0;
  }

  .solutions-container {
    padding: 0 16px;
  }

  .solutions-title {
    font-size: 32px;
  }

  .solutions-subtitle h3 {
    font-size: 22px;
  }

  .solutions-subtitle p {
    font-size: 15px;
  }

  .solutions-grid {
    grid-template-columns: 1fr;
    gap: 16px;
    margin-bottom: 40px;
  }

  .solution-card {
    padding: 24px 20px;
  }

  .solutions-cta {
    padding: 30px 20px;
  }

  .cta-content {
    flex-direction: column;
    gap: 30px;
    text-align: center;
  }

  .cta-text h3 {
    font-size: 24px;
  }

  .cta-text p {
    font-size: 15px;
  }

  /* Comparison Section */
  .comparison-section {
    padding: var(--spacing-lg) 0;
    background: linear-gradient(
      135deg,
      var(--blue-light) 0%,
      var(--blue-lighter) 100%
    );
  }

  .automation-title {
    color: var(--blue-primary);
    margin-bottom: var(--spacing-lg);
  }

  .comparison-card {
    background: transparent;
    box-shadow: none;
    backdrop-filter: none;
  }

  .comparison-header {
    display: none;
  }

  .comparison-content {
    display: block;
    gap: var(--spacing-md);
  }

  .comparison-side.before {
    border: 2px solid rgba(239, 68, 68, 0.2);
  }

  .comparison-side.after {
    border: 2px solid rgba(34, 197, 94, 0.2);
  }

  .comparison-title {
    margin: 0;
    padding: 1.5rem 1.5rem 0;
    background: transparent;
    border-radius: 16px 16px 0 0;
    font-size: 1rem;
    font-weight: 600;
    display: inline-block;
  }

  .comparison-side.before .comparison-title {
    background: linear-gradient(135deg, #fee2e2, #fecaca);
    color: #dc2626;
    border-radius: 12px;
    padding: 0.75rem 1.5rem;
    margin: 1.5rem 1.5rem 1rem;
  }

  .comparison-side.after .comparison-title {
    background: linear-gradient(135deg, #dcfce7, #bbf7d0);
    color: #16a34a;
    border-radius: 12px;
    padding: 0.75rem 1.5rem;
    margin: 1.5rem 1.5rem 1rem;
  }

  .accordion {
    /* padding: 0 1.5rem 1.5rem; */
    gap: 1rem;
  }

  .accordion-item {
    border: 2px solid #f1f5f9;
    border-radius: 16px;
    background: white;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
  }
}

/* Mobile (max-width: 480px) */
@media (max-width: 480px) {
  /* Navigation */
  nav {
    padding: 0 1rem;
  }

  /* Hero Section */
  .hero-container {
    padding: 0 1rem;
  }

  .hero {
    padding: 80px 0 30px;
  }

  .hero-stats {
    padding: 1.5rem 1rem;
    margin-top: 2rem;
    width: 100%;
  }

  .stats-container {
    grid-template-columns: repeat(4, 1fr);
  }

  /* Problems */
  .problem-item {
    padding: 20px;
    gap: 15px;
  }

  .problem-icon {
    width: 50px;
    height: 50px;
  }

  /* Industry */
  .industry-card {
    padding: 20px;
  }

  /* Solutions */
  .solutions-section {
    padding: 50px 0 30px 0;
  }

  .solutions-title {
    font-size: 28px;
  }

  .solutions-subtitle h3 {
    font-size: 20px;
  }

  .solutions-subtitle p {
    font-size: 14px;
  }

  .solution-card {
    padding: 20px 16px;
  }

  .solution-card h4 {
    font-size: 18px;
  }

  .solution-card p {
    font-size: 13px;
  }

  .cta-text h3 {
    font-size: 22px;
  }

  .cta-text p {
    font-size: 14px;
  }

  /* Comparison */
  .comparison-container {
    padding: 0 1rem;
  }

  .comparison-tab {
    padding: 1.5rem 1rem;
  }

  .comparison-side {
    padding: 1rem;
  }

  .accordion-header {
    padding: 1rem;
  }

  .accordion-title {
    gap: 0.75rem;
  }

  .accordion-icon {
    width: 28px;
    height: 28px;
    font-size: 0.9rem;
  }

  .accordion-body {
    padding: 1rem;
  }
}

/* Extra Small Mobile (max-width: 360px) */
@media (max-width: 360px) {
  .logo img {
    height: 35px;
  }

  .hero-container,
  .comparison-container {
    padding: 0 0.5rem;
  }

  .accordion-title {
    font-size: 0.85rem;
  }

  .accordion-body {
    font-size: 0.85rem;
    padding: 0.75rem;
  }
}

/* ===== SPECIAL MEDIA QUERIES ===== */

/* Landscape Mobile */
@media (max-height: 500px) and (orientation: landscape) {
  .hero {
    min-height: auto;
    padding: 100px 0 40px;
  }

  .hero-content-wrapper {
    margin-bottom: 2rem;
  }

  .hero-stats {
    padding: 2rem;
  }
}

/* High DPI Displays */
@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
  .hero-image {
    image-rendering: -webkit-optimize-contrast;
    image-rendering: optimize-contrast;
  }
}

/* accordion css ------------- */
.accordion-main-container {
  max-width: 1400px;
  margin: 0 auto;
  background: rgba(255, 255, 255, 0.247);
  backdrop-filter: blur(20px);
  border-radius: 20px;
  padding: 2rem;
}

.accordion-icon-xmark {
  color: rgb(255, 160, 160);
}

.accordion-icon-check {
  color: rgb(160, 255, 163);
}

.sync-indicator {
  text-align: center;
  margin-bottom: 2rem;
  padding: 1rem;
  background: var(--hero-gradient);
  border-radius: 10px;
  color: white;
  font-weight: 600;
  opacity: 0;
  transform: translateY(-10px);
  transition: all 0.3s ease;
}

.sync-indicator.active {
  opacity: 1;
  transform: translateY(0);
}

input {
  position: absolute;
  opacity: 0;
  z-index: -1;
}

.accordion-wrapper {
  border-radius: 15px;
  overflow: hidden;
  width: 100%;
  margin: 0 auto;
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.accordion {
  width: 100%;
  overflow: hidden;
  margin-bottom: 2px;
  border-radius: 12px;
  transition: all 0.3s ease;
}

.accordion:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.accordion-label {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.5rem;
  background: var(--hero-gradient);
  font-weight: 500;
  cursor: pointer;
  font-size: 1.1rem;
  transition: all 0.3s ease;
  color: white;
  position: relative;
  overflow: hidden;
}

.accordion-label::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.5s ease;
}

.accordion-label:hover::before {
  left: 100%;
}

.accordion-label:hover {
  transform: translateX(5px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.accordion-icon {
  font-size: 1.2rem;
  transition: transform 0.3s ease;
}

.accordion-content {
  max-height: 0;
  overflow: hidden;
  padding: 0 1.5rem;
  background: white;
  color: #4a5568;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  border-top: 1px solid rgba(0, 0, 0, 0.05);
}

.accordion-content p {
  margin: 0;
  font-size: 1rem;
  line-height: 1.6;
  color: #666;
}

.content-inner {
  padding: 1.5rem 0;
  transform: translateY(-10px);
  opacity: 0;
  transition: all 0.3s ease 0.1s;
}

input:checked + .accordion-label {
  background-image: linear-gradient(to right, #268cf8 0%, #268cf8 100%);
  color: rgb(255, 255, 255);
  transform: translateX(0);
}

input:checked + .accordion-label .accordion-icon {
  transform: rotate(180deg);
}

input:checked ~ .accordion-content {
  max-height: 300px;
  padding: 0 1.5rem;
}

input:checked ~ .accordion-content .content-inner {
  transform: translateY(0);
  opacity: 1;
}

/* Enhanced shadows for active states */
.left input:checked ~ .accordion-label,
.left input:checked ~ .accordion-content {
  box-shadow: 0 20px 40px rgba(120, 216, 155, 0.3);
}

.right input:checked ~ .accordion-label,
.right input:checked ~ .accordion-content {
  box-shadow: 0 20px 40px rgba(231, 100, 100, 0.3);
}

/* Pulse animation for synced items */
@keyframes pulse {
  0% {
    transform: scale(1);
  }

  50% {
    transform: scale(1.02);
  }

  100% {
    transform: scale(1);
  }
}

.synced-pulse {
  animation: pulse 0.6s ease-in-out;
}

/* Enhanced content styling */
.content-enhanced {
  background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
  border-radius: 8px;
  padding: 1rem;
  margin: 0.5rem 0;
  border-left: 4px solid #667eea;
}

/* Responsive improvements */
@media (max-width: 768px) {
  .main-container {
    padding: 1rem;
    margin: 1rem;
  }

  h1 {
    font-size: 2rem;
  }

  .accordion-label {
    padding: 1rem;
    font-size: 1rem;
  }

  .accordion-content {
    padding: 0 1rem;
  }

  input:checked ~ .accordion-content {
    padding: 0 1rem;
  }
}

/* Loading animation */
.accordion-wrapper {
  animation: fadeInUp 0.6s ease-out;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Stagger animation for accordions */
.accordion:nth-child(1) {
  animation-delay: 0.1s;
}

.accordion:nth-child(2) {
  animation-delay: 0.2s;
}

.accordion:nth-child(3) {
  animation-delay: 0.3s;
}

.accordion:nth-child(4) {
  animation-delay: 0.4s;
}

.accordion:nth-child(5) {
  animation-delay: 0.5s;
}

.mobile-responsive {
  display: none;
}

/* for show responsive accordion */
@media (max-width: 480px) {
  .accordion-main-container {
    border: solid 1px rgb(0, 183, 255);
    background-color: #ebf7ff;
  }

  .mobile-responsive {
    display: block;
  }

  .screen {
    display: none;
  }
}

/* --------------------------- */
.features-2 {
  background-image: url("./assets/images/feature-2-image.png");
  background-repeat: no-repeat;
  object-fit: contain;
  background-position: center;
}

.features-2 .feature-item .feature-icon {
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background-color: #97c9ff;
}

.features-2 .feature-item .feature-icon i {
  font-size: 24px;
  color: #0d83fd;
}

.features-2 .feature-item .feature-content h3 {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 10px;
}

.features-2 .feature-item .feature-content p {
  color: 212529;
  font-size: 15px;
  margin-bottom: 0;
}

.features-2 .phone-mockup {
  position: relative;
  padding: 30px 0;
}

.features-2 .phone-mockup img {
  max-width: 300px;
  height: auto;
  filter: drop-shadow(0 5px 15px rgba(0, 0, 0, 0.1));
}

@media (max-width: 991.98px) {
  .features-2 .feature-item {
    text-align: center !important;
    margin-bottom: 2rem;
  }

  .features-2 .feature-item .d-flex {
    flex-direction: column;
    text-align: center;
    justify-content: center !important;
  }

  .features-2 .phone-mockup {
    margin: 3rem 0;
  }
}

/* feature accordion section css-------------------- */
.container {
  width: 100%;
  max-width: 80rem;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.feature-accordion-item {
  border-radius: 0.4rem;
  color: #000;
}

.feature-accordion-item hr {
  border: 1px solid rgba(0, 0, 0, 0.5);
}

.feature-accordion-link {
  font-size: 1.6rem;
  color: rgba(0, 0, 0, 0.8);
  text-decoration: none;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 0;
}

.feature-accordion-link h3 {
  font-weight: 500;
  font-size: 20px;
}

.feature-accordion-link i {
  color: #e7d5ff;
  padding: 0.5rem;
}

.feature-accordion-link ul {
  display: flex;
  align-items: flex-end;
  list-style-type: none;
  margin-left: 25px;
}

.feature-accordion-link li {
  font-size: 10px;
  color: rgba(255, 255, 255, 0.4);
  padding: 0 0 1px 5px;
}

.feature-accordion-link div {
  display: flex;
}

.feature-accordion-link .ion-md-arrow-down {
  display: none;
}

.answer {
  max-height: 0;
  overflow: hidden;
  position: relative;
  transition: max-height 650ms;
}

.answer p {
  color: #000000;
  font-size: 15px;
  padding: 2rem;
}

.feature-accordion-item:hover .answer {
  max-height: 20rem;
}

.feature-accordion-item:hover .feature-accordion-link .ion-md-arrow-forward {
  display: none;
}

.feature-accordion-item:hover .feature-accordion-link .ion-md-arrow-down {
  display: block;
}

/* --- Desktop hover effect --- */
@media (min-width: 768px) {
  .feature-accordion-item:hover .answer {
    max-height: 20rem;
  }

  .feature-accordion-item:hover .feature-accordion-link .ion-md-arrow-forward {
    display: none;
  }

  .feature-accordion-item:hover .feature-accordion-link .ion-md-arrow-down {
    display: block;
  }
}

/* --- Mobile toggle support --- */
.feature-accordion-item.active .answer {
  max-height: 20rem;
}

.feature-accordion-item.active .feature-accordion-link .ion-md-arrow-forward {
  display: none;
}

.feature-accordion-item.active .feature-accordion-link .ion-md-arrow-down {
  display: block;
}
