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

:root {
  --gradient-primary: linear-gradient(135deg, #428315cc, #0b555e);
  --gradient-secondary: linear-gradient(100deg, #17aabd, #3fd6dd);
  --main-color: #17aabd;
  --secondary-color: #6cce69;
  --dark-color: #1a202c;
  --light-color: white;
  --text-color: #2d3748;
  --border-color: #e2e8f0;
  --glass-bg: hsla(0, 0%, 100%, 0.1);
  --glass-border: hsla(0, 0%, 100%, 0.2);
}

html {
  scroll-behavior: smooth;
}

body {
  color: var(--text-color);
  font-family: Tajawal, sans-serif;
  line-height: 1.6;
  overflow-x: hidden;
  background: #f8fafc;
}

.hero-section {
  align-items: center;
  background: var(--gradient-primary);
  display: flex;
  justify-content: center;
  min-height: 80vh;
  overflow: hidden;
  position: relative;
}

.hero-container {
  max-width: 1400px;
  /* padding: 0 30px; */
  position: relative;
  width: 100%;
  z-index: 2;
}

.hero-content {
  animation: fadeInUp 1s ease-out;
  color: #fff;
  position: relative;
  text-align: center;
  z-index: 10;
}

.hero-icon {
  align-items: center;
  animation: float 6s ease-in-out infinite;
  background: var(--gradient-primary);
  border-radius: 50%;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
  display: inline-flex;
  height: 100px;
  justify-content: center;
  margin-bottom: 1rem;
  width: 100px;
}

.hero-icon i {
  font-size: 40px;
}

.hero-bg {
  background: url(https://images.pexels.com/photos/3184360/pexels-photo-3184360.jpeg?auto=compress&cs=tinysrgb&w=1920) 50% / cover;
  background-attachment: fixed;
  background-position: 0 20%;
  background-repeat: no-repeat;
  opacity: 0.2;
  z-index: 0;
}

.hero-bg,
.hero-overlay {
  height: 100%;
  left: 0;
  position: absolute;
  top: 0;
  width: 100%;
}

.hero-overlay {
  background: linear-gradient(135deg,
      rgba(23, 170, 189, 0.05),
      rgba(108, 206, 105, 0.05));
}

.hero-title {
  background: #fff;
  -webkit-background-clip: text;
  color: #fff;
  font-size: 4rem;
  font-weight: 900;
  margin-bottom: 32px;
  min-height: 80px;
  background-clip: text;
}

.title.text-dark {
  color: #1a1a1a;
  font-size: 3.5rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.1;
  margin-bottom: 1rem;
}

.title.text-dark+p {
  margin: 1rem auto;
  max-width: 50%;
}

.hero-subtitle {
  color: white;
  font-size: 1.5rem;
  margin-bottom: 2rem;
  margin-left: auto;
  margin-right: auto;
  max-width: 600px;
}

.hero-subtitle-sector {
  color: hsla(0, 0%, 100%, 0.8);
  font-size: 1.2rem;
  margin-bottom: 3rem;
  margin-left: auto;
  margin-right: auto;
  max-width: 600px;
}

.hero-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
}

.btn-primary,
.btn-secondary {
  border: none;
  border-radius: 50px;
  cursor: pointer;
  font-family: Tajawal, sans-serif;
  font-size: 16px;
  font-weight: 600;
  padding: 15px 35px;
  transition: all 0.3s ease;
}

.btn-primary {
  background: var(--gradient-1);
  box-shadow: 0 8px 25px rgba(174, 226, 181, 0.1);
  color: #fff;
}

.btn-primary:hover {
  box-shadow: 0 12px 35px rgba(174, 226, 181, 0.2);
  transform: translateY(-3px);
}

.btn-secondary {
  background: transparent;
  border: 2px solid hsla(0, 0%, 100%, 0.3);
  color: #fff;
}

.btn-secondary.text-dark {
  background: hsla(0, 0%, 100%, 0.9);
  border: 2px solid var(--secondary-color);
}

.btn-secondary:hover {
  background: hsla(0, 0%, 100%, 0.1);
  border-color: var(--secondary-color);
}

.btn-secondary.text-dark:hover {
  color: var(--secondary-color) !important;
}

@keyframes titleGlow {

  0%,
  to {
    filter: drop-shadow(0 0 20px rgba(23, 170, 189, 0.5));
  }

  50% {
    filter: drop-shadow(0 0 40px rgba(108, 206, 105, 0.7));
  }
}

.hero-particles {
  /* animation: particlesFloat 20s linear infinite; */
  background: url('data:image/svg+xml;charset=utf-8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="20" cy="20" r="2" fill="rgba(23,170,189,0.3)"/><circle cx="80" cy="40" r="1" fill="rgba(108,206,105,0.4)"/><circle cx="40" cy="80" r="1.5" fill="rgba(23,170,189,0.2)"/></svg>');
  background-size: 200px 200px;
  height: 100%;
  left: 0;
  opacity: 0.6;
  position: absolute;
  top: 0;
  width: 100%;
}

@keyframes particlesFloat {
  0% {
    transform: translate(0) rotate(0deg);
  }

  to {
    transform: translate(-200px, -200px) rotate(1turn);
  }
}

.hero-waves {
  background: url('data:image/svg+xml;charset=utf-8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1200 120"><path fill="%23fff" d="M0 60c300 60 900-60 1200 0v60H0Z"/></svg>');
  background-repeat: no-repeat;
  background-size: cover;
  bottom: 0;
  height: 100px;
  left: 0;
  position: absolute;
  width: 100%;
}

.container {
  margin: 0 auto;
  max-width: 1400px;
  padding: 0 30px;
}

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

.services-overview {
  background: var(--light-color);
  padding: 100px 0;
  position: relative;
}

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

.service-card {
  background: #fff;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  cursor: pointer;
  overflow: hidden;
  padding: 40px;
  position: relative;
  text-align: center;
  transition: all 0.4s ease;
}

.service-card:before {
  background: linear-gradient(90deg,
      transparent,
      rgba(23, 170, 189, 0.1),
      transparent);
  content: "";
  height: 100%;
  left: -100%;
  position: absolute;
  top: 0;
  transition: left 0.5s ease;
  width: 100%;
}

.service-card:hover:before {
  left: 100%;
}

.service-card:hover {
  box-shadow: 0 20px 50px rgba(23, 170, 189, 0.2);
  transform: translateY(-10px);
}

.service-icon {
  align-items: center;
  background: var(--gradient-primary);
  border-radius: 50%;
  box-shadow: 0 10px 25px rgba(23, 170, 189, 0.3);
  color: #fff;
  display: flex;
  font-size: 30px;
  height: 80px;
  justify-content: center;
  margin: 0 auto 25px;
  transition: transform 0.3s ease;
  width: 80px;
}

.service-card:hover .service-icon {
  transform: rotateY(1turn);
}

.service-card h3 {
  color: var(--dark-color);
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 15px;
}

.service-card p {
  color: #64748b;
  line-height: 1.6;
}

.video-section {
  overflow: hidden;
  padding: 100px 0;
  position: relative;
}

.video-content {
  align-items: center;
  display: grid;
  gap: 80px;
  grid-template-columns: 1fr 1fr;
}

.video-text .section-title {
  text-align: right;
}

.section-description {
  font-size: 1.1rem;
  line-height: 1.8;
  margin-bottom: 40px;
}

.video-features {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.feature-item {
  align-items: center;
  font-weight: 500;
  gap: 15px;
}

.feature-item i {
  font-size: 20px;
  width: 25px;
}

.video-container,
.video-player {
  position: relative;
}

.video-container {
  border-radius: 20px;
}

.video-thumbnail {
  height: 300px;
  overflow: hidden;
  position: relative;
  width: 100%;
}

.video-thumbnail img {
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
  width: 100%;
}

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

.play-button,
.play-overlay {
  align-items: center;
  display: flex;
  justify-content: center;
  transition: all 0.3s ease;
}

.play-button {
  animation: playPulse 2s ease-in-out infinite;
  background: var(--gradient-primary);
  border-radius: 50%;
  color: #fff;
  cursor: pointer;
  font-size: 24px;
  height: 80px;
  width: 80px;
}

@keyframes playPulse {

  0%,
  to {
    transform: scale(1);
  }

  50% {
    transform: scale(1.1);
  }
}

.video-controls {
  background: rgba(0, 0, 0, 0.8);
  gap: 20px;
  padding: 20px;
}

.control-item,
.video-controls {
  display: flex;
  justify-content: center;
}

.control-item {
  align-items: center;
  background: hsla(0, 0%, 100%, 0.1);
  border-radius: 50%;
  color: #fff;
  cursor: pointer;
  height: 40px;
  transition: all 0.3s ease;
  width: 40px;
}

.control-item:hover {
  background: var(--secondary-color);
  transform: scale(1.1);
}

.video-bg-effects {
  animation: bgMove 20s linear infinite;
  background: url('data:image/svg+xml;charset=utf-8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><path fill="none" stroke="rgba(23,170,189,0.1)" stroke-width=".5" d="m50 5 45 20v50L50 95 5 75V25z"/></svg>');
  background-size: 150px 150px;
  height: 100%;
  left: 0;
  opacity: 0.3;
  position: absolute;
  top: 0;
  width: 100%;
}

@keyframes bgMove {
  0% {
    transform: translate(0) rotate(0deg);
  }

  to {
    transform: translate(100px, 100px) rotate(1turn);
  }
}

.reports-section {
  padding: 100px 0;
  position: relative;
}

.reports-content {
  align-items: center;
  display: grid;
  gap: 64px;
  grid-template-columns: 1fr 1fr;
}

.reports-dashboard {
  backdrop-filter: blur(20px);
  border: 1px solid hsla(0, 0%, 100%, 0.1);
  border-radius: 20px;
  box-shadow: 0 0 50px rgba(0, 0, 0, 0.1);
  padding: 30px;
  position: relative;
}

.dashboard-header {
  align-items: center;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  display: flex;
  justify-content: space-between;
  margin-bottom: 30px;
  padding-bottom: 20px;
}

.dashboard-header h3 {
  font-size: 1.3rem;
  font-weight: 700;
}

.dashboard-controls {
  display: flex;
  gap: 10px;
}

.control-btn {
  background: transparent;
  border: 1px solid hsla(0, 0%, 100%, 0.2);
  border-radius: 20px;
  cursor: pointer;
  font-family: Tajawal, sans-serif;
  font-size: 12px;
  padding: 8px 16px;
  transition: all 0.3s ease;
}

.control-btn.active,
.control-btn:hover {
  background: #3e7c50;
  border-color: #3e7c50;
  color: #fff;
}

.dashboard-grid {
  display: grid;
  gap: 20px;
  grid-template-columns: repeat(3, 1fr);
}

.stat-card {
  background: #fff;
  border: 1px solid rgba(0, 0, 0, 0.1);
  border-radius: 15px;
  padding: 25px;
  text-align: center;
  transition: all 0.3s ease;
}

.stat-card:hover {
  background: rgb(115 206 56/5%);
  border-color: var(--secondary-color);
}

.stat-icon {
  align-items: center;
  background: var(--gradient-primary);
  border-radius: 50%;
  color: #fff;
  display: flex;
  font-size: 20px;
  height: 50px;
  justify-content: center;
  margin: 0 auto 15px;
  width: 50px;
}

.stat-info h4 {
  font-size: 14px;
  margin-bottom: 10px;
}

.stat-number {
  font-size: 2rem;
  font-weight: 800;
}

.chart-container {
  align-items: center;
  background: #fff;
  border: 1px solid rgba(0, 0, 0, 0.1);
  border-radius: 15px;
  display: flex;
  grid-column: 1/-1;
  height: 200px;
  justify-content: center;
  overflow: hidden;
  position: relative;
}

.chart-container:before {
  animation: chartAnimate 3s ease-in-out infinite;
  background: url('data:image/svg+xml;charset=utf-8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 400 200"><path fill="none" stroke="rgba(23,170,189,0.8)" stroke-width="3" d="m20 150 40-30 40-40 40 20 40-40 40 30 40-50 40 30 40-40 40 20"/><path fill="none" stroke="rgba(108,206,105,0.6)" stroke-width="2" d="m20 180 40-20 40-20 40 10 40-30 40 10 40-30 40 10 40-30 40 10"/></svg>');
  background-size: cover;
  content: "";
  height: 100%;
  left: 40px;
  position: absolute;
  top: 0;
  width: 100%;
}

@keyframes chartAnimate {

  0%,
  to {
    opacity: 0.8;
  }

  50% {
    opacity: 1;
  }
}

.reports-text .section-title {
  text-align: right;
}

.reports-features {
  display: flex;
  flex-direction: column;
  gap: 25px;
}

.feature-box {
  align-items: center;
  background: #fff;
  border: 1px solid #e2e8f0;
  border-radius: 16px;
  display: flex;
  gap: 20px;
  padding: 20px;
  transition: all 0.3s ease;
}

.feature-box:hover {
  background: rgba(115, 206, 56, 0.1);
  transform: translateX(-10px);
}

.feature-box i {
  align-items: center;
  background: var(--gradient-primary);
  border-radius: 50%;
  color: #fff;
  display: flex;
  flex-shrink: 0;
  font-size: 20px;
  height: 50px;
  justify-content: center;
  width: 50px;
}

.feature-box h4 {
  color: var(--dark-color);
  font-weight: 700;
  margin-bottom: 5px;
}

.feature-box p {
  font-size: 14px;
}

.printing-section {
  overflow: hidden;
  padding: 100px 0;
  position: relative;
}

.printing-showcase {
  align-items: start;
  display: grid;
  gap: 60px;
  grid-template-columns: 200px 1fr;
}

.printing-types {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.print-type {
  background: #fff;
  border: 2px solid transparent;
  border-radius: 15px;
  cursor: pointer;
  padding: 12px;
  position: relative;
  text-align: center;
  transition: all 0.3s ease;
}

.print-type.active,
.print-type:hover {
  background: rgb(115 206 56/5%);
  border-color: var(--secondary-color);
  transform: translateX(10px);
}

.type-icon {
  align-items: center;
  background: var(--gradient-primary);
  border-radius: 50%;
  color: #fff;
  display: flex;
  font-size: 24px;
  height: 60px;
  justify-content: center;
  margin: 0 auto 15px;
  transition: transform 0.3s ease;
  width: 60px;
}

.print-type:hover .type-icon {
  transform: rotateY(1turn);
}

.print-type h3 {
  color: var(--dark-color);
  font-size: 1.1rem;
  font-weight: 700;
}

.printing-preview {
  background: #fff;
  border-radius: 20px;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
  padding: 40px;
  position: relative;
}

.preview-container {
  background: #f8f9fa;
  border-radius: 15px;
  min-height: 500px;
  overflow: hidden;
  padding: 30px;
  position: relative;
}

.print-sample {
  animation: sampleSlide 0.5s ease-out;
  display: none;
}

.print-sample.active {
  display: block;
}

@keyframes sampleSlide {
  0% {
    opacity: 0;
    transform: translateY(20px);
  }

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

.sample-header {
  align-items: center;
  border-bottom: 2px solid var(--secondary-color);
  display: flex;
  justify-content: space-between;
  margin-bottom: 30px;
  padding-bottom: 15px;
}

.company-logo {
  background: var(--gradient-primary);
  border-radius: 10px;
  height: 50px;
  width: 50px;
}

.document-title {
  color: var(--dark-color);
  font-size: 1.5rem;
  font-weight: 700;
}

.sample-content {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.content-line {
  background: #e2e8f0;
  border-radius: 6px;
  height: 12px;
}

.content-line.short {
  width: 60%;
}

.content-line.medium {
  width: 80%;
}

.invoice-header {
  align-items: center;
  display: flex;
  justify-content: space-between;
  margin-bottom: 30px;
}

.invoice-title {
  color: var(--dark-color);
  font-size: 2rem;
  font-weight: 800;
}

.invoice-number {
  color: var(--secondary-color);
  font-size: 1.2rem;
  font-weight: 600;
}

.invoice-table {
  border: 1px solid #e2e8f0;
  border-radius: 10px;
  overflow: hidden;
}

.table-row {
  border-bottom: 1px solid #e2e8f0;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  padding: 15px;
}

.table-row.header {
  background: var(--gradient-primary);
  color: #fff;
  font-weight: 700;
}

.table-row:last-child {
  border-bottom: none;
}

.print-btn {
  align-items: center;
  background: var(--gradient-primary);
  border: none;
  border-radius: 10px;
  color: #fff;
  cursor: pointer;
  display: flex;
  font-family: Tajawal, sans-serif;
  font-weight: 600;
  gap: 10px;
  padding: 12px 25px;
  transition: all 0.3s ease;
}

.print-btn:hover {
  box-shadow: 0 8px 25px rgba(23, 170, 189, 0.4);
  transform: translateY(-2px);
}

.printing-pattern {
  animation: patternMove 30s linear infinite;
  background: url('data:image/svg+xml;charset=utf-8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><path fill="none" stroke="rgba(23,170,189,0.05)" d="M10 10h15v20H10z"/><path fill="none" stroke="rgba(108,206,105,0.05)" d="M70 30h15v20H70z"/><path fill="none" stroke="rgba(23,170,189,0.05)" d="M30 60h15v20H30z"/></svg>');
  background-size: 150px 150px;
  height: 100%;
  left: 0;
  opacity: 0.3;
  position: absolute;
  top: 0;
  width: 100%;
  z-index: -1;
}

@keyframes patternMove {
  0% {
    transform: translate(0);
  }

  to {
    transform: translate(150px, 150px);
  }
}

.integration-section {
  background: var(--light-color);
}

.features-section {
  background: var(--light-color);
  overflow: hidden;
  padding: 100px 0;
  position: relative;
}

.features-grid {
  display: grid;
  gap: 30px;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  margin-bottom: 80px;
}

.feature-card {
  background: #fff;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  padding: 40px;
  position: relative;
  text-align: center;
  transition: all 0.4s ease;
}

.feature-card.highlight {
  background: var(--gradient-primary);
  box-shadow: 0 20px 50px rgba(23, 189, 134, 0.3);
  color: #fff;
  transform: scale(1.05);
}

.feature-card:not(.highlight):hover {
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
  transform: translateY(-10px);
}

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

.feature-badge {
  background: var(--secondary-color);
  border-radius: 15px;
  color: #fff;
  font-size: 12px;
  font-weight: 600;
  padding: 5px 12px;
}

.feature-icon {
  align-items: center;
  background: var(--secondary-color);
  border-radius: 50%;
  box-shadow: 0 10px 25px rgba(23, 189, 31, 0.3);
  color: #fff;
  display: flex;
  font-size: 28px;
  height: 70px;
  justify-content: center;
  margin: 0 auto 25px;
  transition: transform 0.3s ease;
  width: 70px;
}

.feature-card.highlight .feature-icon {
  background: hsla(0, 0%, 100%, 0.2);
}

.feature-card:hover .feature-icon {
  transform: rotateY(1turn);
}

.feature-card h3 {
  color: var(--dark-color);
  font-size: 1.4rem;
  font-weight: 700;
  margin-bottom: 15px;
}

.feature-card.highlight h3 {
  color: #fff;
}

.feature-card p {
  color: #64748b;
  line-height: 1.6;
  margin-bottom: 20px;
}

.feature-card.highlight p {
  color: hsla(0, 0%, 100%, 0.9);
}

.support-features {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.support-item {
  align-items: center;
  color: hsla(0, 0%, 100%, 0.9);
  display: flex;
  font-weight: 500;
  gap: 12px;
}

.support-item i {
  color: var(--secondary-color);
  font-size: 16px;
  width: 20px;
}

.support-showcase {
  background: #fff;
  border-radius: 20px;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
  padding: 50px;
}

.whatsapp-float {
  bottom: 30px;
  position: fixed;
  right: 30px;
  z-index: 1000;
}

.whatsapp-float a {
  align-items: center;
  animation: whatsappBounce 2s ease-in-out infinite;
  background: #25d366;
  border-radius: 50%;
  box-shadow: 0 8px 25px rgba(37, 211, 102, 0.4);
  color: #fff;
  display: flex;
  font-size: 28px;
  height: 60px;
  justify-content: center;
  position: relative;
  text-decoration: none;
  transition: all 0.3s ease;
  width: 60px;
}

.business-section {
  overflow: hidden;
  padding: 5rem 0;
  position: relative;
}

.section-content {
  align-items: center;
  display: grid;
  gap: 4rem;
  grid-template-columns: 1fr 1fr;
}

.section-content.reverse {
  direction: ltr;
}

.section-content.reverse .content-text {
  direction: rtl;
}

.section-badge {
  gap: 1rem;
  margin-bottom: 2rem;
}

.section-badge,
.section-icon {
  align-items: center;
  display: flex;
}

.section-icon {
  background: var(--gradient-primary);
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(23, 170, 189, 0.3);
  color: #fff;
  height: 60px;
  justify-content: center;
  width: 60px;
}

.section-badge span {
  color: var(--main-color);
  font-size: 1.2rem;
  font-weight: 700;
}

.content-text h2 {
  color: var(--dark-color);
  font-size: 2.2rem;
  font-weight: 700;
  line-height: 1.2;
}

.content-points,
.content-text h2 {
  margin-bottom: 2rem;
}

.point {
  align-items: center;
  display: flex;
  gap: 0.7rem;
  margin-bottom: 0.5rem;
}

.point i {
  color: var(--main-color);
  flex-shrink: 0;
  font-size: 12px;
}

.point-dot {
  border-radius: 50%;
  flex-shrink: 0;
  height: 12px;
  width: 12px;
}

.point-dot,
.point-dot.secondary {
  background: var(--gradient-secondary);
  box-shadow: 0 2px 10px rgba(23, 170, 189, 0.4);
}

.point p {
  color: var(--text-color);
  font-size: 1.2rem;
  font-weight: 600;
  line-height: 1.6;
  margin-bottom: 0;
}

.verification {
  align-items: center;
  color: #10b981;
  display: flex;
  font-weight: 600;
  gap: 0.5rem;
  margin-bottom: 2rem;
}

.content-image,
.image-wrapper {
  position: relative;
}

.image-wrapper {
  border-radius: 25px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
  overflow: hidden;
  transition: all 0.4s ease;
}

.image-wrapper:hover {
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.3);
  transform: translateY(-10px);
}

.image-wrapper img {
  height: 400px;
  object-fit: cover;
  transition: transform 0.4s ease;
  width: 100%;
}

.image-wrapper:hover img {
  transform: scale(1.1);
}

.image-overlay {
  background: linear-gradient(135deg,
      rgba(23, 170, 189, 0.2),
      rgba(108, 206, 105, 0.2));
  height: 100%;
  left: 0;
  opacity: 0;
  position: absolute;
  top: 0;
  transition: opacity 0.3s ease;
  width: 100%;
}

.image-wrapper:hover .image-overlay {
  opacity: 1;
}

.scroll-indicator {
  animation: bounce 2s infinite;
}

@keyframes whatsappBounce {

  0%,
  to {
    transform: scale(1);
  }

  50% {
    transform: scale(1.05);
  }
}

.whatsapp-float a:hover {
  box-shadow: 0 12px 35px rgba(37, 211, 102, 0.6);
  transform: scale(1.1);
}

.about-section {
  background: url(/assets/Asset-system/hero-dot-bg.png) no-repeat 100% 0;
  background-size: 500px 500px;
}

@media (max-width: 1440px) {
  .hero-section {
    padding: 80px 0;
  }

  .hero-title {
    font-size: 3rem;
    min-height: 40px;
  }

  .printing-showcase {
    gap: 40px;
    grid-template-columns: 1fr;
  }

  .print-type.active,
  .print-type:hover {
    transform: none;
  }

  .print-type {
    padding: 12px 40px;
  }

  .printing-types {
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
  }
}

@media (max-width: 1024px) {
  .reports-content {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .hero-title {
    font-size: 2.5rem;
  }

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

  .point p {
    font-size: 1rem;
  }

  .image-wrapper {
    box-shadow: none;
  }

  .title.text-dark+p {
    max-width: 70%;
  }

  .customization-grid {
    grid-template-columns: 1fr 1fr;
  }

  .features-grid,
  .services-grid {
    gap: 25px;
    grid-template-columns: 1fr;
  }

  .dashboard-grid {
    grid-template-columns: 1fr;
  }

  .hero-subtitle {
    font-size: 1.2rem;
  }

  .section-content {
    gap: 2rem;
    grid-template-columns: 1fr;
  }

  .about-section {
    background: none;
  }

  .section-content.reverse {
    direction: rtl;
  }

  .content-text h2,
  .section-header h2 {
    font-size: 2rem;
  }
}

@media (max-width: 1540px) {
  .hero-section {
    min-height: 90vh;
  }
}

@media (max-width: 480px) {
  .hero-icon {
    height: 80px;
    width: 80px;
  }

  .hero-icon i {
    font-size: 32px;
  }

  .container {
    padding: 0 20px;
  }

  .video-section-1 .play-button {
    height: 60px !important;
    width: 60px !important;
  }

  .video-section-1 .play-button i {
    font-size: 1.5rem !important;
  }

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

  .title.text-dark+p {
    max-width: 90%;
  }

  .customization-grid {
    grid-template-columns: 1fr;
  }

  .hero-buttons {
    align-items: center;
    flex-direction: column;
  }

  .hero-particles {
    display: none;
  }

  .feature-card,
  .printing-preview,
  .reports-dashboard,
  .service-card {
    padding: 25px;
  }

  .hero-subtitle {
    font-size: 1rem;
  }

  .content-text h2 {
    font-size: 1.5rem;
  }

  .image-wrapper img {
    height: 250px;
  }

  .chat-toggle,
  .whatsapp-float {
    bottom: 20px;
  }

  .chat-toggle {
    left: 20px;
  }

  .whatsapp-float {
    right: 20px;
  }
}

@media (prefers-reduced-motion: reduce) {
  * {
    animation-delay: 0s !important;
    animation-duration: 0.01s !important;
    transition-duration: 0.01s !important;
  }
}

@media (prefers-contrast: high) {
  :root {
    --main-color: #0ff;
    --secondary-color: #0f0;
    --text-color: #000;
  }
}

.video-section-1 {
  background-color: #fff;
  padding: 70px 0 100px 0;
}

.video-section-1 .video-container {
  border-radius: 24px;
  margin: 0 auto;
  max-width: 900px;
  position: relative;
  z-index: 1;
}

.video-section-1 .video-placeholder {
  border-radius: 24px;
  cursor: pointer;
  margin-bottom: 1rem;
  overflow: hidden;
  position: relative;
  background: #fff;
  box-shadow: 0 14px 40px rgba(2, 32, 71, 0.18);
}

.video-section-1 .video-placeholder::after {
  content: "";
  position: absolute;
  inset: 0;
  /* background: rgba(7, 34, 60, 0.35); */
  pointer-events: none;
}

.video-section-1 .play-button {
  align-items: center;
  backdrop-filter: blur(20px);
  background: rgba(0, 0, 0, 0.2);
  border: 3px solid hsla(0, 0%, 100%, 0.3);
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  height: 100px;
  justify-content: center;
  left: 50%;
  position: absolute;
  top: 50%;
  transform: translate(-50%, -50%) !important;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  width: 100px;
  z-index: 2;
}

.video-section-1 .play-button:before {
  animation: pulse 2s infinite;
  border: 2px solid hsla(0, 0%, 100%, 0.1);
  border-radius: 50%;
  bottom: -20px;
  content: "";
  left: -20px;
  position: absolute;
  right: -20px;
  top: -20px;
}

.video-section-1 .play-button i {
  color: #fff;
  font-size: 2rem;
  /* margin-left: 6px; */
  position: relative;
  z-index: 1;
}

.video-section-1 .video-placeholder img {
  max-height: 500px;
  /* object-fit: cover; */
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  width: 100%;
}

.video-section-1 .video-placeholder:hover img {
  transform: scale(1.05);
}

.slide-in-left.visible {
  opacity: 1;
  transform: translateX(0);
}

.slide-in-left {
  opacity: 0;
  transform: translateX(-60px);
  transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.customization .section-content {
  align-items: end;
  display: grid;
  gap: 64px;
  grid-template-columns: 1fr 1fr;
}

.features-list {
  display: grid;
  gap: 24px;
}

.feature-item {
  align-items: flex-start;
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  border-radius: 16px;
  display: flex;
  gap: 16px;
  padding: 24px;
  transition: all 0.3s ease;
}

.feature-item:hover {
  background: #fff;
  border-color: var(--secondary-color);
  box-shadow:
    0 10px 15px -3px rgba(0, 0, 0, 0.1),
    0 4px 6px -4px rgba(0, 0, 0, 0.1);
  transform: translateX(-8px);
}

.feature-item i {
  align-items: center;
  background: #effaea;
  border-radius: 12px;
  color: var(--secondary-color);
  display: flex;
  flex-shrink: 0;
  font-size: 1.75rem;
  height: 40px;
  justify-content: center;
  margin-top: 4px;
  width: 40px;
}

.feature-item h4 {
  color: #0f172a;
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 8px;
}

.feature-item p {
  color: #475569;
  line-height: 1.7;
}

.content-image img {
  border-radius: 24px;
  box-shadow:
    0 20px 25px -5px rgba(0, 0, 0, 0.1),
    0 8px 10px -6px rgba(0, 0, 0, 0.1);
  height: 450px;
  object-fit: cover;
  transition: transform 0.4s ease;
  width: 100%;
}

.content-image:hover img {
  transform: scale(1.02);
}

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

.testimonials-section {
  padding: 6rem 0;
  position: relative;
}

.testimonials-bg {
  overflow: hidden;
}

.floating-shapes,
.testimonials-bg {
  height: 100%;
  left: 0;
  position: absolute;
  top: 0;
  width: 100%;
}

.shape {
  animation: floatShape 8s ease-in-out infinite;
  background: hsla(0, 0%, 100%, 0.1);
  border-radius: 50%;
  position: absolute;
}

.shape-1 {
  height: 100px;
  top: 20%;
  width: 100px;
}

.shape-1,
.shape-2 {
  background: var(--secondary-color);
}

.shape-2 {
  height: 60px;
  right: 80%;
  top: 80%;
  width: 60px;
}

.shape-3 {
  bottom: 12%;
  height: 80px;
  left: 77%;
  width: 80px;
}

.shape-3,
.shape-4 {
  background: var(--secondary-color);
}

.shape-4 {
  animation-delay: 2s;
  height: 60px;
  right: 20%;
  top: 20%;
  width: 60px;
}

@keyframes floatShape {

  0%,
  to {
    transform: translateY(0) rotate(0deg);
  }

  50% {
    transform: translateY(-30px) rotate(180deg);
  }
}

.testimonials-section .section-subtitle {
  color: hsla(0, 0%, 100%, 0.8);
}

.testimonials-slider {
  background: rgba(108, 206, 105, 0.2);
  margin: 3rem auto 0;
  max-width: 800px;
  overflow: hidden;
  position: relative;
}

.testimonial-card {
  backdrop-filter: blur(20px);
  background: rgba(108, 206, 105, 0.2);
  border-radius: 20px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
  display: none;
  padding: 3rem;
  text-align: center;
}

.testimonial-card.active {
  animation: slideIn 0.5s ease;
  display: block;
}

@keyframes slideIn {
  0% {
    opacity: 0;
    transform: translateY(20px);
  }

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

.quote-icon {
  color: #7c3aed;
  font-size: 4rem;
  line-height: 1;
  margin-bottom: 1rem;
}

.testimonial-text {
  color: #4b5563;
  font-size: 1.2rem;
  font-style: italic;
  line-height: 1.8;
  margin-bottom: 2rem;
}

.client-info {
  align-items: center;
  display: flex;
  gap: 1rem;
  justify-content: center;
  margin-bottom: 1.5rem;
}

.client-info img {
  border-radius: 50%;
  height: 60px;
  object-fit: cover;
  width: 60px;
}

.client-details h4 {
  color: #1e293b;
  font-size: 1.1rem;
  margin-bottom: 0.25rem;
}

.client-details span {
  color: #64748b;
  font-size: 0.9rem;
}

.rating {
  display: flex;
  gap: 0.25rem;
  justify-content: center;
}

.rating i {
  color: #fbbf24;
}

.testimonials-controls {
  gap: 2rem;
  margin-top: 3rem;
}

.next-btn,
.prev-btn,
.testimonials-controls {
  align-items: center;
  display: flex;
  justify-content: center;
}

.next-btn,
.prev-btn {
  background-color: var(--main-color);
  border: none;
  border-radius: 50%;
  color: #fff;
  cursor: pointer;
  height: 50px;
  position: relative;
  transition: all 0.3s ease;
  width: 50px;
  z-index: 2;
}

.next-btn:hover,
.prev-btn:hover {
  background-color: var(--main-color);
  transform: scale(1.1);
}

.dots-container {
  display: flex;
  gap: 1rem;
}

.dot {
  background: rgba(0, 0, 0, 0.5);
  border-radius: 50%;
  cursor: pointer;
  height: 12px;
  transition: all 0.3s ease;
  width: 12px;
}

.dot.active {
  background: #000;
  transform: scale(1.2);
}

@keyframes ripple {
  to {
    opacity: 0;
    transform: scale(4);
  }
}

@keyframes rippleAnimation {
  to {
    opacity: 0;
    transform: scale(4);
  }
}

.animate-in {
  animation: fadeInUp 0.6s ease forwards;
}

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

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

.ripple {
  position: absolute !important;
}

.blob-shape {
  pointer-events: none;
}

.hero-section .gradient-shape {
  left: -120px;
  top: 50%;
}

.hero-section .gradient-shape,
.hero-section .gradient-shape2 {
  background: linear-gradient(135deg, #3fd6dd, #17aabd);
  border-radius: 50%;
  height: 240px;
  opacity: 0.1;
  position: absolute;
  width: 240px;
}

.hero-section .gradient-shape2 {
  right: -120px;
  top: 20%;
}

.about-section .card .rounded-3 {
  background: linear-gradient(135deg, #3fd6dd, #17aabd);
}

.about-section .card .d-flex.align-items-center.justify-content-center {
  background: hsla(0, 0%, 100%, 0.2);
  border-radius: 12px;
  height: 64px;
  width: 64px;
}

.about-section .card .rounded-circle {
  background: #fff;
  height: 32px;
  width: 32px;
}

.about-section .card .d-flex.align-items-center.gap-2 .rounded-circle {
  background: hsla(0, 0%, 100%, 0.6);
  height: 8px;
  width: 8px;
}

.about-section .btn-primary {
  background-color: #17aabd;
  border-color: #17aabd;
}

.dashboard-section .blob-shape:first-child {
  background: linear-gradient(135deg, #428315, #428315);
  border-radius: 60% 40% 30% 70%/60% 30% 70% 40%;
  height: 288px;
  opacity: 0.15;
  position: absolute;
  right: -60px;
  top: -60px;
  width: 288px;
}

.dashboard-section .blob-shape:nth-child(2) {
  background: linear-gradient(135deg, #3fd6dd, #17aabd);
  border-radius: 40% 60% 70% 30%/40% 70% 30% 60%;
  bottom: -60px;
  height: 240px;
  left: -60px;
  opacity: 0.1;
  position: absolute;
  width: 240px;
}

.dashboard-section .btn-primary {
  background-color: #428315;
  border-color: #428315;
}

.dashboard-section {
  background: #f8fafc;
}

.dashboard-section .card {
  background: #fff;
  border-radius: 1.5rem;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.15);
}

.dashboard-section .badge {
  font-size: 0.75rem;
  font-weight: 500;
}

.dashboard-section .card .card:first-child .card-body {
  background: linear-gradient(135deg, #428315, #428315);
}

.dashboard-section .card .card:nth-child(2) .card-body {
  background: linear-gradient(135deg, #3fd6dd, #17aabd);
}

.dashboard-section .card .d-flex.align-items-center.justify-content-center {
  background: hsla(0, 0%, 100%, 0.2);
  height: 32px;
  width: 32px;
}

.dashboard-section .d-flex.align-items-center.gap-3.p-2.bg-light.rounded:first-child .rounded-circle {
  background: #428315;
  height: 8px;
  width: 8px;
}

.dashboard-section .d-flex.align-items-center.gap-3.p-2.bg-light.rounded:nth-child(2) .rounded-circle {
  background: #3fd6dd;
  height: 8px;
  width: 8px;
}

.dashboard-section .d-flex.align-items-center.gap-3.p-2.bg-light.rounded:nth-child(3) .rounded-circle {
  background: #428315;
  height: 8px;
  width: 8px;
}

.integration-section .btn-primary {
  background-color: #17aabd;
  border-color: #17aabd;
}

@media (max-width: 768px) {

  .blob-shape,
  .gradient-shape {
    display: none;
  }
}

@keyframes float {

  0%,
  to {
    transform: translateY(0);
  }

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

.floating {
  animation: float 6s ease-in-out infinite;
}

@keyframes pulse {

  0%,
  to {
    opacity: 1;
  }

  50% {
    opacity: 0.5;
  }
}

.pulsing {
  animation: pulse 2s ease-in-out infinite;
}

.floating-shape {
  animation: float2 8s ease-in-out infinite;
  border-radius: 50%;
  opacity: 0.6;
  position: absolute;
  z-index: -1;
}

.position-relative {
  z-index: 1;
}

.shape-1 {
  animation-delay: 0s;
  background-color: var(--secondary-color);
  height: 16px;
  left: 10%;
  top: 25%;
  width: 16px;
}

.shape-2 {
  animation-delay: 2s;
  background-color: var(--primary-color);
  height: 24px;
  opacity: 0.4;
  right: 20%;
  top: 25%;
  width: 24px;
}

.shape-3 {
  animation-delay: 4s;
  background-color: #3fd6dd;
  bottom: 20%;
  height: 12px;
  left: 25%;
  opacity: 0.5;
  width: 12px;
}

.shape-4 {
  animation-delay: 1s;
  height: 20px;
  opacity: 0.3;
  right: 15%;
  top: 50%;
  width: 20px;
}

.shape-4,
.shape-5 {
  background-color: var(--secondary-color);
}

.shape-5 {
  animation-delay: 3s;
  bottom: 30%;
  height: 16px;
  left: 15%;
  opacity: 0.4;
  width: 16px;
}

.shape-6 {
  animation-delay: 0.5s;
  background-color: #3fd6dd;
  height: 14px;
  left: 20%;
  opacity: 0.9;
  top: 50%;
  width: 14px;
}

.shape-7 {
  animation-delay: 2.5s;
  background-color: var(--secondary-color);
  bottom: 15%;
  height: 18px;
  opacity: 0.3;
  right: 25%;
  width: 18px;
}

.shape-8 {
  animation-delay: 1.5s;
  background-color: var(--primary-color);
  bottom: 30%;
  height: 22px;
  opacity: 0.4;
  right: 10%;
  width: 22px;
}

.shape-9 {
  animation-delay: 1s;
  background-color: var(--secondary-color);
  height: 20px;
  opacity: 0.3;
  right: 10%;
  top: 10%;
  width: 20px;
}

.shape-10 {
  animation-delay: 3s;
  background-color: #3fd6dd;
  bottom: 20%;
  height: 16px;
  left: 10%;
  opacity: 0.4;
  width: 16px;
}

.shape-11 {
  animation-delay: 0.5s;
  background-color: var(--primary-color);
  height: 12px;
  left: 20%;
  opacity: 0.5;
  top: 20%;
  width: 12px;
}

.shape-12 {
  animation-delay: 2.5s;
  background-color: var(--secondary-color);
  bottom: 10%;
  height: 20px;
  opacity: 0.3;
  right: 20%;
  width: 20px;
}

.shape-13 {
  animation-delay: 1.5s;
  background-color: #3fd6dd;
  height: 16px;
  left: 25%;
  opacity: 0.4;
  top: 10%;
  width: 16px;
}

.shape-14 {
  animation-delay: 3.5s;
  bottom: 10%;
  height: 24px;
  opacity: 0.3;
  right: 33%;
  width: 24px;
}

.shape-14,
.shape-15 {
  background-color: var(--secondary-color);
}

.shape-15 {
  animation-delay: 0.8s;
  bottom: 50%;
  height: 20px;
  opacity: 0.8;
  right: 20%;
  width: 20px;
}

.shape-16 {
  animation-delay: 2.8s;
  background-color: var(--secondary-color);
  bottom: 10%;
  height: 12px;
  left: 10%;
  opacity: 0.5;
  width: 12px;
}

@keyframes float2 {

  0%,
  to {
    transform: translateY(0) rotate(0deg);
  }

  25% {
    transform: translateY(-15px) rotate(90deg);
  }

  50% {
    transform: translateY(-30px) rotate(180deg);
  }

  75% {
    transform: translateY(-15px) rotate(270deg);
  }
}

.hexagon-frame {
  clip-path: polygon(25% 0, 75% 0, 100% 50%, 75% 100%, 25% 100%, 0 50%);
  height: 120px;
  margin: 0 auto 1.5rem;
  overflow: hidden;
  position: relative;
  width: 120px;
}

.hexagon-frame img {
  height: 100%;
  object-fit: cover;
  width: 100%;
}

.team-card h3 {
  color: #1e293b;
  font-size: 1rem;
  font-weight: 800;
  margin-bottom: 0.5rem;
  text-align: center;
}

.team-card p {
  color: var(--primary-color) !important;
  font-weight: 400;
  margin-bottom: 1.5rem;
  text-align: center;
}

.team-single-wrap {
  display: block;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.team-img,
.team-single-wrap {
  overflow: hidden;
  position: relative;
}

.team-img img {
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.team-single-wrap:hover .team-img img {
  -webkit-box-shadow: 0 0 1.25rem rgba(31, 45, 61, 0.05);
  box-shadow: 0 0 1.25rem rgba(31, 45, 61, 0.05);
  -webkit-transform: scale(1.1);
  transform: scale(1.1);
}

.team-social-list {
  position: absolute;
  right: 8%;
  top: 8%;
}

.list-inline-item:not(:last-child) {
  margin-right: 0.5rem;
}

.team-social-list li {
  margin: 3px 0 !important;
}

.list-inline-item {
  display: inline-block;
}

.team-social-list li a {
  background: #f5f5f5;
  border-radius: 3px;
  color: #737373;
  display: block;
  font-size: 15px;
  height: 32px;
  line-height: 32px;
  text-align: center;
  -webkit-transform: translateX(250px);
  transform: translateX(250px);
  -webkit-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
  width: 32px;
}

.team-single-wrap:hover .team-social-list li a {
  -webkit-box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.12);
  box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.12);
  -webkit-transform: translateX(0);
  transform: translateX(0);
}

.facebook-btn,
.google-btn {
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

.google-btn img {
  margin-left: 16px;
}

.shadow-sm {
  -webkit-box-shadow:
    0 0.125rem 0.3rem -0.0625rem rgba(12, 8, 0, 0.03),
    0 0.275rem 0.75rem -0.0625rem rgba(12, 8, 0, 0.06) !important;
  box-shadow:
    0 0.125rem 0.3rem -0.0625rem rgba(12, 8, 0, 0.03),
    0 0.275rem 0.75rem -0.0625rem rgba(12, 8, 0, 0.06) !important;
}

.google-btn:hover {
  background: rgba(23, 92, 255, 0.15) !important;
}

.bg-white li,
.bg-white p {
  color: #737373;
}

.divider-bar {
  background-color: #e5e5e5;
  min-height: 1px;
  width: 100%;
}

.divider-text {
  color: #262626;
  font-weight: 700;
  line-height: 1.056em;
  min-width: 60px;
  width: 60px;
}

.bg-light-subtle {
  background-color: #fafafa;
}

/* .text-danger {
    --bs-text-opacity: 1;
    color: #ff6b35 !important
} */

.form-control {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background-clip: padding-box;
  background-color: #fff;
  border: 1px solid rgba(17, 24, 39, 0.12);
  border-radius: 0.75rem;
  color: #737373;
  display: block;
  font-size: 0.9375rem;
  font-weight: 400;
  line-height: 1.75;
  padding: 0.65rem 1rem;
  -webkit-transition:
    border-color 0.15s ease-in-out,
    -webkit-box-shadow 0.15s ease-in-out;
  transition:
    border-color 0.15s ease-in-out,
    -webkit-box-shadow 0.15s ease-in-out;
  transition:
    border-color 0.15s ease-in-out,
    box-shadow 0.15s ease-in-out;
  transition:
    border-color 0.15s ease-in-out,
    box-shadow 0.15s ease-in-out,
    -webkit-box-shadow 0.15s ease-in-out;
  width: 100%;
}

.form-control:focus {
  border-color: var(--main-color);
  -webkit-box-shadow: none;
  box-shadow: none;
  outline: 0;
}

.register-form input.form-control:focus {
  border: 2px solid var(--main-color);
}

.btn-primary {
  align-items: center;
  background: var(--gradient-primary) !important;
  border: none;
  border-radius: 50px;
  color: var(--light-color);
  cursor: pointer;
  display: flex;
  font-size: 1rem;
  font-weight: 600;
  gap: 0.5rem;
  padding: 1rem 2rem;
  transition: all 0.3s ease;
  width: fit-content;
}

.btn-primary:hover {
  box-shadow: 0 10px 30px rgba(174, 226, 181, 0.7);
  transform: translateY(-2px);
}

/* a {
    color: var(--main-color)
} */

.swiper-navigation-icon {
  font-size: 13px;
}

.swiper-button-next,
.swiper-button-prev {
  background-color: #fff;
  border: 1px solid #fff;
  border-radius: 6px;
  -webkit-box-shadow: 0 11px 24px 0 rgba(0, 0, 0, 0.09);
  box-shadow: 0 11px 24px 0 rgba(0, 0, 0, 0.09);
  height: 40px;
  width: 40px;
  z-index: 2;
}

.digtal-marketing-logo .bg-light-subtle {
  background: #fff;
  border-radius: 20px;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
  padding: 50px;
}

/* ===== New Sections Styles ===== */

/* Section 1: Sector Hero */
.sector-hero-section {
  background: var(--gradient-primary);
  color: #fff;
  padding: 6rem 0;
  position: relative;
  overflow: hidden;
  margin-top: 70px;
}

.sector-hero-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background:
    radial-gradient(circle at 20% 50%,
      rgba(63, 214, 221, 0.1) 0%,
      transparent 50%),
    radial-gradient(circle at 80% 80%,
      rgba(108, 206, 105, 0.1) 0%,
      transparent 50%);
  pointer-events: none;
}

.sector-hero-content {
  position: relative;
  z-index: 2;
}

.sector-title {
  font-size: 3rem;
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 1.5rem;
  color: #fff;
}

.sector-subtitle {
  font-size: 1.2rem;
  margin-bottom: 3rem;
  opacity: 0.95;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.hero-ctas {
  display: flex;
  gap: 1.5rem;
  justify-content: center;
  flex-wrap: wrap;
}

.hero-ctas .btn-secondary {
  background: transparent;
  border: 2px solid rgba(255, 255, 255, 0.8);
  color: #fff;
}

.hero-ctas .btn-secondary:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: #fff;
}

/* Section 2: Problems Grid */
.problems-grid-section {
  background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
}

.problems-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.problem-card {
  background: #fff;
  border: 2px solid transparent;
  border-radius: 16px;
  padding: 2.5rem;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.problem-card:hover {
  border-color: var(--secondary-color);
  box-shadow: 0 10px 30px rgba(23, 170, 189, 0.15);
  transform: translateY(-5px);
}

.problem-card:hover .card-icon {
  border-color: var(--secondary-color);
  /* box-shadow: 0 10px 30px rgba(23, 170, 189, 0.15); */
  transform: scale(1.1) rotate(5deg);
}

.problem-card:hover::before {
  transform: scaleX(1);
}

.card-icon {
  font-size: 2rem;
  color: var(--secondary-color);
  margin-bottom: 1rem;
  background: rgb(108 206 105 / 5%) !important;
  width: fit-content;
  height: auto;
  border-radius: 16px;
  padding: 0px 12px;
  transition: all 0.4s ease;
}

.problem-card:nth-child(2):hover {
  border-color: var(--primary-color);
  box-shadow: 0 10px 30px rgba(23, 170, 189, 0.15);
  transform: translateY(-5px);
}

.problem-card:nth-child(2) .text-gradient {
  background: var(--gradient-secondary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.problem-card:nth-child(2) .card-icon {
  color: var(--primary-color);
}

.problem-card h3 {
  font-size: 1.5rem;
  color: var(--dark-color);
  margin-bottom: 0.8rem;
  font-weight: 700;
}

.card-question {
  font-weight: 600;
  color: var(--text-color);
  margin-bottom: 0.8rem;
  font-size: 0.95rem;
}

.card-description {
  /* color: var(--text-light); */
  line-height: 1.7;
}

/* Section 3: Solutions */
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2.5rem;
  margin-top: 3rem;
}

.feature-card {
  background: #fff;
  border-radius: 16px;
  padding: 2.5rem;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
}

.feature-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 40px rgba(23, 170, 189, 0.15);
}

.feature-icon {
  font-size: 3rem;
  color: white;
  /* color: var(--secondary-color); */
  margin-bottom: 1.5rem;
}

.feature-card h3 {
  font-size: 1.3rem;
  color: var(--dark-color);
  margin-bottom: 1rem;
  font-weight: 700;
}

.feature-card>p {
  color: var(--text-light);
  margin-bottom: 1.5rem;
  line-height: 1.7;
}

.features-list {
  list-style: none;
  padding: 0;
}

.features-list li {
  color: var(--text-color);
  margin-bottom: 0.8rem;
  display: flex;
  align-items: center;
  gap: 0.8rem;
}

.features-list i {
  color: var(--secondary-color);
}

/* Section 4: Customization */
.customization-section-new {
  background: #fff;
}

.customization-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.description-text {
  color: var(--text-light);
  font-size: 1rem;
  line-height: 1.8;
  margin-bottom: 2rem;
}

.customization-examples {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.example-item {
  display: flex;
  gap: 1rem;
  padding: 1.5rem;
  background: var(--light-color);
  border-radius: 12px;
  transition: all 0.3s ease;
}

.example-item:hover {
  background: #e8f5f9;
}

.example-item i {
  color: var(--secondary-color);
  font-size: 1.5rem;
  margin-top: 0.2rem;
}

.example-item h4 {
  color: var(--dark-color);
  margin-bottom: 0.3rem;
  font-weight: 700;
}

.example-item p {
  color: var(--text-light);
  font-size: 0.9rem;
}

.customization-image {
  display: flex;
  justify-content: center;
  align-items: center;
}

.image-placeholder {
  width: 100%;
  aspect-ratio: 1;
  background: var(--gradient-primary);
  border-radius: 16px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 5rem;
  color: rgba(255, 255, 255, 0.2);
}

/* Section 6: Demo Booking */
.demo-booking-section-new {
  background: #fff;
}

.booking-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  /* align-items: center; */
}

/* .booking-text h2 {
    font-size: 2.5rem;
    color: var(--dark-color);
    margin-bottom: 1rem;
    font-weight: 800;
    line-height: 1.2;
} */

.booking-subtitle {
  font-size: 1.15rem;
  color: var(--text-color);
  margin-bottom: 2rem;
  line-height: 1.6;
}

.booking-points {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-bottom: 2rem;
}

.point-item {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}

.point-item i {
  color: var(--main-color);
  font-size: 1.3rem;
  margin-top: 0.2rem;
  flex-shrink: 0;
}

.point-item p {
  color: var(--text-color);
  font-size: 0.95rem;
}

.booking-image {
  display: flex;
  justify-content: center;
}

/* Section Padding */
.section-padding {
  padding: 5rem 0;
}

.section-header {
  margin-bottom: 3rem;
}

.section-subtitle {
  font-size: 1.2rem;
  margin: 0 auto;
  max-width: 600px;
}

.bg-light {
  background: var(--white) !important;
}

/* Philosophy & Vision Styles */
.philosophy-content {
  font-size: 1.05rem;
  line-height: 1.8;
  color: var(--text-color);
}

.philosophy-text {
  margin-bottom: 1.5rem;
  color: #555;
}

.philosophy-highlight {
  background: rgba(23, 170, 189, 0.1);
  padding: 1rem;
  border-right: 4px solid var(--main-color);
  border-radius: 4px;
  font-size: 1.1rem;
}

.philosophy-visual {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 2rem;
  margin-top: 3rem;
}

.philosophy-card {
  padding: 2rem;
  background: white;
  border-radius: 12px;
  border: 1px solid #e0e0e0;
  text-align: center;
  transition: all 0.3s ease;
}

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

.philosophy-card .card-icon {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 80px;
  margin-bottom: 1rem;
}

.philosophy-card h4 {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--dark-color);
  margin-bottom: 0.5rem;
}

.cube-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}

.cube {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg,
      var(--main-color),
      var(--secondary-color));
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 2rem;
  transform: rotateY(20deg) rotateX(-10deg);
}

/* Support Features */
.support-features {
  margin-top: 2rem;
  gap: 2rem !important;
}

.support-item {
  padding: 1.5rem;
  background: white;
  border-radius: 12px;
  border: 1px solid #e0e0e0;
  text-align: center;
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.support-item:hover {
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
  transform: translateY(-5px);
}

.support-item i {
  font-size: 2.5rem;
  color: var(--main-color);
  margin-bottom: 1rem;
}

.support-item h4 {
  margin-top: 0.5rem;
  margin-bottom: 0.5rem;
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--dark-color);
}

.support-item p {
  font-size: 0.95rem;
  color: #666;
  line-height: 1.5;
}

/* Vision/Roadmap Styles */
.vision-roadmap {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}

.roadmap-item {
  padding: 2rem;
  background: white;
  border-radius: 12px;
  border: 1px solid var(--border-color);
  text-align: center;
  transition: all 0.3s ease;
}

.roadmap-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  border-color: var(--main-color);
}

.roadmap-item i {
  font-size: 3.5rem;
  color: var(--main-color);
  margin-bottom: 1.5rem;
  display: block;
  transition: transform 0.3s ease;
}

.roadmap-item:hover i {
  transform: scale(1.1);
}

.roadmap-item h4 {
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 1rem;
  color: var(--dark-color);
}

.roadmap-item p {
  font-size: 0.95rem;
  color: #666;
  line-height: 1.6;
  margin: 0;
}

/* Stats Section */
.stat-box {
  padding: 2.5rem 2rem;
  background: white;
  border-radius: 12px;
  border: 1px solid #e0e0e0;
  text-align: center;
  transition: all 0.3s ease;
}

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

.stat-number {
  font-size: 3.5rem;
  font-weight: 900;
  color: var(--main-color);
  margin-bottom: 0.5rem;
  display: block;
  line-height: 1;
}

.stat-label {
  font-size: 1rem;
  font-weight: 700;
  color: var(--dark-color);
  margin-bottom: 0.5rem;
  display: block;
}

.stat-description {
  font-size: 0.9rem;
  color: #777;
  line-height: 1.5;
  display: block;
}

/* Final CTA Section */
.final-cta {
  padding: 3.5rem 2.5rem;
  background: linear-gradient(135deg,
      rgba(23, 170, 189, 0.08),
      rgba(108, 206, 105, 0.08));
  border-radius: 16px;
  border: 2px solid var(--main-color);
}

.final-cta .section-title {
  margin-bottom: 1.5rem;
  font-size: 2.2rem;
  color: var(--dark-color);
}

.final-cta .section-subtitle {
  font-size: 1rem;
  color: #666;
  line-height: 1.6;
  margin-bottom: 2rem;
}

.cta-buttons {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  flex-wrap: wrap;
  margin-top: 2rem;
}

.cta-buttons a {
  padding: 1rem 2.5rem;
  border-radius: 50px;
  font-weight: 600;
  transition: all 0.3s ease;
  text-decoration: none;
  border: none;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  white-space: nowrap;
}

.cta-buttons .btn-primary {
  background: var(--main-color);
  color: white;
  box-shadow: 0 4px 15px rgba(23, 170, 189, 0.2);
}

.cta-buttons .btn-primary:hover {
  background: #128fa8;
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(23, 170, 189, 0.35);
}

.cta-buttons .btn-secondary {
  background: white;
  color: var(--main-color);
  border: 2px solid var(--main-color);
}

.cta-buttons .btn-secondary:hover {
  background: var(--main-color);
  color: white;
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(23, 170, 189, 0.25);
}

/* Responsive */
@media (max-width: 768px) {
  .demo-booking-section-new {
    padding-top: 0 !important;
  }

  .hero-buttons>div {
    width: 100%;
  }

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

  .sector-subtitle {
    font-size: 1rem;
  }

  .hero-ctas {
    flex-direction: column;
    gap: 1rem;
  }

  .hero-ctas button {
    width: 100%;
  }

  .customization-content,
  .booking-content {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .features-grid,
  .problems-grid,
  .integration-grid {
    grid-template-columns: 1fr;
  }

  .feature-card,
  .problem-card {
    padding: 1.5rem;
  }

  /* Responsive improvements for new sections */
  .philosophy-visual {
    flex-direction: column;
    gap: 1.5rem;
  }

  .philosophy-card {
    padding: 1.5rem;
  }

  .support-features {
    gap: 1.5rem !important;
  }

  .support-item {
    padding: 1.25rem;
  }

  .vision-roadmap {
    grid-template-columns: 1fr;
  }

  .roadmap-item {
    padding: 1.5rem;
  }

  .stat-box {
    padding: 2rem 1.5rem;
  }

  .stat-number {
    font-size: 2.5rem;
  }

  .stat-label {
    font-size: 0.95rem;
  }

  .cta-buttons {
    flex-direction: column;
  }

  .cta-buttons a {
    width: 100%;
    justify-content: center;
  }

  .final-cta {
    padding: 2.5rem 1.5rem;
  }

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

/* ========================================
   About Page Enhancements - ???? ?? ???
   ======================================== */

/* Hero Section - About Page */
.hero-section.about-hero {
  background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 50%, #fef3c7 100%);
  position: relative;
  overflow: hidden;
}

.hero-section.about-hero::before {
  content: "";
  position: absolute;
  top: -50%;
  right: -10%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle,
      rgba(99, 102, 241, 0.1) 0%,
      transparent 70%);
  border-radius: 50%;
  animation: floatBubble 8s ease-in-out infinite;
}

.hero-section.about-hero::after {
  content: "";
  position: absolute;
  bottom: -30%;
  left: -5%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle,
      rgba(147, 51, 234, 0.08) 0%,
      transparent 70%);
  border-radius: 50%;
  animation: floatBubble 10s ease-in-out infinite reverse;
}

@keyframes floatBubble {

  0%,
  100% {
    transform: translateY(0) scale(1);
  }

  50% {
    transform: translateY(-30px) scale(1.05);
  }
}

/* About Cards Enhancement */
.about-card {
  background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%) !important;
  border-radius: 20px !important;
  padding: 2.5rem !important;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06) !important;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1) !important;
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(99, 102, 241, 0.1) !important;
}

.about-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: var(--gradient-primary);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.5s ease;
}

.about-card:hover::before {
  transform: scaleX(1);
}

.about-card:hover {
  transform: translateY(-10px) !important;
  box-shadow: 0 20px 40px rgba(99, 102, 241, 0.15) !important;
  border-color: rgba(99, 102, 241, 0.3) !important;
}

.about-card .card-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 1.5rem;
  background: var(--gradient-primary);
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  transition: all 0.4s ease;
}

.about-card:hover .card-icon {
  transform: rotateY(360deg);
  background: var(--gradient-secondary);
}

.about-card .card-icon::before {
  content: "";
  position: absolute;
  inset: -4px;
  background: var(--gradient-primary);
  border-radius: 22px;
  opacity: 0;
  transition: opacity 0.4s ease;
  z-index: -1;
  filter: blur(10px);
}

.about-card:hover .card-icon::before {
  opacity: 0.6;
}

.about-card .card-icon i {
  font-size: 2rem !important;
  color: white !important;
}

.about-card h3 {
  font-size: 1.5rem !important;
  font-weight: 700 !important;
  margin-bottom: 1rem !important;
  color: #1e293b !important;
  position: relative;
  display: inline-block;
}

.about-card h3::after {
  content: "";
  position: absolute;
  bottom: -5px;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 3px;
  background: var(--gradient-primary);
  transition: width 0.4s ease;
  border-radius: 2px;
}

.about-card:hover h3::after {
  width: 100%;
}

.about-card p {
  color: #64748b !important;
  line-height: 1.8 !important;
  font-size: 1.05rem !important;
}

/* Section Headers Enhancement */

.section-header p {
  font-size: 1.15rem !important;
  max-width: 700px;
  margin: 1.5rem auto 0 !important;
  line-height: 1.8 !important;
}

/* Background Sections */
.bg-gray {
  background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%) !important;
  position: relative;
}

.bg-gray::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%236366f1' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  opacity: 0.5;
  pointer-events: none;
}

/* Stats Cards */
.stat-card {
  background: white !important;
  border-radius: 20px !important;
  padding: 2rem !important;
  text-align: center;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06) !important;
  transition: all 0.4s ease !important;
  border: 2px solid transparent !important;
  position: relative;
  overflow: hidden;
}

.stat-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg,
      transparent,
      rgba(99, 241, 194, 0.1),
      transparent);
  transition: left 0.6s ease;
}

.stat-card:hover::before {
  left: 100%;
}

.stat-card:hover {
  /* transform: translateY(-8px) scale(1.02) !important; */
  box-shadow: 0 20px 40px rgba(99, 241, 175, 0.15) !important;
  border-color: var(--secondary-color) !important;
}

.stat-card h3 {
  font-size: 3rem !important;
  font-weight: 800 !important;
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 0.5rem !important;
}

.stat-card p {
  color: #64748b !important;
  font-size: 1.1rem !important;
  font-weight: 500 !important;
}

/* Final CTA Section */
.final-cta {
  background: var(--gradient-primary) !important;
  border-radius: 30px !important;
  padding: 4rem 3rem !important;
  color: white !important;
  position: relative;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(99, 241, 175, 0.3) !important;
}

.final-cta::before {
  content: "";
  position: absolute;
  top: -50%;
  right: -20%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle,
      rgba(255, 255, 255, 0.1) 0%,
      transparent 70%);
  border-radius: 50%;
}

.final-cta::after {
  content: "";
  position: absolute;
  bottom: -30%;
  left: -15%;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle,
      rgba(255, 255, 255, 0.08) 0%,
      transparent 70%);
  border-radius: 50%;
}

.final-cta h2 {
  font-size: 2.5rem !important;
  font-weight: 800 !important;
  margin-bottom: 1rem !important;
  position: relative;
  z-index: 1;
  color: white !important;
}

.final-cta p {
  font-size: 1.2rem !important;
  margin-bottom: 2rem !important;
  opacity: 0.95;
  position: relative;
  z-index: 1;
}

.final-cta .btn-primary,
.final-cta .btn-secondary {
  margin: 0 0.5rem !important;
  position: relative;
  z-index: 1;
  padding: 1rem 2.5rem !important;
  font-size: 1.1rem !important;
  font-weight: 600 !important;
  border: 2px solid white !important;
}

.final-cta .btn-primary {
  background: white !important;
  color: var(--secondary-color) !important;
}

.final-cta .btn-primary:hover {
  background: transparent !important;
  color: white !important;
  transform: translateY(-3px) !important;
}

.final-cta .btn-secondary {
  background: transparent !important;
  color: white !important;
}

.final-cta .btn-secondary:hover {
  background: white !important;
  color: var(--secondary-color) !important;
  transform: translateY(-3px) !important;
}

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

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

.about-card,
.stat-card {
  animation: fadeInUp 0.6s ease forwards;
  opacity: 0;
}

.about-card:nth-child(1) {
  animation-delay: 0.1s;
}

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

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

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

/* Responsive Design */
@media (max-width: 768px) {
  .section-header h2 {
    font-size: 2rem !important;
  }

  .about-card {
    padding: 2rem !important;
  }

  .final-cta {
    padding: 3rem 2rem !important;
  }

  .final-cta h2 {
    font-size: 2rem !important;
  }

  .stat-card h3 {
    font-size: 2.5rem !important;
  }

  .final-cta .btn-primary,
  .final-cta .btn-secondary {
    display: block;
    width: 100%;
    margin: 0.5rem 0 !important;
  }
}

.company-logo {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100px;
  transition: all 0.3s ease;
  width: 100%;
  background: transparent !important;
}