:root {
  --sidebar-bg: #171717;
  --main-bg: #212121;
  --text-primary: #ececec;
  --text-secondary: #b4b4b4;
  --accent-color: #3d3d3d;
  --sidebar-width: 260px;
  --header-height: 60px;
  --input-bg: #2f2f2f;
  --font-inter: 'Inter', sans-serif;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html,
body {
  font-family: var(--font-inter);
  background-color: var(--main-bg);
  color: var(--text-primary);
  overflow-y: auto;
  overflow-x: hidden;
  height: auto;
  min-height: 100vh;
  width: 100%;
}

html {
  overflow-y: scroll;
  scrollbar-gutter: stable both-edges;
}

@media (max-width: 991.98px) {
  html {
    overflow-y: auto;
    scrollbar-gutter: auto;
  }
}

.app-container {
  display: flex;
  /* min-height: 100vh;
  width: 100vw; */
  flex-direction: column;
}

.icon-btn {
  background: transparent;
  border: none;
  color: var(--text-secondary);
  cursor: pointer;
  padding: 8px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s;
}

/* .icon-btn:hover {
  background-color: var(--accent-color);
  color: var(--text-primary);
} */

/* Main Content Styles */
.main-content {
  flex-grow: 1;
  /* width: 100%;
  height: auto;
  min-height: 100vh; */
  display: flex;
  flex-direction: column;
  /* position: relative; */
  overflow: hidden;
  background-color: #010101;
}

/* .model-selector:hover {
  background-color: var(--accent-color);
} */

/* Background Animation Layering */
.bg-animation {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  opacity: 0.6;
}

#particles {
  width: 100%;
  height: 100%;
}

.circle-wrapper {
  position: absolute;
  inset: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  pointer-events: none;
}

@keyframes spin {
  from {
    transform: rotate(0deg);
  }

  to {
    transform: rotate(360deg);
  }
}

@keyframes spinReverse {
  from {
    transform: rotate(360deg);
  }

  to {
    transform: rotate(0deg);
  }
}

.big-circle {
  width: 420px;
  height: 420px;
  position: absolute;
  border-radius: 50%;
  filter: blur(15px);
  opacity: 0.5;
  background: linear-gradient(230deg, #00f767 15%, rgba(201, 110, 240, 0) 40%, rgba(164, 92, 219, 0) 65%, #00f767 90%);
  animation: spin 14s linear infinite;
}

.small-circle {
  width: 300px;
  height: 300px;
  position: absolute;
  border-radius: 50%;
  filter: blur(30px);
  opacity: 0.9;
  background: linear-gradient(140deg, #00f767 15%, rgba(201, 110, 240, 0) 40%, rgba(164, 92, 219, 0) 65%, #00f767 90%);
  animation: spinReverse 14s linear infinite;
}

/* Custom Header Styles */
.custom-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 30px 40px;
  width: 100%;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1000;
  background-color: transparent;
  border-bottom: 1px solid transparent;
  transition: padding 0.4s cubic-bezier(0.4, 0, 0.2, 1), background-color 0.4s ease, border-color 0.4s ease, backdrop-filter 0.4s ease;
}

.custom-header.sticky {
  background-color: rgba(1, 1, 1, 0.7);
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  padding: 15px 40px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.3);
}

.custom-header a {
  text-decoration: none;
}

.header-left .logo-area {
  display: flex;
  align-items: center;
  gap: 12px;
}

.leaf-logo {
  width: 200px;
  height: auto;
}

.logo-text {
  font-family: 'Inter', sans-serif;
  color: #fff;
  display: flex;
  align-items: center;
  gap: 5px;
}

.logo-text a {
  color: #ffffff;
  text-decoration: none;
}

.ankur-text {
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-style: italic;
  font-size: 22px;
  letter-spacing: -0.5px;
}

.roots-text {
  font-family: 'Poppins', sans-serif;
  font-weight: 400;
  font-size: 22px;
}

.header-right {
  display: flex;
  align-items: center;
  gap: 40px;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 12px;
}

.navbar-expand-lg .navbar-nav .nav-link:hover,
.navbar-expand-lg .navbar-nav .nav-link:focus,
.navbar-expand-lg .navbar-nav .nav-link:active,
.navbar-expand-lg .navbar-nav .nav-link.active {
  color: #ffffff !important;
}

.nav-link {
  color: #e5e5e5;
  text-decoration: none;
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  font-weight: 500;
  transition: color 0.2s;
}

.nav-link:hover,
.nav-link:focus,
.nav-link:focus-visible,
.nav-link:active,
.nav-link.active {
  color: #fff !important;
}

.nav-link.active {
  position: relative;
}

.nav-link.active::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 100%;
  height: 1.5px;
  background-color: #2eb85c;
  border-radius: 2px;
}

.book-call-btn {
  background-color: #2eb85c;
  color: #fff;
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  font-weight: 600;
  text-decoration: none;
  padding: 8px 11px;
  border-radius: 6px;
  transition: background-color 0.2s, transform 0.1s;
}

.book-call-btn:hover {
  background-color: #269e4f;
}

.book-call-btn:active {
  transform: scale(0.98);
}

/* Hero Content Styles */
.hero-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 10;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  width: 100%;
  max-width: 900px;
  padding: 0 20px;
}

.badge-container {
  display: inline-flex;
  align-items: center;
  background-color: #0d0d0dcc;
  border: 1px solid #222;
  padding: 4px 6px;
  border-radius: 99px;
  margin-bottom: 24px;
  gap: 12px;
  backdrop-filter: blur(4px);
}

.badge-new {
  background-color: #2eb85c;
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  padding: 2px 10px;
  border-radius: 12px;
}

.badge-text {
  color: #e5e5e5;
  font-size: 14px;
  font-weight: 500;
  padding-right: 8px;
}

.hero-title {
  font-size: 64px;
  line-height: 1.1;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 16px;
  letter-spacing: -1px;
}

.hero-subtitle {
  font-size: 18px;
  color: #b3b3b3;
  margin-bottom: 40px;
  font-weight: 400;
  max-width: 600px;
}

.hero-buttons {
  display: flex;
  align-items: center;
  gap: 16px;
}

.hero-buttons .btn-primary {
  display: flex;
  align-items: center;
  gap: 8px;
  background-color: #2eb85c47;
  color: #fff;
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  font-weight: 500;
  text-decoration: none;
  padding: 9px 11px;
  border-radius: 8px;
  transition: background-color 0.2s;
  border: 1px solid #ffffff1a;
}

.hero-buttons .btn-primary:hover {
  background-color: #2a4b2f;
}

.hero-buttons .btn-secondary {
  background-color: #2eb85c;
  color: #fff;
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  font-weight: 500;
  text-decoration: none;
  padding: 6px 27px;
  border-radius: 8px;
  border: 1px solid #ffffff1a;
  transition: background-color 0.2s, border-color 0.2s;
}

.hero-buttons .btn-secondary:hover {
  background-color: rgba(255, 255, 255, 0.05);
  border-color: rgba(255, 255, 255, 0.4);
}

.hero-buttons i {
  width: 15px;
  height: 15px;
}

/* Logo Slider Section */
.logo-slider-area {
  position: absolute;
  bottom: 5%;
  /* Adjust vertical position */
  left: 0;
  width: 100%;
  z-index: 10;
  display: flex;
  flex-direction: column;
  align-items: center;
  /* gap: 20px; */
  gap: 10px;
  z-index: 99;
}

.slider-title {
  color: #fff;
  font-size: 14px;
  font-weight: 500;
  text-align: center;
  margin-bottom: 20px;
}

.slider-container {
  width: 700px;
  overflow: hidden;
  position: relative;
  max-width: 1200px;
  /* Mask edges for fade effect */
  mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
  -webkit-mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
}

.slider-track {
  display: flex;
  align-items: center;
  /* gap: 60px; */
  gap: 30px;
  /* Space between logos */
  width: max-content;
  animation: scroll 30s linear infinite;
  will-change: transform;
}

.slide {
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
}

/* Colorize SVGs to white/grey to match theme */
.slide img {
  /* height: 28px; */
  height: 58px;
  width: auto;
  opacity: 0.6;
  filter: grayscale(100%) brightness(200%);
  /* Make logos white/grey */
  transition: opacity 0.3s;
}

.slide img:hover {
  opacity: 1;
}

@keyframes scroll {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-50%);
  }
}

/* Services Section */
.services-section {
  position: relative;
  z-index: 20;
  margin-top: 100vh;
  /* Push below the fixed hero section */
  padding: 184px 20px 0 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  background-color: #010101;
  /* Ensure background covers particles if needed, or transparent to show them */
}

.services-header {
  text-align: center;
  max-width: 800px;
  margin-bottom: 80px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.service-badge {
  background-color: #0d0d0dcc;
  color: #fff;
  border: 1px solid #2d2b2bcc;
  padding: 6px 11px;
  border-radius: 6px;
  font-size: 13px;
  font-weight: 500;
  margin-bottom: 24px;
}

.section-title {
  font-size: 48px;
  font-weight: 700;
  color: #fff;
  line-height: 1.2;
  margin-bottom: 24px;
  letter-spacing: -1px;
}

.section-subtitle {
  font-size: 16px;
  color: #b4b4b4;
  line-height: 1.6;
  max-width: 600px;
}

.services-content {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 80px;
  max-width: 1200px;
  width: 100%;
  padding-bottom: 85px;
}

/* Service Mockup Card */
.square-box {
  width: 440px;
  background-color: #0d0d0dcc;
  border: 1px solid #222;
  padding: 33px;
  border-radius: 24px;
}

.service-image-card {
  width: 100%;
  /* max-width: 440px; */
  background-color: #0d0d0dcc;
  /* border: 1px solid #222; */
  border-radius: 24px;
  padding: 10px;
  /* box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5); */
}

.mockup-header-bar {
  display: flex;
  gap: 20px;
  border-bottom: 1px solid #222;
  padding-bottom: 16px;
  margin-bottom: 16px;
}

.mockup-header-bar .tab {
  font-size: 14px;
  color: #666;
  font-weight: 500;
  cursor: pointer;
}

.mockup-header-bar .tab.active {
  color: #fff;
}

.mockup-list {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.mockup-item {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 8px 0;
  border-bottom: 1px solid #1a1a1a;
}

.mockup-item:last-child {
  border-bottom: none;
}

.item-icon {
  width: 36px;
  height: 36px;
  background-color: #1a1a1a;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #888;
}

.item-icon i {
  width: 18px;
  height: 18px;
}

.item-icon img {
  width: 26px;
  height: 26px;
  object-fit: contain;
}

.item-icon img.seasonal-demand-icon {
  width: 28px;
  height: 28px;
}

.item-details {
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.item-title {
  color: #e5e5e5;
  font-size: 14px;
  font-weight: 500;
}

.item-sub {
  color: #666;
  font-size: 12px;
}

.item-check i {
  width: 18px;
  height: 18px;
  color: #444;
}

.item-check.success i {
  color: #2eb85c;
}

.item-check.error i {
  color: #e55353;
}

.item-check.dim i {
  color: #333;
}

/* Service Text Content */
.service-text-content {
  max-width: 480px;
}

.feature-badge {
  display: inline-block;
  background-color: #0d0d0dcc;
  color: #fff;
  border: 1px solid #2d2b2bcc;
  padding: 4px 11px;
  border-radius: 6px;
  font-size: 13px;
  font-weight: 500;
  margin-bottom: 24px;
}

.service-text-content h3 {
  font-size: 36px;
  color: #fff;
  font-weight: 600;
  margin-bottom: 16px;
  line-height: 1.2;
}

.service-text-content p {
  color: #ccc;
  font-size: 15px;
  line-height: 1.6;
  margin-bottom: 32px;
}

.feature-tags {
  display: flex;
  gap: 12px;
}

.feature-tags .tag {
  background-color: #0d0d0dcc;
  color: #fff;
  border: 1px solid #2d2b2bcc;
  padding: 10px 11px;
  border-radius: 8px;
  font-size: 13px;
  font-weight: 500;
}

/* Responsive adjustments */

/* Process Section */
.process-section {
  position: relative;
  z-index: 20;
  padding: 64px 100px 20px;
  /* padding: 100px 20px; */
  display: flex;
  flex-direction: column;
  align-items: center;
  background-color: #010101;
}

.process-header {
  text-align: center;
  max-width: 800px;
  margin-bottom: 80px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.process-cards {
  display: flex;
  gap: 30px;
  max-width: 1000px;
  width: 100%;
  justify-content: center;
  flex-wrap: wrap;
}

.process-card {
  background-color: #0d0d0dcc;
  border: 1px solid #222;
  border-radius: 20px;
  padding: 30px;
  flex: 1;
  min-width: 320px;
  display: flex;
  flex-direction: column;
}

.step-badge {
  color: #b4b4b4;
  font-size: 12px;
  font-weight: 500;
  margin-bottom: 15px;
  display: inline-block;
  border: 1px solid #333;
  padding: 4px 7px;
  border-radius: 6px;
  width: fit-content;
}

.process-card .card-title {
  font-size: 28px;
  font-weight: 600;
  color: #fff;
  margin-bottom: 12px;
  line-height: 1.2;
}

.process-card .card-desc {
  font-size: 15px;
  color: #b4b4b4;
  margin-bottom: 30px;
  line-height: 1.6;
  max-width: 360px;
}

.card-visual {
  background-color: #050505;
  border: 1px solid #222;
  border-radius: 12px;
  height: 220px;
  width: 100%;
  margin-top: auto;
  position: relative;
  overflow: hidden;
  padding: 20px;
  box-shadow: inset 0 0 20px rgba(0, 0, 0, 0.8);
}

/* Card 1 Visual */
.analysis-container {
  display: flex;
  width: 100%;
  height: 100%;
  gap: 20px;
  align-items: center;
}

.chart-area {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.chart-pie {
  width: 90px;
  height: 90px;
  border-radius: 50%;
  background: conic-gradient(from 0deg, #2d2d2d 0%, #2d2d2d 85%, #2eb85c 85%, #2eb85c 100%);
  position: relative;
  margin-bottom: 15px;
  box-shadow: 0 0 20px #2eb85c4d;
}

.chart-pie::after {
  content: '';
  position: absolute;
  inset: 10px;
  background-color: #050505;
  border-radius: 50%;
}

.analyzing-text {
  font-size: 11px;
  color: #fff;
  font-weight: 500;
}

.check-list {
  flex: 1.2;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.check-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 12px;
  color: #a0a0a0;
  padding: 8px 12px;
  border: 1px solid #1f1f1f;
  border-radius: 6px;
  background: #0f0f0f;
  transition: all 0.3s ease;
}

.check-item:hover {
  border-color: #333;
  background: #151515;
}

.check-item i {
  width: 14px;
  height: 14px;
  color: #666;
}

/* Card 2 Visual - Code */
.code-editor {
  font-family: 'Consolas', 'Monaco', monospace;
  font-size: 12px;
  width: 100%;
  color: #d4d4d4;
  line-height: 1.5;
}

.editor-header {
  display: flex;
  justify-content: flex-end;
  gap: 6px;
  margin-bottom: 15px;
}

.window-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: #333;
}

.code-line {
  display: flex;
  gap: 10px;
  margin-bottom: 2px;
}

.line-num {
  color: #444;
  min-width: 20px;
  text-align: right;
  user-select: none;
}

.cl-blue {
  color: #569cd6;
}

.cl-yellow {
  color: #dcdcaa;
}

.cl-green {
  color: #6a9955;
}

.cl-orange {
  color: #ce9178;
}

.cl-purple {
  color: #c586c0;
}

/* Card 3 Visual - Integration */
.integration-visual {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  width: 100%;
  gap: 30px;
}

.int-node {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}

.int-icon {
  width: 60px;
  height: 60px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #0f0f0f;
  border: 1px solid #222;
  position: relative;
  overflow: hidden;
}

.solution-icon {
  /* background: radial-gradient(circle at center, rgba(139, 92, 246, 0.2) 0%, rgba(0,0,0,0) 70%); */
}

.glow-circle {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background: conic-gradient(from 0deg, transparent 0%, #2eb85c 50%, #2eb85c 100%);
  filter: blur(10px);
  position: absolute;
  opacity: 0.5;
  animation: spin 3s linear infinite;
}

.glow-circle-inner {
  width: 25px;
  height: 25px;
  border-radius: 50%;
  background: #2eb85c;
  box-shadow: 0 0 15px #2eb85c;
  z-index: 2;
}

.stack-icon i {
  width: 28px;
  height: 28px;
  color: #a78bfa;
}

.int-label {
  font-size: 11px;
  color: #888;
  font-weight: 500;
}

.int-connector {
  display: flex;
  flex-direction: column;
  gap: 6px;
  width: 50px;
  opacity: 0.4;
}

.conn-line {
  height: 2px;
  width: 100%;
  background: linear-gradient(90deg, #333 0%, #43ff81 50%, #333 100%);
  border-radius: 2px;
}

/* Card 4 Visual - Optimization */
.opt-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
  width: 100%;
}

.opt-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px;
  background-color: #0d0d0d;
  border: 1px solid #1f1f1f;
  border-radius: 10px;
}

.opt-icon {
  width: 32px;
  height: 32px;
  background-color: #1a1a1a;
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #888;
  flex-shrink: 0;
}

.opt-icon i {
  width: 16px;
  height: 16px;
}

.opt-info {
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.opt-title {
  color: #e5e5e5;
  font-size: 13px;
  font-weight: 500;
}

.opt-sub {
  color: #666;
  font-size: 11px;
}

.opt-status {
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #8b5cf6;
}

.opt-status i {
  width: 16px;
  height: 16px;
}

/* Case Study Section */
.case-study-section {
  position: relative;
  z-index: 20;
  padding: 126px 0 100px 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  background-color: #000;
  width: 100%;
  overflow: hidden;
}

.case-header {
  text-align: center;
  max-width: 800px;
  margin-bottom: 60px;
  padding: 0 20px;
}

.case-header h2 {
  font-size: 48px;
  font-weight: 700;
  color: #fff;
  line-height: 1.1;
  margin-bottom: 24px;
  letter-spacing: -1px;
}

.case-header h2.automation {
  margin-top: 36px;
}

.case-header p {
  font-size: 16px;
  color: #b4b4b4;
}

/* Slider Container */
.case-slider-container {
  width: 100%;
  overflow-x: auto;
  overflow-y: hidden;
  cursor: grab;
  padding: 0;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  -ms-overflow-style: none;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  box-sizing: border-box;
}

.case-slider-container::-webkit-scrollbar {
  display: none;
}

.case-slider-track {
  display: flex;
  gap: 0;
  width: max-content;
}

.case-slide {
  display: flex;
  width: 100vw;
  max-width: 100%;
  flex-shrink: 0;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 60px;
  user-select: none;
  padding: 50px 10vw;
  border-radius: 0;
  box-sizing: border-box;
  scroll-snap-align: center;
  scroll-snap-stop: always;
}

.case-image {
  flex: 1.2;
  height: 400px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.mockup-display {
  position: relative;
  width: 100%;
  height: 100%;
}

.desktop-mockup {
  width: 100%;
  /* height: 85%; */
  height: 100%;
  background: #111;
  border-radius: 12px;
  border: 4px solid #1a1a1a;
  overflow: hidden;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.6);
  position: relative;
  z-index: 1;
}

.desktop-mockup img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.mobile-mockup {
  position: absolute;
  bottom: -10px;
  right: -20px;
  width: 130px;
  height: 260px;
  background: #000;
  border-radius: 24px;
  border: 4px solid #1a1a1a;
  overflow: hidden;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.8);
  z-index: 2;
}

.mobile-mockup img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.mobile-mockup::before {
  content: "";
  position: absolute;
  top: 12px;
  left: 50%;
  transform: translateX(-50%);
  width: 35px;
  height: 4px;
  background: #1a1a1a;
  border-radius: 2px;
  z-index: 3;
}

.case-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-right: 20px;
}

.case-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 18px;
  font-weight: 600;
  color: #fff;
  margin-bottom: 24px;
}

.case-logo i {
  width: 24px;
  height: 24px;
}

.case-quote {
  font-size: 28px;
  font-weight: 600;
  color: #fff;
  line-height: 1.3;
  margin-bottom: 20px;
}

.case-desc {
  font-size: 15px;
  color: #b4b4b4;
  line-height: 1.6;
  margin-bottom: 30px;
}

.impact-list-label {
  font-size: 16px;
  color: #fff;
  margin-bottom: 12px;
  display: block;
}

.impact-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.impact-list li {
  color: #e5e5e5;
  font-size: 14px;
  margin-bottom: 8px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.impact-list li::before {
  content: "•";
  color: #fff;
  font-size: 18px;
  line-height: 1;
}

/* Drag Indicator */
.drag-indicator {
  margin-top: 40px;
  color: #e5e5e5;
  font-size: 14px;
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 12px;
  opacity: 0.8;
}

.drag-indicator i {
  width: 16px;
  height: 16px;
  color: #47c926bf;
}

/* Benefits Section */
.benefits-section {
  position: relative;
  z-index: 20;
  padding: 100px 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  background-color: #000;
  width: 100%;
}

.benefits-header {
  text-align: center;
  max-width: 800px;
  margin-bottom: 80px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  max-width: 1200px;
  width: 100%;
  padding: 0 20px;
}

.benefit-card {
  background-color: #030303;
  /* Deep black, maybe gradient or image as bg? Screenshot has a subtle purple glow at bottom */
  background: radial-gradient(50% 50% at 50% 100%, #20a42a57 0%, #00000000 100%);
  border: 1px solid #1a1a1a;
  border-radius: 16px;
  padding: 30px;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  height: 100%;
  transition: border-color 0.3s, transform 0.3s;
}

.benefit-card:hover {
  border-color: #333;
  transform: translateY(-5px);
}

/* Subtle glow effect at the bottom */
.benefit-card::after {
  content: '';
  position: absolute;
  bottom: -40px;
  left: 50%;
  transform: translateX(-50%);
  width: 80%;
  height: 60px;
  background: radial-gradient(ellipse at center, rgba(139, 92, 246, 0.25) 0%, transparent 70%);
  filter: blur(20px);
  pointer-events: none;
}

.benefit-icon {
  margin-bottom: 20px;
  color: #fff;
  display: flex;
  align-items: center;
}

.benefit-icon i {
  width: 24px;
  height: 24px;
}

.benefit-title {
  color: #fff;
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 12px;
}

.benefit-desc {
  color: #b4b4b4;
  font-size: 14px;
  line-height: 1.6;
}

/* Pricing Section */
.pricing-section {
  position: relative;
  z-index: 20;
  padding: 70px 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  background-color: #000;
  width: 100%;
}

.pricing-header {
  text-align: center;
  max-width: 800px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.pricing-header h2 {
  font-size: 48px;
  font-weight: 700;
  color: #fff;
  line-height: 1.1;
  margin-bottom: 24px;
  letter-spacing: -1px;
}

.pricing-header p {
  font-size: 16px;
  color: #b4b4b4;
  margin-bottom: 40px;
}

.pricing-toggle {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 60px;
}

.toggle-label {
  font-size: 14px;
  font-weight: 500;
  color: #b4b4b4;
  transition: color 0.3s;
}

.toggle-label.active {
  color: #fff;
}

.toggle-switch {
  width: 50px;
  height: 28px;
  background-color: #333;
  border-radius: 99px;
  position: relative;
  cursor: pointer;
  transition: background-color 0.3s;
}

.toggle-switch::after {
  content: '';
  position: absolute;
  top: 4px;
  left: 4px;
  width: 20px;
  height: 20px;
  background-color: #fff;
  border-radius: 50%;
  transition: transform 0.3s;
}

.toggle-switch.active {
  background-color: #2aba66;
}

.toggle-switch.active::after {
  transform: translateX(22px);
}

.pricing-grid {
  display: flex;
  gap: 30px;
  max-width: 1200px;
  width: 100%;
  justify-content: center;
  flex-wrap: wrap;
}

.pricing-card {
  background-color: #030303;
  border: 1px solid #1a1a1a;
  border-radius: 20px;
  padding: 40px 30px;
  flex: 1;
  min-width: 320px;
  max-width: 380px;
  display: flex;
  flex-direction: column;
  position: relative;
  transition: transform 0.3s, border-color 0.3s;
}

.pricing-card.popular {
  border-color: #2aba66;
  background: radial-gradient(50% 50% at 50% 0%, #20a42a57 0%, #00000000 100%);
  box-shadow: 0 0 30px rgba(139, 92, 246, 0.1);
}

.pricing-card:hover {
  transform: translateY(-5px);
  border-color: #333;
}

.pricing-card.popular:hover {
  border-color: #2aba66;
}

.popular-badge {
  position: absolute;
  top: 20px;
  right: 20px;
  background-color: #2aba66;
  color: #fff;
  font-size: 11px;
  font-weight: 600;
  padding: 4px 10px;
  border-radius: 99px;
  border: 1px solid #2aba66;
}

.pricing-card.starter {
  background: radial-gradient(50% 50% at 50% 100%, #20a42a57 0%, #00000000 100%);
}

.plan-icon {
  color: #fff;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 18px;
  font-weight: 600;
}

.plan-icon i {
  width: 20px;
  height: 20px;
  color: #888;
}

.pricing-card.popular .plan-icon i {
  color: #fff;
  /* or purple if needed */
}

.plan-price {
  margin-bottom: 20px;
  display: flex;
  align-items: baseline;
  gap: 4px;
}

.price-amount {
  font-size: 42px;
  font-weight: 700;
  color: #fff;
}

.price-period {
  font-size: 14px;
  color: #888;
}

.plan-desc {
  font-size: 14px;
  color: #b4b4b4;
  line-height: 1.6;
  margin-bottom: 30px;
  min-height: 44px;
  /* Align buttons */
}

.plan-btn {
  width: 100%;
  padding: 12px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 600;
  text-align: center;
  cursor: pointer;
  transition: all 0.2s;
  text-decoration: none;
  margin-bottom: 40px;
  display: block;
}

.plan-btn.btn-outline {
  background: transparent;
  border: 1px solid #333;
  color: #fff;
}

.plan-btn.btn-outline:hover {
  border-color: #fff;
  background-color: #111;
}

.plan-btn.btn-fill {
  background-color: #2aba66;
  border: 1px solid #2aba66;
  color: #fff;
}

.plan-btn.btn-fill:hover {
  background-color: #2aba66;
  border: 1px solid #2aba66;
}

.plan-features-label {
  font-size: 14px;
  color: #fff;
  margin-bottom: 16px;
  display: block;
}

.plan-features {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.plan-features li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  color: #e5e5e5;
  font-size: 13px;
  line-height: 1.4;
}

.plan-features li i {
  width: 16px;
  height: 16px;
  color: #fff;
  flex-shrink: 0;
}

/* Testimonials Section */
.testimonials-section {
  position: relative;
  z-index: 20;
  padding: 100px 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  background-color: #000;
  width: 100%;
}

.testimonials-header {
  text-align: center;
  max-width: 800px;
  margin-bottom: 60px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.testimonials-header h2 {
  font-size: 48px;
  font-weight: 700;
  color: #fff;
  line-height: 1.1;
  margin-bottom: 24px;
  letter-spacing: -1px;
}

.testimonials-header p {
  font-size: 16px;
  color: #b4b4b4;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
  max-width: 1200px;
  width: 100%;
  padding: 0 20px;
}

.testimonial-card {
  background-color: #030303;
  border: 1px solid #1a1a1a;
  border-radius: 16px;
  padding: 40px;
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
  /* For gradient */
}

/* Green gradient at bottom */
.testimonial-card::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(80% 50% at 100% 100%, #20a42a40 0%, transparent 100%);
  pointer-events: none;
}

.star-rating {
  display: flex;
  gap: 4px;
  margin-bottom: 24px;
}

.star-rating svg {
  color: #fff;
  width: 18px;
  height: 18px;
  fill: #fff;
}

.testimonial-quote {
  font-size: 16px;
  color: #e5e5e5;
  line-height: 1.6;
  margin-bottom: 30px;
  position: relative;
  z-index: 2;
}

.user-profile {
  display: flex;
  align-items: center;
  gap: 16px;
  position: relative;
  z-index: 2;
}

.user-img {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid #333;
}

.user-info {
  display: flex;
  flex-direction: column;
}

.user-name {
  font-size: 16px;
  font-weight: 600;
  color: #fff;
}

.user-role {
  font-size: 13px;
  color: #888;
}

/* FAQ Section */
.faq-section {
  position: relative;
  z-index: 20;
  padding: 100px 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  background-color: #010101;
  width: 100%;
  overflow: hidden;
}

.faq-header {
  text-align: center;
  max-width: 800px;
  margin-bottom: 60px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.faq-header h2 {
  font-size: 48px;
  font-weight: 700;
  color: #fff;
  line-height: 1.1;
  margin-bottom: 24px;
  letter-spacing: -1px;
}

.faq-header p {
  font-size: 16px;
  color: #b4b4b4;
}

/* .faq-container {
  width: 100%;
  max-width: 800px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  background-image: linear-gradient(to top left,
      transparent 35%,
      #20a42a57 60%,
      transparent 65%);

} */

.faq-container {
  position: relative;
  width: 100%;
  max-width: 800px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  overflow: hidden;
}

.faq-container::before {
  content: "";
  position: absolute;
  left: 5px;
  right: 5px;
  bottom: 5px;
  /* start from bottom */
  height: 95%;
  /* 👈 control height here */

  background: linear-gradient(to top left,
      transparent 20%,
      #20a42a57 55%,
      transparent 80%);

  filter: blur(80px);
  pointer-events: none;
  z-index: 0;
}

.faq-container>* {
  position: relative;
  z-index: 1;
}

.faq-item {
  background-color: rgba(13, 13, 13, 0.6);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 12px;
  overflow: hidden;
  transition: all 0.3s ease;
  backdrop-filter: blur(8px);
}

.faq-item:hover {
  border-color: rgba(255, 255, 255, 0.1);
  background-color: rgba(20, 20, 20, 0.7);
}

.faq-question {
  padding: 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
  width: 100%;
  background: transparent;
  border: none;
  text-align: left;
}

.faq-question span {
  font-size: 16px;
  font-weight: 500;
  color: #e5e5e5;
}

.faq-question svg {
  color: #888;
  transition: transform 0.3s ease;
  width: 20px;
  height: 20px;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, padding 0.3s ease;
  padding: 0 24px;
}

.faq-answer p {
  font-size: 15px;
  color: #b4b4b4;
  line-height: 1.6;
  margin: 0;
}

/* Active State */
.faq-item.active {
  background-color: rgba(18, 18, 18, 0.8);
  border-color: #2eb85c70;
}

.faq-item.active .faq-question svg {
  transform: rotate(180deg);
  color: #fff;
}

.faq-item.active .faq-answer {
  max-height: 200px;
  /* Arbitrary large height to allow expansion */
  padding-bottom: 24px;
}

/* TOP-LEFT green glow */
.cta-card::before {
  content: "";
  position: absolute;
  top: -20px;
  left: -20px;
  width: 100%;
  height: 35%;
  /* 👈 smaller height */
  background: linear-gradient(to bottom right,
      #20a42a60,
      transparent 75%);
  clip-path: polygon(0 0, 70% 0, 0 70%);
  /* 👈 smaller triangle */
  filter: blur(85px);
  /* 👈 more blur */
  pointer-events: none;
}

/* BOTTOM-RIGHT green glow */
.cta-card::after {
  content: "";
  position: absolute;
  bottom: -20px;
  right: -20px;
  width: 100%;
  height: 35%;
  /* 👈 smaller height */
  background: linear-gradient(to top left,
      #20a42a60,
      transparent 75%);
  clip-path: polygon(100% 100%, 30% 100%, 100% 50%);
  /* 👈 smaller triangle */
  filter: blur(85px);
  /* 👈 more blur */
  pointer-events: none;
}

.cta-content {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.cta-title {
  font-size: 44px;
  font-weight: 700;
  color: #fff;
  line-height: 1.1;
  margin-bottom: 24px;
  letter-spacing: -1px;
  max-width: 800px;
}

.cta-subtitle {
  font-size: 18px;
  color: #b4b4b4;
  margin-bottom: 40px;
}

.cta-btn {
  background-color: #2aba66;
  color: #fff;
  padding: 9px 12px;
  border-radius: 8px;
  font-size: 14px;
  letter-spacing: 0;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  transition: background-color 0.3s ease, transform 0.2s ease;
}

.cta-btn:hover {
  background-color: #2aba66;
  transform: translateY(-2px);
}

.cta-btn i {
  width: 18px;
  height: 18px;
  transition: transform 0.3s;
}

.cta-btn:hover i {
  transform: translate(2px, -2px);
  /* Diagonal arrow movement */
}

/* Footer Section */
.footer-section {
  position: relative;
  z-index: 20;
  background-color: #000;
  width: 100%;
  padding-top: 57px;
  background: radial-gradient(50% 50% at 50% 0%, #20a42a57 0%, #00000000 100%);
}

.footer-top {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px 60px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 40px;
  border-bottom: 1px solid #1a1a1a;
}

.footer-col {
  display: flex;
  flex-direction: column;
}

.footer-col.brand-col {
  max-width: 320px;
}

.footer-logo a {
  display: flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 20px;
  font-weight: 700;
  color: #fff;
  /* margin-bottom: 20px; */
  margin-bottom: 0px;
}

.footer-logo i {
  width: 24px;
  height: 24px;
  fill: #fff;
  /* Assuming lucide icon or similar */
}

.footer-tagline {
  font-size: 12px;
  color: #b4b4b4;
  line-height: 1.6;
  /* margin-bottom: 30px; */
  margin-bottom: 45px;
  padding-left: 55px;
}

.newsletter-label {
  font-size: 14px;
  color: #fff;
  font-weight: 500;
  margin-bottom: 12px;
  display: block;
}

.newsletter-box {
  display: flex;
  align-items: center;
  gap: 8px;
  background-color: #0a0a0a;
  border: 1px solid #1a1a1a;
  padding: 7px;
  border-radius: 8px;
  width: 100%;
}

.newsletter-box:focus {
  border: 1px solid #2aba66;
}

.newsletter-input {
  background: transparent;
  border: none;
  color: #fff;
  font-size: 14px;
  padding: 4px 4px;
  flex: 1;
  outline: none;
}

.newsletter-input::placeholder {
  color: #666;
}

.newsletter-btn {
  background-color: #2aba66;
  color: #fff;
  border: none;
  border-radius: 6px;
  padding: 8px 14px;
  font-size: 12px;
  font-weight: 500;
  cursor: pointer;
  transition: background-color 0.2s;
  white-space: nowrap;
  padding-right: 10px;
}

.newsletter-btn:hover {
  background-color: #2aba66;
}

.footer-heading {
  font-size: 19px;
  color: #fff;
  font-weight: 600;
  margin-bottom: 30px;
  position: relative;
}

.footer-heading::after {
  content: " ";
  position: absolute;
  top: 122%;
  left: 0;
  height: 3px;
  width: 35px;
  background-color: #b4b4b4;
  z-index: 9;
  border-radius: 10px;
}

.footer-heading::before {
  content: " ";
  position: absolute;
  top: 130%;
  left: 0;
  height: 2px;
  width: 100px;
  background-color: #b4b4b4;
}

.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 9px;
}

.footer-links li a {
  text-decoration: none;
  color: #b4b4b4;
  font-size: 14px;
  transition: color 0.2s;
}

.footer-links li a:hover {
  color: #2aba66;
}

.footer-bottom {
  max-width: 1200px;
  margin: 0 auto;
  padding: 19px 13px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
  font-size: 12px;
  color: #888;
}

.footer-credit {
  display: flex;
  gap: 4px;
}

.footer-credit a {
  color: #fff;
  text-decoration: none;
}

.benefits-header h2.business-growth {
  font-size: 48px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 24px;
  margin-top: 24px;
}

.benefits-header p.benefits-content {
  font-size: 16px;
  color: #b4b4b4;
}

/****** Who-we-area-section-area-start ****/
.who-we-are-stats-container {
  max-width: 1200px;
  margin: 0 auto 0;
  padding: 0 67px;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
}

.stat-card {
  background-color: #0d0d0d;
  border: 1px solid #1a1a1a;
  border-radius: 12px;
  padding: 23px 22px;
  position: relative;
  overflow: hidden;
  transition: transform 0.3s ease, border-color 0.3s ease;
  height: 100%;
}

.stat-card::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(80% 50% at 100% 100%, #20a42a40 0%, transparent 100%);
  pointer-events: none;
}

.stat-card:hover {
  transform: translateY(-5px);
  border-color: #333;
}

.stat-icon-wrapper {
  margin-bottom: 25px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
}

.stat-icon-wrapper i {
  width: 28px;
  height: 28px;
  color: #fff;
}

.stat-value {
  color: #fff;
  font-size: 21px;
  font-weight: 600;
  margin-bottom: 15px;
  letter-spacing: -0.5px;
}

.stat-text {
  color: #b4b4b4;
  font-size: 15px;
  line-height: 1.6;
  margin: 0;
  position: relative;
  z-index: 1;
}

/****** Who-we-area-section-area-end ****/

/****** our-values-area-start ****/
.values-grid-container {
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 67px;
  overflow: visible;
  /* To allow glow to show */
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 25px;
  position: relative;
  z-index: 1;
}

.value-card {
  background-color: #0d0d0d;
  border: 1px solid #1a1a1a;
  border-radius: 12px;
  padding: 35px 30px;
  transition: transform 0.3s ease, border-color 0.3s ease;
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.value-card:hover {
  transform: translateY(-5px);
  border-color: #333;
}

.value-card-header {
  display: flex;
  align-items: center;
  gap: 15px;
}

.value-card-header i {
  width: 24px;
  height: 24px;
  color: #fff;
  flex-shrink: 0;
}

.value-title {
  color: #fff;
  font-size: 20px;
  font-weight: 600;
  margin: 0;
  letter-spacing: -0.3px;
}

.value-desc {
  color: #b4b4b4;
  font-size: 15px;
  line-height: 1.6;
  margin: 0;
}

/* Center Glow Effect */
.values-center-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(32, 164, 42, 0.15) 0%, transparent 70%);
  filter: blur(60px);
  pointer-events: none;
  z-index: 0;
}

/****** our-values-area-end ****/

/****** why-us-area-start ****/
.why-comparison-container {
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 20px;
}

.comparison-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
}

.comparison-card.automation {
  border-color: #2aba66;
  background: radial-gradient(50% 50% at 50% 0%, #20a42a57 0%, #00000000 100%);
  box-shadow: 0 0 30px rgba(139, 92, 246, 0.1);
}

.comparison-card {
  background-color: #0d0d0d;
  border: 1px solid #1a1a1a;
  border-radius: 12px;
  padding: 40px;
  position: relative;
  overflow: hidden;
  height: 100%;
}

.comparison-card .card-title {
  color: #fff;
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 35px;
  letter-spacing: -0.5px;
}

.comparison-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.comparison-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  color: #fff;
  font-size: 15px;
  font-weight: 400;
}

.comparison-list li i {
  width: 18px;
  height: 18px;
  opacity: 0.8;
}

/****** why-us-area-end ****/

/****** about-page-team-area-start ****/
.team-grid-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 67px;
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
}

.team-card {
  background-color: #0d0d0d;
  border: 1px solid #1a1a1a;
  border-radius: 12px;
  padding: 12px;
  transition: transform 0.3s ease, border-color 0.3s ease;
  height: 100%;
}

.team-card:hover {
  transform: translateY(-5px);
  border-color: #333;
}

.team-image-wrapper {
  position: relative;
  width: 100%;
  aspect-ratio: 1 / 1.1;
  border-radius: 8px;
  overflow: hidden;
  margin-bottom: 20px;
  background-color: #000;
}

.team-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.team-info {
  padding: 0 8px 15px;
}

.team-name-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 5px;
}

.team-name {
  color: #fff;
  font-size: 21px;
  font-weight: 600;
  margin: 0;
  letter-spacing: -0.5px;
}

.linkedin-link {
  color: #fff;
  opacity: 0.8;
  transition: opacity 0.3s ease;
  display: flex;
  align-items: center;
  text-decoration: none;
}

.linkedin-link:hover {
  opacity: 1;
}

.linkedin-link i {
  width: 20px;
  height: 20px;
}

.team-role {
  color: #888;
  font-size: 14px;
  margin: 0;
  font-weight: 500;
}

/****** about-page-team-area-end ****/

/****** blog-section-start ****/

.container-blog {
  max-width: 1200px;
  margin: 0 auto;
  padding-bottom: 100px;
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
  width: 100%;
}

.blog-card {
  background-color: #0d0d0d;
  border: 1px solid #1a1a1a;
  border-radius: 24px;
  padding: 20px;
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.blog-card:hover {
  border-color: #333;
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.blog-card-img {
  width: 100%;
  aspect-ratio: 16 / 10;
  border-radius: 16px;
  overflow: hidden;
  background-color: #111;
}

.blog-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.blog-card:hover .blog-card-img img {
  transform: scale(1.05);
}

.blog-card-content {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 0 10px 10px;
}

.blog-tag {
  display: inline-block;
  background-color: #0d0d0d;
  color: #fff;
  font-size: 11px;
  font-weight: 600;
  padding: 4px 10px;
  border-radius: 6px;
  width: fit-content;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  border: 1px solid #333;
}

.blog-title {
  color: #fff;
  font-size: 22px;
  font-weight: 600;
  line-height: 1.4;
  margin: 0;
  letter-spacing: -0.5px;
}

.blog-card a {
  text-decoration: none;
}

/****** blog-section-end ****/

/****** blog-details-start ****/

.blog-details-container {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 20px 100px;
}

.breadcrumb-area {
  margin-bottom: 40px;
}

.breadcrumb-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #b4b4b4;
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  transition: color 0.3s ease;
}

.breadcrumb-link:hover {
  color: #fff;
}

.breadcrumb-link i {
  width: 16px;
  height: 16px;
}

.article-header {
  margin-bottom: 50px;
}

.article-meta {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 24px;
}

.article-category {
  background-color: #0d0d0d;
  color: #fff;
  font-size: 11px;
  font-weight: 600;
  padding: 4px 10px;
  border-radius: 6px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  border: 1px solid #333;
}

.article-date {
  color: #666;
  font-size: 13px;
  font-weight: 500;
}

.article-title {
  font-size: 48px;
  font-weight: 700;
  color: #fff;
  line-height: 1.2;
  margin-bottom: 24px;
  letter-spacing: -1px;
}

.article-description {
  font-size: 16px;
  color: #b4b4b4;
  line-height: 1.7;
  margin: 0;
}

.article-featured-image {
  width: 100%;
  aspect-ratio: 16 / 9;
  border-radius: 20px;
  overflow: hidden;
  margin-bottom: 60px;
  background-color: #0d0d0d;
}

.article-featured-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.article-content {
  color: #e5e5e5;
}

.article-content h2 {
  font-size: 28px;
  font-weight: 600;
  color: #fff;
  margin-top: 48px;
  margin-bottom: 20px;
  line-height: 1.3;
  letter-spacing: -0.5px;
}

.article-content h2:first-child {
  margin-top: 0;
}

.article-content p {
  font-size: 16px;
  line-height: 1.8;
  color: #b4b4b4;
  margin-bottom: 24px;
}

.article-list {
  list-style: none;
  padding: 0;
  margin: 32px 0;
}

.article-list li {
  position: relative;
  padding-left: 32px;
  margin-bottom: 24px;
  font-size: 15px;
  line-height: 1.7;
  color: #b4b4b4;
}

.article-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 8px;
  width: 6px;
  height: 6px;
  background-color: #2eb85c;
  border-radius: 50%;
}

.article-list li strong {
  color: #fff;
  font-weight: 600;
  display: block;
  margin-bottom: 4px;
}

/****** blog-details-end ****/

/****** contact-page-start ****/
.contact-container {
  max-width: 700px;
  margin: 0 auto;
  padding: 0 20px 100px;
}

.contact-header {
  text-align: center;
  margin-bottom: 50px;
}

.contact-title {
  font-size: 48px;
  font-weight: 700;
  color: #fff;
  line-height: 1.2;
  margin-bottom: 20px;
  margin-top: 28px;
  letter-spacing: -1px;
}

.contact-subtitle {
  font-size: 16px;
  color: #b4b4b4;
  line-height: 1.6;
  max-width: 600px;
  margin: 0 auto;
}

.contact-info-cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-bottom: 50px;
}

.contact-info-card-single {
  background-color: #0d0d0d;
  border: 1px solid #1a1a1a;
  border-radius: 12px;
  padding: 24px 21px;
  transition: all 0.3s ease;
}

.contact-info-card:hover {
  border-color: #333;
  transform: translateY(-2px);
}

.contact-card-content {
  display: flex;
  align-items: center;
  gap: 14px;
}

.contact-card-icon {
  width: 20px;
  height: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact-card-icon i {
  width: 20px;
  height: 20px;
  color: #fff;
}

.contact-card-text h3 {
  font-size: 13px;
  font-weight: 600;
  color: #fff;
  margin: 0 0 2px 0;
}

.contact-card-text p {
  font-size: 13px;
  color: #b4b4b4;
  margin: 0;
}

.contact-form-container {
  background-color: #0d0d0d;
  border: 1px solid #1a1a1a;
  border-radius: 20px;
  padding: 24px;
}

.form-row {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-bottom: 20px;
}

.form-group {
  display: flex;
  flex-direction: column;
  margin-bottom: 20px;
}

.form-group:last-child {
  margin-bottom: 0;
}

.form-group label {
  font-size: 14px;
  font-weight: 500;
  color: #fff;
  margin-bottom: 10px;
}

.form-group input,
.form-group textarea {
  background-color: #1a1a1a;
  border: 1px solid #2a2a2a;
  border-radius: 10px;
  padding: 14px 16px;
  font-size: 14px;
  color: #fff;
  font-family: 'Inter', sans-serif;
  transition: all 0.3s ease;
  outline: none;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: #666;
}

.form-group input:focus,
.form-group textarea:focus {
  border-color: #2eb85c;
  background-color: #222;
}

.form-group textarea {
  resize: vertical;
  min-height: 120px;
}

.contact-submit-btn {
  width: 100%;
  background: linear-gradient(135deg, #2aba66 0%, #088a3e 100%);
  color: #fff;
  border: none;
  border-radius: 10px;
  padding: 12px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  margin-top: 10px;
  font-family: 'Inter', sans-serif;
}

.contact-submit-btn:hover {
  background: linear-gradient(135deg, #2aba66 0%, #088a3e 100%);
  transform: translateY(-2px);
  box-shadow: 0 10px 25px #2aba6647;
}

.contact-submit-btn:active {
  transform: translateY(0);
}

.contact-form-container .form-group {
  margin-bottom: 10px;
}

.contact-form-container .form-group input {
  height: 41px;
  border-radius: 6px;
}

/****** contact-page-end ****/

/****** error-page-start ****/
.error-page-section {
  min-height: 60vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #000;
}

.error-container {
  max-width: 800px;
  margin-bottom: 75px;
}

.error-badge {
  background-color: #0d0d0d;
  color: #fff;
  font-size: 11px;
  font-weight: 600;
  padding: 7px 12px;
  border-radius: 6px;
  border: 1px solid #1a1a1a;
  letter-spacing: 0.5px;
}

.error-title {
  font-size: 47px;
  font-weight: 700;
  color: #fff;
  margin: 32px 0 24px;
  letter-spacing: -2px;
  line-height: 1.1;
}

.error-subtitle {
  font-size: 15px;
  color: #888;
  max-width: 500px;
  margin: 0 auto 40px;
  line-height: 1.6;
}

.error-home-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #2aba66;
  color: #fff;
  padding: 8px 18px;
  border-radius: 8px;
  font-weight: 600;
  font-size: 13px;
  text-decoration: none;
  transition: all 0.3s ease;
}

.error-home-btn:hover {
  background: #2aba66;
  transform: translateY(-2px);
  color: #fff;
}

.error-home-btn i {
  width: 18px;
  height: 18px;
}

/* Login Modal Styles */
.login-modal .modal-content {
  background-color: #121619;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.login-label {
  color: #fff;
  font-weight: 500;
  font-size: 15px;
}

.login-input-group {
  background-color: #1d2226;
  border-radius: 4px;
  overflow: hidden;
  border: 1px solid #2d3338;
  transition: all 0.3s;
}

.login-input-group.field-error {
  border-color: #e55353;
}

.login-input-group .input-group-text {
  background-color: transparent !important;
  border: none !important;
  color: #8a8d91 !important;
  padding: 12px 15px !important;
}

.input-divider {
  width: 1px;
  background-color: #3d4348;
  margin: 10px 0;
}

.login-input {
  background-color: transparent !important;
  border: none !important;
  color: #fff !important;
  padding: 12px 15px !important;
  box-shadow: none !important;
  font-size: 14px;
}

.login-input::placeholder {
  color: #5c6269;
}

.login-input-group select.login-input {
  color: #fff !important;
  background-color: transparent !important;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
}

.login-input-group select.login-input:required:invalid {
  color: #5c6269 !important;
}

.login-input-group select.login-input option[value=""] {
  color: #5c6269;
}

.login-input-group select.login-input option:not([value=""]) {
  color: #fff;
}

.login-input-group select.login-input option {
  background-color: #121619;
  color: #fff;
}

.login-checkbox {
  background-color: transparent;
  border: 1px solid #4a4d51;
  cursor: pointer;
}

.login-checkbox:checked {
  background-color: #2eb85c;
  border-color: #2eb85c;
}

.btn-login-submit {
  background-color: #2eb85c;
  color: #fff;
  border: none;
  padding: 12px;
  font-weight: 600;
  border-radius: 8px;
  transition: background-color 0.3s;
  margin-top: 10px;
}

.btn-login-submit:hover {
  background-color: #2eb85c;
  color: #fff;
}

.toggle-password {
  cursor: pointer;
}

.toggle-password:hover {
  color: #fff !important;
}

.forgot-link:hover {
  color: #ccc !important;
}

.validation-error {
  color: #ff8f8f;
  font-size: 12px;
  line-height: 1.35;
  margin-top: 8px;
}


/****** error-page-end ****/

/* Login Modal Side Area Glassmorphism (Backdrop) */
.modal-backdrop.show {
  background-color: rgba(255, 255, 255, 0.05) !important;
  backdrop-filter: blur(30px) saturate(180%) !important;
  -webkit-backdrop-filter: blur(30px) saturate(180%) !important;
}

.login-modal .modal-content {
  border: 1px solid rgba(255, 255, 255, 0.1) !important;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
}



/* ---------scroll-to-top-area-start--------- */
#scroll-top .scrollTop {
  position: fixed;
  right: max(16px, env(safe-area-inset-right));
  bottom: 29px;
  background: linear-gradient(to right, #2eb85c, #1a9e47);
  opacity: 0;
  transition: all 0.4s ease-in-out 0s;
  height: 50px;
  width: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  z-index: 1001;
  cursor: pointer;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

#scroll-top .scrollTop span a {
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
}

#scroll-top .scrollTop span a i {
  width: 20px;
  height: 20px;
  stroke-width: 2.5px;
}

/* ---------scroll-to-top-area-end--------- */
