* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  background-color: #ffffff;
  font-family: "Space Grotesk", sans-serif;
}

/* header container */
.header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 40px;
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
  gap: 20px;
}

.header-left {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}

.logo {
  max-width: 180px;
  width: 100%;
  height: auto;
}

/* nav menu center */
.header-center {
  display: flex;
  align-items: center;
  flex: 1;
  justify-content: center;
}

.header-center .menu {
  display: flex;
  list-style: none;
  gap: 30px;
  font-size: 16px;
  color: #000000;
  margin: 0;
  padding: 0;
  align-items: center;
}

/* header right for button */
.header-right {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}

/* Hide button in navigation on desktop */
.header-center .button-nav {
  display: none;
}

.header-center .menu .menu-item {
  cursor: pointer;
  font-size: 18px;
  line-height: 24px;
  white-space: nowrap;
}

.header-center .menu .menu-item a {
  text-decoration: none;
  color: inherit; /* inherits black */
  position: relative; /* needed for ::after underline */
}

.header-center .menu .menu-item a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -3px; /* little space below text */
  width: 0;
  height: 2px;
  background-color: #000;
  transition: width 0.3s ease; /* smooth animation */
}

.header-center .menu .menu-item a:hover::after {
  width: 100%;
}

/* nav button */
.button-nav {
  border: 1px solid #000000;
  border-radius: 15px;
  background-color: #ffffff;
  padding: 12px 20px;
  font-size: 16px;
  line-height: 20px;
  cursor: pointer;
  flex-shrink: 0;
  white-space: nowrap;
}

.button-nav:hover {
  background-color: #000000;
  color: #ffffff;
}

/* hero container */
.hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px;
  gap: 40px;
  align-items: center;
  min-height: 400px;
}

.hero-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  gap: 20px;
  max-width: 531px;
}

.hero-content h1 {
  font-size: 60px;
  line-height: 70px;
  max-width: 502px;
  margin-bottom: 17px;
}

.hero-content p {
  font-size: 20px;
  line-height: 28px;
  max-width: 501px;
  margin-bottom: 17px;
}

.button-hero {
  border: 1px solid #000000;
  border-radius: 15px;
  background-color: #000000;
  color: #ffffff;
  padding: 15px 25px;
  font-size: 20px;
  font-weight: 400;
  line-height: 28px;
  cursor: pointer;
  width: 264px;
  height: 68px;
  margin-bottom: 17px;
}

.button-hero:hover {
  background-color: #ffffff;
  color: #000000;
}

.hero-image {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0;
}

.hero-image img {
  max-width: 600px;
  width: 100%;
  height: auto;
}

.hero-image svg {
  max-width: 100%;
  height: auto;
  width: 400px;
}

/* company logo container */
.company-logo {
  display: flex;
  justify-content: space-evenly;
  align-items: center;
  padding: 20px 40px;
  max-width: 1200px;
  margin: 0 auto;
  gap: 20px;
}

/* Section Padding */
.section-padding {
  padding: 80px 0;
}

.content-section {
  max-width: 1200px;
  margin: 60px auto;
  padding: 0 40px;
}

.section-title {
  font-size: 40px;
  margin-bottom: 40px;
  text-align: center;
}

/* About Section Styles */
.story-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}

.story-text {
  font-size: 18px;
  line-height: 26px;
  margin-bottom: 20px;
}

.stats-card {
  text-align: center;
}

.stat-item {
  background-color: #f8f8f8;
  padding: 40px;
  border-radius: 15px;
}

.stat-number {
  font-size: 48px;
  color: #000;
  margin-bottom: 10px;
}

.stat-label {
  font-size: 20px;
}

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

.value-card {
  background: #ffffff;
  padding: 30px;
  border-radius: 15px;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
  min-height: 320px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12), 0 4px 10px rgba(0, 0, 0, 0.08);
  border: 1px solid rgba(0, 0, 0, 0.05);
}

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

.value-icon {
  font-size: 48px;
  margin-bottom: 20px;
  display: block;
}

.value-card h3 {
  font-size: 24px;
  margin-bottom: 15px;
  color: #000000;
}

.value-card p {
  color: #666;
  line-height: 1.6;
  margin-bottom: 20px;
  flex-grow: 1;
}

.value-list {
  list-style: none;
  padding: 0;
  margin: 0;
  text-align: left;
  width: 100%;
}

.value-list li {
  color: #333;
  padding: 8px 0;
  border-bottom: 1px solid #e0e0e0;
  position: relative;
  padding-left: 20px;
}

.value-list li:last-child {
  border-bottom: none;
}

.value-list li:before {
  content: "✓";
  color: #B9FF66;
  font-weight: bold;
  position: absolute;
  left: 0;
}

/* Services Section Styles */
.services-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
}

.service-card {
  padding: 40px;
  border-radius: 15px;
  border: 1px solid #000;
}

.service-card-light {
  background-color: #f8f8f8;
}

.service-card-green {
  background-color: #B9FF66;
}

.service-card-dark {
  background-color: #1a1a1a;
  color: #ffffff;
  border: 1px solid #333;
}

.service-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 20px;
}

.service-title {
  padding: 5px 10px;
  border-radius: 7px;
  font-size: 30px;
  font-weight: 500;
}

.service-title-green {
  background-color: #B9FF66;
  color: #000000;
  font-weight: 600;
  text-shadow: none;
}

.service-title-white {
  background-color: #fff;
}

.service-arrow {
  background-color: #000;
  color: white;
  border: none;
  border-radius: 50%;
  width: 41px;
  height: 41px;
  cursor: pointer;
}

.service-arrow-green {
  background-color: #B9FF66;
  color: black;
}

.service-arrow-white {
  background-color: #fff;
  color: black;
}

.service-description {
  font-size: 18px;
  line-height: 23px;
}

.service-description-light {
  color: #ffffff;
  font-weight: 400;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
  opacity: 0.95;
}

.cta-section {
  max-width: 1200px;
  margin: 60px auto;
  padding: 40px;
  text-align: center;
  background-color: #f8f8f8;
  border-radius: 15px;
}

.cta-section h2 {
  font-size: 36px;
  margin-bottom: 20px;
}

.cta-section p {
  font-size: 20px;
  margin-bottom: 30px;
}

.cta-section-green {
  background-color: #B9FF66;
}

/* Use Cases Section Styles */
.case-study {
  padding: 50px;
  border-radius: 45px;
  margin-bottom: 40px;
}

.case-study-dark {
  background-color: #000;
  color: white;
}

.case-study-green {
  background-color: #B9FF66;
}

.case-study-light {
  background-color: #f8f8f8;
  border: 1px solid #000;
}

.case-study-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}

.case-study h3 {
  font-size: 30px;
  margin-bottom: 20px;
}

.case-study-description {
  font-size: 18px;
  line-height: 26px;
  margin-bottom: 20px;
}

.case-study-stats {
  display: flex;
  gap: 40px;
  margin-bottom: 20px;
}

.stat-highlight {
  color: #B9FF66;
  font-size: 24px;
}

.stat-highlight-dark {
  color: #000;
  font-size: 24px;
}

.case-study-btn {
  border: none;
  padding: 15px 25px;
  border-radius: 15px;
  cursor: pointer;
}

.case-study-btn-green {
  background-color: #B9FF66;
  color: black;
}

.case-study-btn-dark {
  background-color: #000;
  color: white;
}

.case-study-timeline {
  text-align: center;
}

.timeline-card {
  padding: 30px;
  border-radius: 15px;
}

.timeline-card-green {
  background-color: #B9FF66;
  color: black;
}

.timeline-card-dark {
  background-color: #000;
  color: white;
}

.timeline-card h4 {
  font-size: 20px;
  margin-bottom: 10px;
}

.timeline-card p {
  font-size: 16px;
}

.section-subtitle {
  font-size: 18px;
  color: #666;
  text-align: center;
  margin-bottom: 40px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.6;
}

.industries-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
}

.industry-card {
  background-color: #ffffff;
  padding: 30px;
  border-radius: 15px;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08), 0 4px 10px rgba(0, 0, 0, 0.05);
  border: 1px solid rgba(0, 0, 0, 0.05);
  display: flex;
  flex-direction: column;
  min-height: 320px;
}

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

.industry-icon {
  font-size: 48px;
  margin-bottom: 20px;
  display: block;
}

.industry-card h4 {
  font-size: 24px;
  margin-bottom: 10px;
  color: #2c3e50;
  font-weight: 600;
}

.industry-subtitle {
  color: #666;
  font-size: 16px;
  margin-bottom: 20px;
  font-style: italic;
}

.industry-services {
  list-style: none;
  padding: 0;
  margin: 20px 0;
  text-align: left;
  flex-grow: 1;
}

.industry-services li {
  color: #2c3e50;
  padding: 8px 0;
  font-size: 14px;
  position: relative;
  padding-left: 20px;
  font-weight: 500;
  border-bottom: 1px solid #ecf0f1;
}

.industry-services li:before {
  content: "✓";
  color: #27ae60;
  font-weight: bold;
  position: absolute;
  left: 0;
  font-size: 14px;
}

.industry-stats {
  background-color: #2c3e50;
  padding: 12px 15px;
  border-radius: 10px;
  margin-top: auto;
  font-size: 14px;
  color: #ffffff;
  min-height: 45px;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  box-sizing: border-box;
  line-height: 1.3;
  white-space: nowrap;
}

.industry-stats .stat-highlight {
  color: #B9FF66;
  font-weight: bold;
  margin-right: 5px;
}

/* Pricing Section Styles */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.pricing-card {
  padding: 40px;
  border-radius: 15px;
  text-align: center;
  position: relative;
}

.pricing-card-light {
  background-color: #f8f8f8;
  border: 1px solid #000;
}

.pricing-card-green {
  background-color: #B9FF66;
  border: 2px solid #000;
}

.pricing-card-dark {
  background-color: #000;
  color: white;
}

.pricing-card-popular {
  position: relative;
}

.popular-badge {
  background-color: #000;
  color: white;
  padding: 5px 15px;
  border-radius: 15px;
  position: absolute;
  top: -10px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 14px;
}

.pricing-title {
  font-size: 30px;
  margin-bottom: 10px;
}

.pricing-subtitle {
  font-size: 16px;
  margin-bottom: 20px;
  color: #666;
}

.pricing-subtitle-light {
  color: #ccc;
}

.pricing-price {
  margin-bottom: 30px;
}

.price-amount {
  font-size: 48px;
  font-weight: bold;
}

.price-period {
  font-size: 18px;
  color: #666;
}

.pricing-period-light {
  color: #ccc;
}

.pricing-features {
  list-style: none;
  padding: 0;
  margin-bottom: 30px;
  text-align: left;
}

.pricing-features li {
  padding: 8px 0;
  border-bottom: 1px solid #eee;
}

.pricing-features-light li {
  border-bottom: 1px solid #333;
}

.pricing-btn {
  background-color: #000;
  color: white;
  border: none;
  padding: 15px 30px;
  border-radius: 15px;
  cursor: pointer;
  width: 100%;
}

.pricing-btn-green {
  background-color: #B9FF66;
  color: black;
}

.faq-accordion {
  display: grid;
  gap: 15px;
}

.faq-item {
  background-color: #ffffff;
  border-radius: 15px;
  border: 1px solid #e0e0e0;
  overflow: hidden;
  transition: box-shadow 0.3s ease;
}

.faq-item:hover {
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.faq-question {
  background-color: #f8f8f8;
  padding: 25px 30px;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: background-color 0.3s ease;
}

.faq-question:hover {
  background-color: #ecf0f1;
}

.faq-question h4 {
  font-size: 20px;
  margin: 0;
  color: #2c3e50;
  font-weight: 600;
}

.faq-icon {
  font-size: 24px;
  font-weight: bold;
  color: #2c3e50;
  transition: transform 0.3s ease;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, padding 0.3s ease;
  background-color: #ffffff;
}

.faq-item.active .faq-answer {
  max-height: 200px;
  padding: 25px 30px;
}

.faq-item.active .faq-question {
  background-color: #B9FF66;
}

.faq-item.active .faq-icon {
  transform: rotate(180deg);
}

.faq-answer p {
  font-size: 16px;
  line-height: 24px;
  color: #666;
  margin: 0;
}

/* Blog Section Styles */
.featured-article {
  background-color: #B9FF66;
  padding: 50px;
  border-radius: 15px;
  margin-bottom: 60px;
}

.featured-content {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 40px;
  align-items: center;
}

.featured-badge {
  background-color: #000;
  color: white;
  padding: 5px 15px;
  border-radius: 15px;
  font-size: 14px;
}

.featured-title {
  font-size: 36px;
  margin: 20px 0;
}

.featured-description {
  font-size: 18px;
  line-height: 26px;
  margin-bottom: 20px;
}

.article-meta {
  display: flex;
  gap: 20px;
  align-items: center;
  margin-bottom: 20px;
  font-size: 14px;
  color: #666;
}

.featured-btn {
  background-color: #000;
  color: white;
  border: none;
  padding: 15px 25px;
  border-radius: 15px;
  cursor: pointer;
}

.featured-icon {
  text-align: center;
}

.icon-card {
  background-color: #000;
  color: white;
  padding: 40px;
  border-radius: 15px;
}

.icon-card h4 {
  font-size: 24px;
  margin-bottom: 10px;
}

.icon-card p {
  font-size: 16px;
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.blog-card {
  border-radius: 15px;
  overflow: hidden;
}

.blog-card-light {
  background-color: #f8f8f8;
  border: 1px solid #000;
}

.blog-card-dark {
  background-color: #000;
  color: white;
}

.blog-card-green {
  background-color: #B9FF66;
}

.blog-image {
  height: 200px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.blog-image-green {
  background-color: #B9FF66;
}

.blog-image-dark {
  background-color: #000;
}

.blog-image-light {
  background-color: #f8f8f8;
}

.blog-emoji {
  font-size: 48px;
}

.blog-emoji-dark {
  color: black;
}

.blog-content {
  padding: 30px;
}

.blog-category {
  padding: 3px 10px;
  border-radius: 10px;
  font-size: 12px;
}

.blog-category-green {
  background-color: #B9FF66;
}

.blog-category-dark {
  background-color: #000;
  color: white;
}

.blog-category-green-dark {
  background-color: #B9FF66;
  color: black;
}

.blog-title {
  font-size: 20px;
  margin: 15px 0;
}

.blog-title-light {
  color: white;
}

.blog-excerpt {
  font-size: 14px;
  line-height: 20px;
  color: #666;
  margin-bottom: 15px;
}

.blog-excerpt-light {
  color: #ccc;
}

.blog-excerpt-dark {
  color: #333;
}

.blog-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 12px;
  color: #666;
}

.blog-meta-light {
  color: #ccc;
}

.blog-meta-dark {
  color: #333;
}

.newsletter-section {
  max-width: 1200px;
  margin: 60px auto;
  padding: 40px;
  text-align: center;
  background-color: #000;
  color: white;
  border-radius: 15px;
}

.newsletter-section h2 {
  font-size: 36px;
  margin-bottom: 20px;
}

.newsletter-section p {
  font-size: 20px;
  margin-bottom: 30px;
}

.newsletter-form {
  display: flex;
  gap: 15px;
  justify-content: center;
  align-items: center;
  max-width: 400px;
  margin: 0 auto;
}

.newsletter-input {
  flex: 1;
  padding: 15px;
  border-radius: 15px;
  border: none;
  font-size: 16px;
}

.newsletter-btn {
  background-color: #B9FF66;
  color: black;
  border: none;
  padding: 15px 25px;
  border-radius: 15px;
  cursor: pointer;
  font-weight: bold;
}

/* Smooth scroll animation enhancements */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background-color: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  z-index: 1000;
  transition: all 0.3s ease;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.section-padding {
  scroll-margin-top: 100px;
}

#home {
  scroll-margin-top: 0;
}

/* Add padding to body to account for fixed header */
body {
  padding-top: 100px;
}

/* Navigation hover effects */
.header-right .menu .menu-item a {
  transition: all 0.3s ease;
}

.header-right .menu .menu-item a:hover {
  color: #666;
}

/* Scroll animations */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(50px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

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

@keyframes fadeInRight {
  from {
    opacity: 0;
    transform: translateX(50px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes scaleIn {
  from {
    opacity: 0;
    transform: scale(0.8);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

/* Animation classes for scroll triggers */
.animate-on-scroll {
  opacity: 0;
  transition: all 0.8s ease-out;
}

.animate-on-scroll.animate {
  opacity: 1;
}

.fade-up {
  transform: translateY(50px);
}

.fade-up.animate {
  transform: translateY(0);
}

.fade-left {
  transform: translateX(-50px);
}

.fade-left.animate {
  transform: translateX(0);
}

.fade-right {
  transform: translateX(50px);
}

.fade-right.animate {
  transform: translateX(0);
}

.scale-in {
  transform: scale(0.8);
}

.scale-in.animate {
  transform: scale(1);
}

/* Button hover effects */
.service-arrow:hover,
.case-study-btn:hover,
.pricing-btn:hover,
.featured-btn:hover,
.newsletter-btn:hover {
  transform: scale(1.05);
  transition: transform 0.2s ease;
}

/* Card hover effects */
.service-card:hover,
.case-study:hover,
.pricing-card:hover,
.blog-card:hover {
  transform: translateY(-5px);
  transition: transform 0.3s ease;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

/* ============================================
   Footer Styles
   ============================================ */
.footer {
  background-color: #191A23;
  color: #ffffff;
  padding: 30px 0 15px;
  border-top: 1px solid #333;
}

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

.footer-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 40px;
  margin-bottom: 25px;
}

.footer-logo-col {
  flex: 1;
}

.footer-logo-col .logo {
  max-width: 140px;
  height: auto;
  filter: brightness(0) invert(1);
}

.footer-links-col {
  flex: 1;
  text-align: center;
}


.footer-links-col ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-wrap: nowrap;
  justify-content: center;
  gap: 30px;
  align-items: center;
}

.footer-links-col ul li a {
  color: #ffffff;
  text-decoration: none;
  font-size: 14px;
  transition: color 0.3s ease;
  white-space: nowrap;
}

.footer-links-col ul li a:hover {
  color: #B9FF66;
}

.footer-socials-col {
  flex: 1;
  text-align: right;
}


.footer-socials {
  display: flex;
  gap: 15px;
  justify-content: flex-end;
}

.footer-socials a {
  color: #ffffff;
  transition: all 0.3s ease;
  padding: 8px;
  border-radius: 6px;
  background-color: rgba(255, 255, 255, 0.1);
}

.footer-socials a:hover {
  color: #B9FF66;
  background-color: rgba(185, 255, 102, 0.1);
  transform: translateY(-2px);
}

.footer-socials svg {
  width: 20px;
  height: 20px;
  fill: currentColor;
}

.footer-bottom {
  border-top: 1px solid #333;
  padding-top: 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 13px;
  color: #a0a0a0;
}

.footer-legal {
  display: flex;
  gap: 20px;
}

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

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

/* Responsive Footer */
@media (max-width: 768px) {
  .footer-top {
    flex-direction: column;
    text-align: center;
    gap: 25px;
  }

  .footer-links-col,
  .footer-socials-col {
    text-align: center;
  }

  .footer-links-col ul {
    flex-direction: column;
    gap: 12px;
  }

  .footer-socials {
    justify-content: center;
  }

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