* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
:root {
  --primary-color: #08a698;
  --light-color: #f4f4f6;
  --dark-color: #111;
}
body {
  font-family: 'Poppins', sans-serif;
  font-size: 16px;
  line-height: 1.5;
  background: #fff;
  overflow-x: hidden;
}

/* Prevent content flash before navbar/footer load */
body.loading {
  opacity: 0;
}

body.loaded {
  opacity: 1;
  transition: opacity 0.3s ease-in;
}
a {
  text-decoration: none;
  color: #333;
}
ul {
  list-style: none;
}
button {
  font-family: inherit;
}
img {
  max-width: 100%;
}
/* Navbar */
.navbar {
  background: #fff;
  padding-top: 20px;
  padding-left: 20px;
  padding-right: 20px;
  padding-bottom: 20px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  position: sticky;
  top: 0;
  z-index: 999;
}
.navbar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.logo {
  padding-top: 8px;
  max-width: 100%;
  height: auto;
  object-fit: contain;
}
.navbar .main-menu ul {
  display: flex;
  align-items: center;
}
.navbar ul li {
  position: relative;
}
.navbar ul li a {
  padding: 10px 20px;
  display: block;
  font-weight: 600;
  transition: 0.3s;
  color: #333;
}
.navbar ul li a:hover {
  color: var(--primary-color);
}
.navbar ul li a i {
  margin-left: 5px;
  font-size: 0.75rem;
}
.navbar ul li:last-child a {
  margin-left: 10px;
}

/* Dropdown Menu Styles */
.navbar .dropdown {
  position: relative;
}
.navbar .dropdown-toggle {
  cursor: pointer;
  display: flex;
  align-items: center;
}
.navbar .dropdown-menu {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%) translateY(-10px);
  background: #fff;
  min-width: 320px;
  max-width: 400px;
  width: 320px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
  border-radius: 8px;
  padding: 15px 0;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  z-index: 1000;
  border: 1px solid rgba(0, 0, 0, 0.08);
  margin-top: 5px;
  display: flex;
  flex-direction: column;
}
.navbar .dropdown:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}
.navbar .dropdown-menu li {
  list-style: none;
  white-space: normal;
  display: block;
  width: 100%;
}
.navbar .dropdown-menu li a {
  padding: 14px 25px;
  display: block;
  color: #333;
  font-weight: 500;
  font-size: 0.95rem;
  transition: all 0.3s ease;
  border-radius: 0;
  white-space: normal;
  line-height: 1.4;
  width: 100%;
}
.navbar .dropdown-menu li a:hover {
  background: rgba(8, 166, 152, 0.08);
  color: var(--primary-color);
  padding-left: 30px;
}
/* Hero */
.hero {
  margin-bottom: 50px;
}
.hero .container {
  background: url('../images/Images.png') no-repeat;
  background-size: contain;
  background-position: center bottom;
  height: 550px;
}
/* Keyframe animations for smooth up-down movement */
@keyframes floatUpDown {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-20px);
  }
}

/* Hero variations for different pages */
.hero.hero-features .container {
  background: linear-gradient(135deg, rgba(8, 166, 152, 0.05) 0%, rgba(8, 166, 152, 0.1) 100%);
  background-size: cover;
  background-position: center;
  border-radius: 20px;
  padding: 60px 40px;
  height: auto;
  min-height: 450px;
  position: relative;
}

.hero.hero-features .container::after {
  content: '';
  position: absolute;
  top: 0;
  right: 40px;
  width: 400px;
  height: 100%;
  background: url('../images/undraw_product-demo_9d4i.svg') no-repeat center;
  background-size: 400px auto;
  animation: floatUpDown 3s ease-in-out infinite;
  pointer-events: none;
  z-index: 1;
}

.hero.hero-industries .container {
  background: linear-gradient(120deg, rgba(8, 166, 152, 0.08) 0%, rgba(6, 209, 193, 0.08) 100%);
  background-size: cover;
  background-position: center;
  border-radius: 20px;
  padding: 60px 40px;
  height: auto;
  min-height: 450px;
  position: relative;
}

.hero.hero-industries .container::after {
  content: '';
  position: absolute;
  top: 0;
  right: 40px;
  width: 380px;
  height: 100%;
  background: url('../images/undraw_agreement_ftet.svg') no-repeat center;
  background-size: 380px auto;
  animation: floatUpDown 3s ease-in-out infinite;
  pointer-events: none;
  z-index: 1;
}
.hero .hero-content {
  width: 70%;
  position: relative;
  z-index: 2;
}
.hero .hero-text {
  width: 70%;
  margin-bottom: 20px;
  position: relative;
  z-index: 2;
}
/* Integration Cards Section */
.integrations {
  padding: 80px 0;
}
.integrations .section-header {
  margin-bottom: 60px;
}
.integrations .section-title {
  margin-bottom: 15px;
  color: #02d8c6;
}
.integrations .section-subtitle {
  max-width: 700px;
  margin: 0 auto;
  color: #f4f4f6;
  font-size: 1.1rem;
  line-height: 1.6;
}
.integrations-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 25px;
  margin-bottom: 50px;
}
.integration-card {
  background: #fff;
  border-radius: 12px;
  padding: 25px 20px;
  text-align: center;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
  border: 1px solid rgba(0, 0, 0, 0.05);
  position: relative;
  overflow: hidden;
}
.integration-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, var(--primary-color), #08a69880);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease;
}
.integration-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}
.integration-card:hover::before {
  transform: scaleX(1);
}
.card-icon {
  width: 60px;
  height: 60px;
  margin: 0 auto 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  border-radius: 12px;
  transition: all 0.3s ease;
}
.integration-card:hover .card-icon {
  background: transparent;
  transform: scale(1.05);
}
.card-icon img,
.card-icon i {
  max-width: 60px;
  max-height: 60px;
  object-fit: contain;
}
.card-icon i {
  font-size: 48px;
  color: var(--primary-color);
}
.card-title {
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 10px;
  color: var(--dark-color);
}
.card-description {
  font-size: 0.9rem;
  color: #666;
  line-height: 1.5;
  margin: 0;
}
.integrations-cta {
  padding-top: 30px;
  border-top: 1px solid rgba(0, 0, 0, 0.08);
}
.cta-text {
  margin-bottom: 20px;
  color: #fff;
  font-size: 1.1rem;
}
/* Responsive Design */
@media (max-width: 1200px) {
  .integrations-grid {
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  }
}
@media (max-width: 768px) {
  .integrations {
    padding: 60px 0;
  }
 
  .integrations-grid {
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 20px;
  }
 
  .integration-card {
    padding: 20px 15px;
  }
}
@media (max-width: 576px) {
  .integrations-grid {
    grid-template-columns: 1fr 1fr;
    gap: 15px;
  }
 
  .card-icon {
    width: 50px;
    height: 50px;
  }
 
  .card-icon img,
  .card-icon i {
    max-width: 50px;
    max-height: 50px;
  }
 
  .card-icon i {
    font-size: 40px;
  }
 
  .card-title {
    font-size: 1rem;
  }
 
  .card-description {
    font-size: 0.85rem;
  }
}
/* Testimonials */
.testimonials {
  padding: 60px 0;
}
.testimonials .testimonials-heading {
  width: 700px;
  margin-bottom: 40px;
}
.testimonials-grid {
  overflow: hidden;
}
.testimonials-track {
  display: flex;
  flex-wrap: nowrap;
  gap: 30px;
  width: fit-content;
  animation: autoSlide 25s linear infinite;
}
.testimonials .card {
  flex-shrink: 0;
  padding: 30px;
  min-height: 250px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  position: relative;
}
.testimonials .card p {
  line-height: 1.6;
}
.testimonial-quote {
  font-size: 1rem;
  line-height: 1.7;
  margin-bottom: 20px;
  font-style: italic;
  color: #333;
}
.testimonial-footer {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-top: auto;
}
.testimonial-info {
  flex: 1;
}
.testimonial-name {
  font-weight: bold;
  font-size: 1rem;
  margin-bottom: 4px;
  color: #111;
}
.testimonial-company {
  font-size: 0.9rem;
  color: #666;
  margin: 0;
}
.testimonial-avatar-bottom {
  width: 60px;
  height: 60px;
  flex-shrink: 0;
  margin-left: 20px;
}
.testimonial-avatar-bottom img {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--primary-color);
}
@keyframes autoSlide {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}
/* Pause on hover */
.testimonials-grid:hover .testimonials-track {
  animation-play-state: paused;
}
/* Responsive for testimonials slider */
@media (min-width: 671px) {
  .testimonials-track .card {
    width: calc(33.333% - 20px); /* Adjust for 3 items with gap */
  }
}
@media (max-width: 670px) {
  .testimonials-track .card {
    width: 100%;
  }
  .testimonials-track {
    gap: 30px;
  }
}
/* Pricing */
.pricing {
  padding: 40px 0;
}
.pricing .pricing-heading {
  margin-bottom: 10px;
}
.pricing-title {
  text-align: center;
  font-size: 2.8rem;
  font-weight: 700;
  color: var(--dark-color);
  margin-top: 18px;
  margin-bottom: 16px;
  line-height: 1.2;
}
.pricing .pricing-subheading {
  margin-bottom: 30px;
}
.pricing .pricing-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 25px;
  margin-top: 35px;
}
.pricing .pricing-card-header {
  padding: 25px 25px 15px;
}
.pricing .pricing-card-body {
  padding: 15px 25px 25px;
}
.pricing .pricing-card-subheading {
  margin-bottom: 20px;
  font-size: 0.9rem;
  line-height: 1.5;
}
.pricing .pricing-card-price {
  margin-bottom: 20px;
  padding: 15px 0;
  border-bottom: 1px solid #ccc;
}
.pricing ul {
  margin: 20px 0;
}
.pricing ul li {
  margin-bottom: 12px;
  font-size: 0.95rem;
}
.pricing ul li i {
  margin-right: 10px;
}
.pricing .pricing-footer {
  margin: 25px 0 0;
  font-size: 0.9rem;
}
/* FAQ */
.faq {
  padding: 40px 0;
}
.faq .faq-group {
  border-bottom: 1px solid #ccc;
  padding-bottom: 20px;
}
.faq .faq-group .faq-group-header {
  padding: 20px 0;
  margin-bottom: 15px;
  position: relative;
}
.faq .faq-group .faq-group-header h4 {
  font-weight: 600;
  width: 95%;
}
.faq .faq-group .faq-group-header i {
  position: absolute;
  right: 0;
  top: 35px;
  font-size: 1.3rem;
  cursor: pointer;
}
.faq .faq-group .faq-group-body {
  display: none;
}
.faq .faq-group .faq-group-body.open {
  display: block;
}
.faq ul.faq-menu {
  max-width: 400px;
  margin: auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: #ddd;
  padding: 10px 20px;
  border-radius: 10px;
  font-weight: 600;
  cursor: pointer;
}
.faq ul.faq-menu li {
  padding: 10px 20px;
  border-radius: 5px;
  text-align: center;
}
.faq ul.faq-menu li.active {
  background: var(--primary-color);
  color: #fff;
}
.about{
  background-color: #f9f9f9;
}
/* About Section */
.about .container {
 
  display: grid;
  gap: 30px;
  padding: 60px 20px;
}
.about-banner {
  filter: drop-shadow(2px 2px 5px hsla(0, 0%, 0%, 0.08));
}
.about-banner img {
  width: 100%;
  height: auto;
  border-radius: 10px;
}
.about .section-title {
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--dark-color);
  margin-bottom: 20px;
  line-height: 1.3;
}
.about .section-text {
  margin-block: 20px 13px;
  color: #666;
  line-height: 1.8;
}
.about-list {
  margin-block-end: 50px;
  margin-top: 30px;
}
.about-list .has-before {
  font-size: 1.1rem;
  font-weight: 600;
  padding-inline-start: 20px;
  line-height: 1.5;
  position: relative;
  color: #333;
}
.about-list .has-before:not(:last-child) {
  margin-block-end: 15px;
}
.about-list .has-before::before {
  content: '';
  position: absolute;
  top: 10px;
  left: 0;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background-color: var(--primary-color);
}
.about .btn-group {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  align-items: center;
  gap: 35px;
}
.about .btn-group .flex-btn {
  display: flex;
  align-items: center;
  gap: 10px;
  background: none;
  border: none;
  cursor: pointer;
}
.about .btn-icon ion-icon {
  color: var(--primary-color);
  font-size: 40px;
}
.about .btn-group .span {
  color: var(--primary-color);
  font-size: 1.3rem;
  font-weight: 600;
}
.about .btn-primary {
  background-color: var(--primary-color);
  color: #fff;
  padding: 12px 30px;
  border-radius: 5px;
  font-weight: 600;
  text-transform: uppercase;
  transition: all 0.3s ease;
}
.about .btn-primary:hover {
  background-color: #067368;
  transform: translateY(-2px);
}
.w-100 {
  width: 100%;
}
.section {
  padding: 40px 0;
}
/* Responsive for About Section */
@media (min-width: 992px) {
  .about .container {
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 60px;
  }
 
  .about .section-title {
    font-size: 2.8rem;
  }
}

@media (min-width: 768px) and (max-width: 991px) {
  .about .section-title {
    font-size: 2.5rem;
  }
  
  .about .container {
    gap: 40px;
  }
}

@media (max-width: 767px) {
  .about .container {
    padding: 40px 20px;
  }
  
  .about-banner {
    max-width: 100%;
    margin: 0 auto 30px;
  }
  
  .about-banner img {
    width: 100%;
    height: auto;
    max-width: 500px;
    margin: 0 auto;
    display: block;
  }
  
  .about .section-title {
    font-size: 2rem;
    text-align: center;
  }
  
  .about .section-text {
    text-align: center;
  }
  
  .about-list {
    margin-block-end: 40px;
    margin-top: 25px;
  }
  
  .about .btn-group {
    justify-content: center;
  }
}

@media (max-width: 500px) {
  .about .section-title {
    font-size: 1.75rem;
  }
  
  .about-list .has-before {
    font-size: 1rem;
  }
  
  .about .btn-icon ion-icon {
    font-size: 35px;
  }
  
  .about .btn-group .span {
    font-size: 1.1rem;
  }
}
/* Service Section */
.service {
  padding: 60px 0;
  background-color: #fff;
}
.service .container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}
.service .section-subtitle {
  color: var(--primary-color);
  font-weight: 500;
  font-size: 1rem;
  margin-bottom: 10px;
}
.service .section-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--dark-color);
  margin-bottom: 20px;
}
.service .section-text {
  margin-block: 15px 50px;
  color: #666;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.8;
}
.service .grid-list {
  display: grid;
  gap: 30px;
  margin-block-end: 50px;
}
.service-card {
  height: 100%;
  padding: 30px 25px;
  text-align: center;
  box-shadow: 0 3px 20px rgba(0, 0, 0, 0.08);
  border-radius: 8px;
  background: #fff;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}
.service-card::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 3px;
  background-color: var(--primary-color);
  transition: width 0.5s ease;
}
.service-card:hover::after,
.service-card:focus-within::after {
  width: 100%;
}
.service-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}
.service-card .card-icon {
  max-width: 80px;
  margin-inline: auto;
  margin-block-end: 20px;
}
.service-card .img {
  transition: transform 0.3s ease;
}
.service-card:hover .img,
.service-card:focus-within .img {
  transform: scale(1.1);
}
.service-card .card-content {
  text-align: center;
}
.service-card .card-title {
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--dark-color);
  margin-bottom: 15px;
}
.service-card .card-text {
  margin-block: 5px 20px;
  color: #666;
  line-height: 1.7;
  font-size: 0.95rem;
}
.service .btn-link {
  color: var(--dark-color);
  font-size: 0.9rem;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: all 0.3s ease;
  font-weight: 500;
}
.service .btn-link:hover {
  color: var(--primary-color);
  gap: 12px;
}
.service .btn-link ion-icon {
  font-size: 18px;
}
.service > .container > .btn-fixed {
  display: block;
  margin: 0 auto;
  background-color: var(--primary-color);
  color: #fff;
  padding: 15px 40px;
  border-radius: 5px;
  font-weight: 600;
  text-transform: uppercase;
  transition: all 0.3s ease;
  max-width: 200px;
}
.service > .container > .btn-fixed:hover {
  background-color: #067368;
  transform: translateY(-2px);
}
.h2 {
  font-size: 2.2rem;
  line-height: 1.3;
}
.h3 {
  font-size: 1.3rem;
  line-height: 1.4;
}
.grid-list {
  display: grid;
  gap: 20px;
}
.text-center {
  text-align: center;
}
/* Responsive for Service Section */
@media (min-width: 575px) {
  .service .grid-list {
    grid-template-columns: 1fr 1fr;
  }
 
  .service-card {
    text-align: left;
  }
 
  .service-card .card-icon {
    margin-inline: 0;
  }
 
  .service-card .card-content {
    text-align: left;
  }
 
  .service .btn-link {
    justify-content: flex-start;
  }
}

@media (max-width: 574px) {
  .service {
    padding: 40px 0;
  }
  
  .service .section-title {
    font-size: 2rem;
  }
  
  .service .grid-list {
    gap: 20px;
  }
  
  .service-card {
    padding: 25px 20px;
  }
  
  .service-card .card-icon {
    max-width: 70px;
  }
  
  .service-card .card-title {
    font-size: 1.2rem;
  }
  
  .service > .container > .btn-fixed {
    width: 100%;
    max-width: 100%;
  }
}

@media (min-width: 992px) {
  .service-card {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    text-align: left;
  }
 
  .service-card .card-icon {
    flex-shrink: 0;
  }
}
/* Features Section */
.features {
  padding: 60px 0;
  background-color: #f9f9f9;
}
.features .container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}
.features .section-subtitle {
  color: var(--primary-color);
  font-weight: 500;
  font-size: 1rem;
  margin-bottom: 10px;
}
.features .section-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--dark-color);
  margin-bottom: 20px;
}
.features .section-text {
  margin-block: 15px 50px;
  color: #666;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.8;
}
.features .grid-list {
  display: grid;
  gap: 30px;
}
.features-card {
  position: relative;
  background-color: #fff;
  padding: 25px;
  padding-block-start: 40px;
  margin-block-start: 24px;
  box-shadow: 0 3px 20px rgba(0, 0, 0, 0.08);
  border-radius: 8px;
  transition: all 0.5s ease;
}
.features-card:hover {
  background-color: var(--primary-color);
  transform: translateY(-5px);
  box-shadow: 0 8px 30px rgba(8, 166, 152, 0.3);
}
.features-card .card-number {
  position: absolute;
  top: 0;
  left: 25px;
  transform: translateY(-50%);
  background-color: var(--light-color);
  font-size: 1.5rem;
  font-weight: 600;
  padding: 8px 12px;
  min-width: 50px;
  text-align: center;
  border-radius: 5px;
  transition: all 0.3s ease;
  color: var(--dark-color);
}
.features-card:hover .card-number {
  color: var(--primary-color);
  background-color: #fff;
}
.features-card .card-title {
  font-size: 1.3rem;
  margin-block-end: 10px;
  font-weight: 600;
  color: var(--dark-color);
  transition: color 0.3s ease;
}
.features-card .card-text {
  color: #666;
  line-height: 1.7;
  font-size: 0.95rem;
  transition: color 0.3s ease;
}
.features-card:hover .card-title,
.features-card:hover .card-text {
  color: #fff;
}
/* Responsive for Features Section */
@media (min-width: 768px) {
  .features .grid-list {
    grid-template-columns: 1fr 1fr;
  }
}
@media (min-width: 992px) {
  .features .grid-list {
    grid-template-columns: repeat(3, 1fr);
  }
}
/* FAQ Section - Modern Minimalist Design */
.faq {
  padding: 80px 0;
  background: linear-gradient(135deg, #f8fafb 0%, #ffffff 100%);
}
.faq .container-sm {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 20px;
}
.faq-header {
  text-align: center;
  margin-bottom: 60px;
}
.faq-subtitle {
  color: var(--primary-color);
  font-size: 0.95rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 12px;
}
.faq-title {
  font-size: 2.8rem;
  font-weight: 700;
  color: var(--dark-color);
  margin-bottom: 16px;
  line-height: 1.2;
}
.faq-description {
  font-size: 1.1rem;
  color: #666;
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.7;
}
.faq-content {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.faq-item {
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  overflow: hidden;
  border: 1px solid rgba(0, 0, 0, 0.06);
}
.faq-item:hover {
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
  transform: translateY(-2px);
}
.faq-question {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 24px 28px;
  background: transparent;
  border: none;
  cursor: pointer;
  text-align: left;
  transition: all 0.3s ease;
  gap: 20px;
}
.faq-question:hover {
  background: rgba(8, 166, 152, 0.02);
}
.faq-question[aria-expanded="true"] {
  background: rgba(8, 166, 152, 0.05);
  padding-bottom: 20px;
}
.question-text {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--dark-color);
  line-height: 1.5;
  flex: 1;
}
.faq-icon {
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  position: relative;
  color: var(--primary-color);
}
.faq-icon svg {
  position: absolute;
  top: 0;
  left: 0;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.icon-plus {
  opacity: 1;
  transform: rotate(0deg);
}
.icon-minus {
  opacity: 0;
  transform: rotate(-90deg);
}
.faq-question[aria-expanded="true"] .icon-plus {
  opacity: 0;
  transform: rotate(90deg);
}
.faq-question[aria-expanded="true"] .icon-minus {
  opacity: 1;
  transform: rotate(0deg);
}
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.faq-item.active .faq-answer {
  max-height: 500px;
}
.faq-answer-content {
  padding: 0 28px 24px 28px;
  animation: fadeIn 0.8s ease;
}
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.faq-answer-content p {
  font-size: 1rem;
  line-height: 1.8;
  color: #555;
  margin: 0;
}
/* Responsive FAQ */
@media (max-width: 768px) {
  .faq {
    padding: 60px 0;
  }
 
  .faq-title {
    font-size: 2rem;
  }
 
  .faq-description {
    font-size: 1rem;
  }
 
  .faq-question {
    padding: 20px;
  }
 
  .question-text {
    font-size: 1rem;
  }
 
  .faq-answer-content {
    padding: 0 20px 20px 20px;
  }
 
  .faq-answer-content p {
    font-size: 0.95rem;
  }
}
/* Blogs Section */
.blogs {
  padding: 60px 0;
  background-color: #f9f9f9;
}
.blogs .section-subtitle {
  color: var(--primary-color);
  font-weight: 500;
  font-size: 1rem;
  margin-bottom: 10px;
}
.blogs .section-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--dark-color);
  margin-bottom: 20px;
}
.blogs .section-text {
  margin-block: 15px 50px;
  color: #666;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.8;
}
.blogs-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 30px;
}
.blog-card {
  background: #fff;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  position: relative;
}
.blog-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}
.blog-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
}
.blog-content {
  padding: 20px;
}
.blog-title {
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--dark-color);
  margin-bottom: 10px;
}
.blog-excerpt {
  font-size: 0.95rem;
  color: #666;
  line-height: 1.6;
  margin-bottom: 15px;
}
.blog-card .btn-link {
  color: var(--primary-color);
  font-weight: 500;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  transition: gap 0.3s;
}
.blog-card .btn-link:hover {
  gap: 8px;
}
.blog-card .btn-link ion-icon {
  font-size: 16px;
}
/* Responsive for Blogs */
@media (max-width: 768px) {
  .blogs-grid {
    grid-template-columns: 1fr;
  }
  
  .blog-image {
    height: 220px;
  }
}

@media (max-width: 500px) {
  .blogs-grid {
    gap: 20px;
  }
  
  .blog-image {
    height: 180px;
  }
  
  .blog-content {
    padding: 15px;
  }
  
  .blog-title {
    font-size: 1.15rem;
  }
}
/* Footer */
.footer {
  padding: 0;
  background: linear-gradient(135deg, #000 0%, #1a1a1a 100%);
  position: relative;
  margin-top: 150px;
}

/* Footer Wave */
.footer-wave {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 80px;
  transform: translateY(-100%);
  z-index: 1;
  line-height: 0;
}

.footer-wave svg {
  display: block;
  width: 100%;
  height: 100%;
}

/* Footer CTA Card */
.footer-cta-card {
  position: absolute;
  top: -100px;
  left: 50%;
  transform: translateX(-50%);
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 10px 60px rgba(0, 0, 0, 0.15);
  padding: 35px 60px;
  max-width: 900px;
  width: 90%;
  z-index: 10;
  text-align: center;
}

.footer-cta-content {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 40px;
  margin-bottom: 15px;
}

.footer-cta-title {
  font-size: 3rem;
  font-weight: 700;
  color: var(--dark-color);
  margin: 0;
  line-height: 1;
}

.footer-cta-btn {
  background: linear-gradient(135deg, #7c5cff, #6366f1);
  color: #fff;
  padding: 18px 45px;
  font-size: 1.1rem;
  font-weight: 600;
  border-radius: 10px;
  text-transform: none;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(99, 102, 241, 0.3);
}

.footer-cta-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 25px rgba(99, 102, 241, 0.4);
}

.footer-cta-policy {
  font-size: 1.1rem;
  color: #666;
  margin: 0;
  font-weight: 500;
}

.footer .container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 160px 40px 0 40px;
  position: relative;
  z-index: 2;
}

/* Footer Main - Single Row Layout */
.footer-main {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 50px;
  align-items: start;
  padding-bottom: 40px;
}

.footer-brand {
  max-width: 100%;
  display: flex;
  flex-direction: column;
}

.footer-column {
  display: flex;
  flex-direction: column;
}

.footer-logo {
  margin-bottom: 20px;
  display: inline-block;
  width: fit-content;
}

.footer-logo img {
  height: 35px;
  width: auto;
  display: block;
}

.footer-tagline {
  color: #b0b0b0;
  font-size: 1rem;
  line-height: 1.6;
  margin-bottom: 25px;
}

.footer-social {
  display: flex;
  gap: 12px;
  align-items: center;
  margin-top: auto;
}

.social-link {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 50%;
  color: #fff;
  font-size: 1rem;
  transition: all 0.3s ease;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.social-link:hover {
  background: var(--primary-color);
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(8, 166, 152, 0.3);
  border-color: var(--primary-color);
}

.footer-social .app-badge {
  display: inline-block;
  transition: all 0.3s ease;
  opacity: 0.9;
  margin-left: 8px;
}

.footer-social .app-badge:hover {
  opacity: 1;
  transform: translateY(-2px);
}

.footer-social .app-badge img {
  height: 40px;
  width: auto;
  display: block;
}

.footer-column {
  text-align: left;
}

.footer-heading {
  font-size: 1rem;
  color: #fff;
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 20px;
  letter-spacing: 0.5px;
  position: relative;
  padding-bottom: 12px;
  margin-top: auto;
}

.footer-heading::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 35px;
  height: 2px;
  background: var(--primary-color);
}

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

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

.footer-links a {
  color: #b0b0b0;
  font-size: 0.95rem;
  transition: all 0.3s ease;
  display: inline-block;
  position: relative;
  padding-left: 0;
}

.footer-links a::before {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 1px;
  background: var(--primary-color);
  transition: width 0.3s ease;
}

.footer-links a:hover {
  color: var(--primary-color);
  padding-left: 10px;
}

.footer-links a:hover::before {
  width: calc(100% - 10px);
}

/* Footer Contact Column */
.footer-contact .contact-list {
  list-style: none;
  padding: 0;
  margin: 0 0 20px 0;
}

.footer-contact .contact-list li {
  display: flex;
  align-items: flex-start;
  margin-bottom: 12px;
  color: #b0b0b0;
  font-size: 0.9rem;
  line-height: 1.5;
}

.footer-contact .contact-list li i {
  color: var(--primary-color);
  font-size: 1rem;
  margin-right: 12px;
  margin-top: 2px;
  flex-shrink: 0;
}

.footer-contact .contact-list a {
  color: #b0b0b0;
  transition: color 0.3s ease;
}

.footer-contact .contact-list a:hover {
  color: var(--primary-color);
}

/* Footer Apps */
.footer-apps {
  margin-top: 20px;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  gap: 10px;
  align-items: center;
}

.app-badge {
  display: inline-block;
  transition: all 0.3s ease;
  opacity: 0.9;
}

.app-badge:hover {
  opacity: 1;
  transform: translateY(-2px);
}

.app-badge img {
  height: 40px;
  width: auto;
  display: block;
}

/* Footer Bottom */
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 25px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-copyright {
  margin: 0;
  padding: 0;
  border: none;
}

.footer-copyright p {
  color: #888;
  font-size: 0.9rem;
  margin: 0;
  line-height: 1.5;
}

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

.footer-bottom-links a {
  color: #888;
  font-size: 0.9rem;
  transition: color 0.3s ease;
}

.footer-bottom-links a:hover {
  color: var(--primary-color);
}

.footer-bottom-links .separator {
  color: #555;
}

/* Responsive Footer */
@media (max-width: 1200px) {
  .footer-main {
    grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
    gap: 35px;
  }
  
  .footer-cta-card {
    top: -80px;
    padding: 30px 50px;
  }
  
  .footer-cta-title {
    font-size: 2.5rem;
  }
  
  .footer .container {
    padding-top: 140px;
  }
}

@media (max-width: 992px) {
  .footer-main {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
  }
  
  .footer-brand {
    grid-column: span 2;
    text-align: center;
  }
  
  .footer-social {
    justify-content: center;
  }
  
  .footer-cta-card {
    top: -70px;
    padding: 28px 30px;
  }
  
  .footer-cta-content {
    flex-direction: column;
    gap: 25px;
  }
  
  .footer-cta-title {
    font-size: 2.2rem;
  }
  
  .footer .container {
    padding-top: 130px;
  }
}

@media (max-width: 768px) {
  .footer {
    margin-top: 120px;
  }
  
  .footer .container {
    padding: 120px 20px 0 20px;
  }
  
  .footer-cta-card {
    top: -55px;
    padding: 25px 25px;
    width: 92%;
  }
  
  .footer-cta-content {
    flex-direction: column;
    gap: 20px;
    margin-bottom: 12px;
  }
  
  .footer-cta-title {
    font-size: 2rem;
  }
  
  .footer-cta-btn {
    padding: 16px 35px;
    font-size: 1rem;
  }
  
  .footer-cta-policy {
    font-size: 1rem;
  }
  
  .footer-main {
    grid-template-columns: 1fr;
    gap: 35px;
    padding-bottom: 30px;
  }
  
  .footer-brand {
    grid-column: span 1;
    text-align: center;
  }
  
  .footer-column {
    text-align: center;
  }
  
  .footer-heading::after {
    left: 50%;
    transform: translateX(-50%);
  }
  
  .footer-contact .contact-list li {
    justify-content: center;
  }
  
  .footer-apps {
    justify-content: center;
  }
  
  .footer-bottom {
    flex-direction: column;
    gap: 15px;
    text-align: center;
    padding: 25px 0;
  }
}

@media (max-width: 500px) {
  .footer {
    margin-top: 100px;
  }
  
  .footer .container {
    padding-top: 100px;
  }
  
  .footer-cta-card {
    top: -45px;
    padding: 22px 20px;
    width: 95%;
  }
  
  .footer-cta-title {
    font-size: 1.75rem;
  }
  
  .footer-cta-btn {
    padding: 14px 30px;
    font-size: 0.95rem;
  }
  
  .footer-cta-policy {
    font-size: 0.9rem;
  }
  
  .footer-main {
    gap: 30px;
  }
  
  .footer-heading {
    font-size: 0.95rem;
    margin-bottom: 15px;
  }
  
  .footer-links li {
    margin-bottom: 8px;
  }
  
  .footer-contact .contact-list li {
    font-size: 0.85rem;
  }
  
  .app-badge img {
    height: 35px;
  }
}
/* Utility Classes */
.container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 15px;
}
.container-sm {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 15px;
}
/* Card */
.card {
  background: #fff;
  color: #000;
  border-radius: 10px;
  padding: 20px;
}
/* Buttons */
.btn {
  display: inline-block;
  padding: 13px 20px;
  background: var(--light-color);
  color: #333;
  font-weight: 600;
  text-decoration: none;
  border: none;
  border-radius: 10px;
  cursor: pointer;
  text-align: center;
  transition: 0.5s;
}
.btn:hover {
  opacity: 0.8;
}
.btn-primary {
  background: var(--primary-color);
  color: #fff;
}
.btn-dark {
  background: var(--dark-color);
  color: #fff;
}
.btn-block {
  display: block;
  width: 100%;
}
/* Text Classes */
.text-xxl {
  font-size: 3rem;
  line-height: 1.2;
  font-weight: 600;
  margin: 40px 0 20px;
}
.text-xl {
  font-size: 2.2rem;
  line-height: 1.4;
  font-weight: normal;
  margin: 40px 0 20px;
}
.text-lg {
  font-size: 1.8rem;
  line-height: 1.4;
  font-weight: normal;
  margin: 30px 0 20px;
}
.text-md {
  font-size: 1.2rem;
  line-height: 1.4;
  font-weight: normal;
  margin: 20px 0 10px;
}
.text-sm {
  font-size: 0.9rem;
  line-height: 1.4;
  font-weight: normal;
  margin: 10px 0 5px;
}
.text-center {
  text-align: center;
}
/* Background */
.bg-primary {
  background: var(--primary-color);
  color: #fff;
}
.bg-light {
  background: var(--light-color);
  color: #333;
}
.bg-dark {
  background: var(--dark-color);
  color: #fff;
}
.bg-black {
  background: #000;
  color: #fff;
}
/* Hamburger Button */
.hamburger-button {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 10px;
  z-index: 1000;
}
.hamburger-button .hamburger-line {
  width: 30px;
  height: 3px;
  background: #333;
  margin: 6px 0;
}
/* Mobile Menu */
.mobile-menu {
  position: fixed;
  top: 0;
  right: -300px;
  width: 280px;
  height: 100%;
  z-index: 100;
  background: #fff;
  box-shadow: -4px 0 20px rgba(0, 0, 0, 0.15);
  transition: right 0.3s ease-in-out;
  overflow-y: auto;
}
.mobile-menu.active {
  right: 0;
}
.mobile-menu ul {
  margin-top: 100px;
  padding: 0 20px;
}
.mobile-menu ul li {
  margin: 5px 0;
  border-bottom: 1px solid #f0f0f0;
}
.mobile-menu ul li:last-child {
  border-bottom: none;
}
.mobile-menu ul li a {
  font-size: 16px;
  transition: 0.3s;
  padding: 15px 10px;
  display: block;
}
.mobile-menu ul li a:hover {
  color: var(--primary-color);
  padding-left: 20px;
}

/* Mobile Menu Dropdown */
.mobile-menu .dropdown-menu {
  position: static;
  box-shadow: none;
  background: rgba(8, 166, 152, 0.05);
  border-radius: 0;
  padding: 0;
  margin-top: 5px;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
  border: none;
}
.mobile-menu .dropdown.active .dropdown-menu {
  max-height: 400px;
  padding: 5px 0;
}
.mobile-menu .dropdown-toggle {
  position: relative;
}
.mobile-menu .dropdown-toggle i {
  transition: transform 0.3s ease;
}
.mobile-menu .dropdown.active .dropdown-toggle i {
  transform: rotate(180deg);
}
.mobile-menu .dropdown-menu li {
  border-bottom: none;
}
.mobile-menu .dropdown-menu li a {
  font-size: 14px;
  padding: 10px 20px;
  padding-left: 30px;
}
.mobile-menu .dropdown-menu li a:hover {
  background: rgba(8, 166, 152, 0.1);
  padding-left: 40px;
}
/* Media Queries */
@media (max-width: 960px) {
  .text-xxl {
    font-size: 2.5rem;
  }
}
@media (max-width: 1024px) {
  .hero.hero-features .container,
  .hero.hero-industries .container {
    background-size: cover;
    background-position: center;
    padding: 50px 30px;
    min-height: 400px;
  }
  
  .hero.hero-features .container::after {
    right: 20px;
    width: 300px;
    background-size: 300px auto;
  }
  
  .hero.hero-industries .container::after {
    right: 20px;
    width: 300px;
    background-size: 300px auto;
  }
  
  .hero .hero-content {
    width: 60%;
  }
  
  .hero .hero-text {
    width: 60%;
  }
}

@media (max-width: 768px) {
  .hero.hero-features .container,
  .hero.hero-industries .container {
    background-size: cover;
    background-position: center;
    padding: 40px 20px 280px 20px;
    min-height: auto;
  }
  
  .hero.hero-features .container::after,
  .hero.hero-industries .container::after {
    right: 50%;
    transform: translateX(50%);
    width: 250px;
    background-size: 250px auto;
    background-position: center bottom;
    animation: floatUpDown 3s ease-in-out infinite;
  }
  
  @keyframes floatUpDown {
    0%, 100% {
      transform: translateX(50%) translateY(0);
    }
    50% {
      transform: translateX(50%) translateY(-20px);
    }
  }
  
  .hero .hero-content {
    width: 100%;
    text-align: center;
  }
  
  .hero .hero-text {
    width: 100%;
    text-align: center;
  }
}

@media (max-width: 670px) {
  .navbar .main-menu {
    display: none;
  }
  .navbar .hamburger-button {
    display: block;
  }
  .hero .container {
    background: url('../images/Image-mobile.png') no-repeat;
    background-size: 350px 400px;
    background-position: bottom;
    height: 770px;
  }
  
  .hero.hero-features .container,
  .hero.hero-industries .container {
    background-size: cover;
    background-position: center;
    padding: 30px 20px 250px 20px;
    border-radius: 15px;
  }
  
  .hero.hero-features .container::after,
  .hero.hero-industries .container::after {
    width: 220px;
    background-size: 220px auto;
  }
  
  .hero .hero-content,
  .hero .hero-text {
    width: 100%;
    text-align: center;
  }
  .hero .hero-buttons .btn {
    margin-bottom: 10px;
    display: block;
    width: 100%;
  }
  .testimonials .testimonials-heading {
    max-width: 100%;
    text-align: center;
  }
  .pricing .pricing-grid,
  .footer .footer-grid {
    grid-template-columns: 1fr;
  }
  .footer .card {
    margin-right: 0;
  }
  /* Text */
  .text-xl {
    font-size: 1.9rem;
  }
  .text-lg {
    font-size: 1.5rem;
  }
  .text-md {
    font-size: 1.1rem;
  }
}
@media (max-width: 500px) {
  .text-xxl {
    font-size: 2rem;
  }
  
  .hero.hero-features .container,
  .hero.hero-industries .container {
    background-size: cover;
    background-position: center;
    padding: 25px 15px 220px 15px;
    border-radius: 12px;
  }
  
  .hero.hero-features .container::after,
  .hero.hero-industries .container::after {
    width: 180px;
    background-size: 180px auto;
  }
  
  .hero .hero-buttons {
    display: flex;
    flex-direction: column;
    gap: 10px;
  }
}
/* Centered Popup Styles */
.popup-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6); /* Darken background */
  backdrop-filter: blur(5px); /* Beautiful blur effect */
  -webkit-backdrop-filter: blur(5px); /* Safari support */
  display: none;
  z-index: 999; /* Below popup but above content */
  opacity: 0;
  transition: opacity 0.5s ease; /* Smoother fade */
}
.popup-overlay.active {
  display: block;
  opacity: 1;
}
.centered-popup {
position: fixed;
top: 50%;
left: 50%;
transform: translate(-50%, -50%) scale(0.95);
max-width: 770px;
width: 95%;
background: #fff;
border-radius: 10px;
padding: 40px;
box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
z-index: 1000;
display: none;
opacity: 0;
transition: opacity 0.5s ease, transform 0.5s ease;
font-family: 'Poppins', sans-serif; /* Match site font */
}
.centered-popup.active {
display: block;
opacity: 1;
transform: translate(-50%, -50%) scale(1); /* Scale to normal on active */
}
.popup-title {
font-size: 2rem;
font-weight: 600;
margin: 0 0 15px;
color: var(--dark-color);
line-height: 1.3;
text-align: center;
}
.popup-description {
font-size: 1.15rem;
color: #666;
margin-top: 25px;
margin-bottom: 30px;
margin-left: 20px;
margin-right: 20px;
line-height: 1.5;
text-align: center;
}
.popup-buttons {
display: flex;
gap: 20px;
justify-content: center;
}
.button-stack {
position: relative;
display: inline-block;
}
.button-stack::after {
content: '';
position: absolute;
bottom: -4px;
left: 0;
width: 100%;
height: 100%;
background: var(--primary-color);
border-radius: 5px;
z-index: -1;
transition: opacity 0.5s ease, transform 0.5s ease;
opacity: 1;
transform: translateY(4px);
}
.button-stack:hover::after {
opacity: 0;
transform: translateY(8px);
}
.button-stack .btn {
text-transform: uppercase;
font-weight: 700;
font-size: 1.1rem;
padding: 15px 25px;
border-radius: 5px;
min-width: 280px;
display: flex;
align-items: center;
justify-content: center;
position: relative;
overflow: hidden;
background: var(--dark-color);
color: #fff;
z-index: 1;
transition: color 0.5s ease;
}
.button-stack .btn-dark::before {
content: '';
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
background: var(--primary-color);
clip-path: ellipse(0% 0% at 50% 100%);
transition: clip-path 0.4s ease-in-out;
z-index: -1;
}
.button-stack:hover .btn-dark::before {
clip-path: ellipse(200% 150% at 50% 100%);
}
.popup-close {
position: absolute;
top: 4px;
right: 15px;
font-size: 2.5rem;
cursor: pointer;
color: #777;
transition: color 0.3s, transform 0.3s;
}
.popup-close:hover {
color: var(--primary-color);
transform: rotate(90deg);
}
@media (max-width: 670px) {
.centered-popup {
padding: 30px;
}
.popup-title {
font-size: 1.7rem;
}
.popup-description {
font-size: 1.1rem;
}
.popup-buttons {
flex-direction: column;
gap: 15px;
}
.popup-buttons .btn {
width: 100%;
min-width: auto;
}
}
.sticky-button-stack {
  position: fixed;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  z-index: 1000;
}
.sticky-btn {
  padding: 20px 10px;
  width: 45px;
  border-radius: 8px 0 0 8px;
  font-size: 16px;
  font-weight: bold;
  white-space: nowrap;
  writing-mode: sideways-lr;
  text-orientation: mixed;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
  letter-spacing: 3px;
}


.sticky-button-stack::after {
  top: 0;
  bottom: auto;
  right: 0;
  left: auto;
  border-radius: 8px 0 0 8px;
  transform: translateX(-4px);
}
.sticky-button-stack:hover::after {
  opacity: 0;
  transform: translateX(-4px);
}
.sticky-button-stack .btn-dark {
  text-transform: uppercase;
  font-weight: 600;
  font-size: 1.2rem;
  border-radius: 8px 0 0 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  background: var(--dark-color);
  color: #fff;
  z-index: 1;
  transition: color 0.5s ease;
}
.sticky-button-stack .btn-dark::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--primary-color);
  clip-path: ellipse(0% 50% at 0% 50%);
  transition: clip-path 0.4s ease-in-out;
  z-index: -1;
}
.sticky-button-stack:hover .btn-dark::before {
  clip-path: ellipse(200% 150% at 0% 50%);
}
