/* Global Styles */
.logo {
  display: flex;
  align-items: center;
}

.logo-img {
  height: 50px;
  margin-right: 15px;
}

.logo-text {
  display: flex;
  flex-direction: column;
}

.logo-title {
  font-weight: 700;
  font-size: 1.2rem;
  background: linear-gradient(90deg, #ffb800 0%, #f83600 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  letter-spacing: 0.5px;
}

.tagline {
  font-size: 0.79rem;
  font-weight: 500;
  color: #666;
  letter-spacing: 0.2px;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  scroll-behavior: smooth;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen,
    Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif;
}

body {
  color: #333;
  line-height: 1.6;
  background-color: #f8f7ee;
}

a {
  text-decoration: none;
  color: inherit;
}

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

.btn {
  display: inline-block;
  background: linear-gradient(135deg, #ffb800 0%, #f83600 100%);
  color: #fff;
  padding: 12px 28px;
  border-radius: 30px;
  font-weight: 600;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 10px rgba(0, 31, 63, 0.2);
}

.btn:hover {
  opacity: 0.9;
  transform: translateY(-2px);
}

.section {
  padding: 80px 0;
}

.section-title {
  font-size: 3.5rem;
  margin-bottom: 30px;
  font-weight: 700;
  color: #333;
}

/* Header */
header {
  padding: 15px 0;
  background-color: transparent;
  box-shadow: none;
  position: sticky;
  top: 0;
  z-index: 100;
}

.header-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: #ffffff;
  border-radius: 50px;
  padding: 3.5px 5px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
  width: 310px;
  margin: 0;
  position: absolute;
  top: 22px;
  left: 10px;
}

.header-container2 {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: #ffffff;
  border-radius: 50px;
  padding: 16px 25px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
  width: 650px;
  margin-top: 6px;
  position: absolute;
  top: 17px;
  left: 28%;
}
.logo {
  display: flex;
  align-items: center;
}

.logo-img {
  height: 80px;
  margin-right: 10px;
}
.icon-img {
  height: 40px;
  margin-right: 10px;
}

nav {
  display: flex;
  align-items: center;
}

nav ul {
  display: flex;
  list-style: none;
  margin: 0;
  padding: 0;
}

nav ul li {
  margin: 0 18px;
  font-weight: 500;
}

nav ul li a {
  color: #333;
  position: relative;
  padding: 5px 0;
  text-decoration: none;
  transition: color 0.3s;
}

nav ul li a:hover {
  color: #ffb800;
}

/* Active state for nav items */
nav ul li a.active {
  color: #ffb800;
}

nav ul li a.active:after {
  content: "";
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, #ffb800 0%, #f83600 100%);
  border-radius: 10px;
}

.nav-right {
  display: flex;
  align-items: center;
  position: absolute;
  top: 10px;
  right: 0;
  z-index: 99;
  padding: 16px 25px;
}

.nav-right .btn {
  display: flex;
  align-items: center;
  justify-content: center;
  color: linear-gradient(135deg, #ffb800 0%, #f83600 100%);
  background-color: #fff;
  padding: 15px 30px;
  border-radius: 30px;
  font-weight: 600;
  transition: transform 0.3s, box-shadow 0.3s;
  box-shadow: 0 4px 12px rgba(248, 54, 0, 0.2);
  width: 150px;
}

.nav-right .btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 15px rgba(248, 54, 0, 0.3);
}

/* Cart icon style */
.cart-icon {
  background-color: #f0f0f0;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-left: 15px;
  transition: background-color 0.3s;
}

.cart-icon:hover {
  background-color: #e0e0e0;
}

/* YouTube Video Section */
.video-container {
  padding: 50px 20px;
  text-align: center;
}

.video-title {
  font-size: 28px;
  margin-bottom: 30px;
  color: white;
}

.youtube-video-wrapper {
  position: relative;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding-bottom: 56.25%; /* 16:9 Aspect Ratio */
  height: 0;
  overflow: hidden;
  border-radius: 12px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
}

.youtube-video-wrapper iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.disclaimer-text {
  text-align: center;
  color: #666;
  margin-top: 20px;
  font-size: 12px;
}

/* Media query for smaller screens */
@media (max-width: 768px) {
  .video-container {
    padding: 30px 15px;
  }

  .video-title {
    font-size: 24px;
  }
}

/* Responsive adjustments */
@media (max-width: 1025px) {
  .header-container {
    border-radius: 30px;
    padding: 10px 20px;
  }

  nav ul li {
    margin: 0 12px;
  }
}

@media (max-width: 1024px) {
  .header-container {
    border-radius: 25px;
    padding: 10px 15px;
  }
  .header-container2 {
    width: auto;
    height: 60px;
    position: "absolute";
    left: 85%;
    top: 22px;
    padding: 7px 15px;
    border-radius: 70px;
  }

  nav ul {
    display: none;
  }
  .nav-right {
    display: none;
  }

  /* Add mobile menu button */
  .mobile-menu-btn {
    display: block;
    background: none;
    border: none;
    font-size: 24px;
    cursor: pointer;
    margin-left: 15px;
  }
}
.hamburger-menu {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 30px;
  height: 20px;
  cursor: pointer;
  z-index: 200;
}

.hamburger-menu span {
  display: block;
  height: 3px;
  width: 100%;
  background-color: #333;
  border-radius: 3px;
  transition: all 0.3s ease;
}

/* Mobile Menu */
.mobile-nav {
  position: fixed;
  top: 0;
  right: -100%;
  width: 70%;
  height: 100vh;
  background-color: #fff;
  z-index: 150;
  padding: 80px 40px 40px;
  box-shadow: -5px 0 15px rgba(0, 0, 0, 0.1);
  transition: right 0.3s ease;
  overflow-y: auto;
}

.mobile-nav ul {
  display: flex;
  flex-direction: column;
  list-style: none;
}

.mobile-nav ul li {
  margin: 15px 0;
}

.mobile-nav ul li a {
  font-size: 1.2rem;
  font-weight: 600;
  color: #333;
  transition: color 0.3s;
}

.mobile-nav ul li a:hover {
  color: #ffb800;
}

.mobile-nav-footer {
  margin-top: 40px;
  text-align: center;
}

.mobile-nav-footer .btn {
  width: 100%;
  margin-bottom: 20px;
}

/* Overlay for mobile menu */
.overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  /* background-color: rgba(0, 0, 0, 0.5); */
  z-index: 140;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}

/* Active states for mobile menu */
.mobile-nav.active {
  right: 0;
}

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

.hamburger-menu.active span:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}

.hamburger-menu.active span:nth-child(2) {
  opacity: 0;
}

.hamburger-menu.active span:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

/* Responsive adjustments */
@media (max-width: 992px) {
  .header-container {
    border-radius: 30px;
    padding: 10px 20px;
  }

  nav ul li {
    margin: 0 12px;
  }
}

@media (max-width: 1024px) {
  .header-container {
    border-radius: 25px;
    padding: 8px 10px;
  }

  nav {
    display: none;
  }

  .hamburger-menu {
    display: flex;
  }
}
/* Active Navigation Indicator Styles */
.nav-indicator-container {
  position: relative;
  display: flex;
}

.nav-indicator {
  position: absolute;
  bottom: -5px;
  height: 3px;
  background: linear-gradient(90deg, #ffb800 0%, #f83600 100%);
  border-radius: 10px;
  transition: all 0.3s ease;
}

/* Remove the static active indicators */
nav ul li a.active:after {
  display: none;
}

/* Update the active link color */
nav ul li a.active {
  color: #ffb800;
}

/* Hero Section */
.hero {
  background-color: #f8f7ee;
  padding-top: 80px;
  position: relative;
  overflow: hidden;
}

.hero-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  padding-top: 10px;
}

.hero-content {
  width: 50%;
  padding-right: 20px;
}

.hero h1 {
  font-size: 4.5rem;
  line-height: 1.1;
  margin-bottom: 30px;
  color: #666;
}

.hero p {
  font-size: 1.1rem;
  margin-bottom: 30px;
  opacity: 0.8;
}

.hero-image {
  width: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero-image img {
  width: 80%;
  /* height: 85%; */
}

/* Categories Section */
.categories {
  background: linear-gradient(135deg, #fafafa 0%, #f0f0f0 100%);
  padding: 40px 0;
  text-align: center;
  position: relative;
}

/* The curve at the bottom of the section */
.categories::after {
  content: "";
  position: absolute;
  bottom: -1px;
  left: 0;
  width: 100%;
  height: 60px;
  background-color: #fff;
  clip-path: ellipse(50% 60px at 50% 60px);
  z-index: 1;
}

.categories-tabs {
  display: inline-flex;
  background: linear-gradient(135deg, #001f3f 0%, #003366 100%);
  border-radius: 30px;
  padding: 5px;
  margin-bottom: 40px;
  color: #fff;
}

.category-tab {
  padding: 12px 30px;
  border-radius: 30px;
  font-weight: 500;
  cursor: pointer;
}

.category-tab.active {
  background: linear-gradient(135deg, #ffb800 0%, #f83600 100%);
  color: #fff;
}

/* Cards Grid */
.cards-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  position: relative;
  z-index: 2;
}

.card {
  background-color: #fff;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease;
  position: relative;
}

.card:hover {
  transform: translateY(-10px);
  background: linear-gradient(135deg, #001f3f 0%, #003366 100%);
  color: white;
}

.card-content {
  padding: 30px;
}

.card-title {
  font-size: 1.4rem;
  margin-bottom: 15px;
  font-weight: 700;
}

.card-text {
  margin-bottom: 25px;
  color: #666;
}
.card:hover .card-text {
  margin-bottom: 25px;
  color: #fff;
}
.card-action {
  display: flex;
  align-items: center;
  font-weight: 600;
}

.card-action-arrow {
  margin-left: 10px;
  transition: transform 0.3s ease;
}

.card:hover .card-action-arrow {
  transform: translateX(5px);
}

.card-image {
  height: 200px;
  background-color: #f8f7ee;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Features */
.features {
  padding: 80px 0;
  background-color: #fff;
  position: relative;
}

/* Adding curved top to features section */
.features::before {
  content: "";
  position: absolute;
  top: -1px;
  left: 0;
  width: 100%;
  height: 60px;
  background-color: #fff;
  clip-path: ellipse(50% 60px at 50% 0);
  z-index: 1;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  position: relative;
  z-index: 2;
}

.feature-card {
  padding: 30px;
  text-align: center;
  border-radius: 16px;
  background-color: #f8f7ee;
  transition: transform 0.3s ease;
}

.feature-card:hover {
  transform: translateY(-10px);
  background: linear-gradient(135deg, #001f3f 0%, #003366 100%);
  color: white;
}

.feature-card img {
  width: 100px;
  height: 100px;
  object-fit: cover;
  /* margin-bottom: 15px; */
}

.feature-card h3 {
  margin: 15px 0;
  color: #333;
}
.feature-card:hover h3 {
  color: #fff;
}

/* Circular icon container for feature cards */
.feature-card .icon-circle {
  width: 90px;
  height: 90px;
  border: 2px solid #2c3e50;
  border-radius: 50%;
  background: white;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
  padding: 15px;
}

.feature-card .icon-circle img {
  width: 60px;
  height: 60px;
  object-fit: contain;
}
/* How It Works */
.how-it-works {
  background: linear-gradient(135deg, #001f3f 0%, #003366 100%);
  padding: 80px 0;
  position: relative;
  color: #fff;
}
.how-it-works::before {
  content: "";
  position: absolute;
  top: -1px;
  left: 0;
  width: 100%;
  height: 60px;
  background-color: #f8f7ee;
  clip-path: ellipse(50% 60px at 50% 0);
  z-index: 1;
}
/* Adding curved bottom to how-it-works section */
.how-it-works::after {
  content: "";
  position: absolute;
  bottom: -1px;
  left: 0;
  width: 100%;
  height: 60px;
  background-color: #f8f7ee;
  background: linear-gradient(135deg, #fafafa 0%, #f0f0f0 100%);
  clip-path: ellipse(50% 60px at 50% 60px);
  z-index: 1;
}

.how-it-works-content {
  max-width: 1500px;
  margin: 0 auto;
  text-align: center;
}

/* How It Works Flow Styles */
.steps-flow {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 50px;
  position: relative;
  z-index: 2;
}

.step-item {
  flex: 1;
  text-align: center;
  position: relative;
  padding: 0 20px;
  max-width: 250px;
}

.step-image {
  width: 140px;
  height: 140px;
  background-color: rgba(247, 245, 245, 0.2);
  border-radius: 50%;
  margin: 0 auto 25px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 3px solid rgba(255, 255, 255, 0.3);
  transition: transform 0.3s ease;
}

.step-image:hover {
  transform: scale(1.05);
}

.step-image img {
  width: 90px;
  height: 90px;
  object-fit: contain;
}

.step-content {
  color: #fff;
}

.step-number {
  display: inline-block;
  width: 30px;
  height: 30px;
  background-color: rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  line-height: 30px;
  font-weight: 700;
  margin-bottom: 15px;
  border: 2px solid rgba(255, 255, 255, 0.3);
  color: white;
}

.step-title {
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 10px;
  color: white;
}

.step-description {
  font-size: 1rem;
  line-height: 1.5;
  opacity: 0.9;
  color: white;
}

/* Arrow between steps */
.step-arrow {
  position: absolute;
  top: 60px;
  right: -15px;
  width: 30px;
  height: 30px;
  z-index: 3;
}

.step-arrow::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) rotate(45deg);
  width: 15px;
  height: 15px;
  border-top: 3px solid rgba(255, 255, 255, 0.7);
  border-right: 3px solid rgba(255, 255, 255, 0.7);
}

/* Hide arrow after last step */
.step-item:last-child .step-arrow {
  display: none;
}

/* Responsive Design */
@media (max-width: 992px) {
  .steps-flow {
    flex-wrap: wrap;
    justify-content: center;
    gap: 40px;
  }

  .step-item {
    flex: none;
    width: 45%;
    max-width: none;
  }

  .step-arrow {
    display: none;
  }
}

@media (max-width: 768px) {
  .steps-flow {
    flex-direction: column;
    gap: 50px;
  }

  .step-item {
    width: 100%;
    padding: 0 10px;
  }

  .step-image {
    width: 100px;
    height: 100px;
  }

  .step-image img {
    width: 50px;
    height: 50px;
  }
}

/* Animation for steps */
.step-item {
  opacity: 0;
  transform: translateY(30px);
  animation: stepFadeIn 0.6s ease forwards;
}

.step-item:nth-child(1) {
  animation-delay: 0.1s;
}
.step-item:nth-child(2) {
  animation-delay: 0.2s;
}
.step-item:nth-child(3) {
  animation-delay: 0.3s;
}
.step-item:nth-child(4) {
  animation-delay: 0.4s;
}

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

/* Audience Sections */
.audience-sections {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  margin-top: 60px;
  position: relative;
  z-index: 2;
}

.audience-section {
  padding: 40px;
  border-radius: 16px;
  background-color: #fff;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
  color: black;
}

.audience-section h2 {
  margin-bottom: 20px;
  font-size: 1.8rem;
}

.audience-section ul {
  list-style: none;
}

.audience-section ul li {
  margin-bottom: 15px;
  padding-left: 20px;
  position: relative;
}

.audience-section ul li:before {
  content: "✓";
  position: absolute;
  left: 0;
  color: #ffb800;
  font-weight: bold;
}

/* Offerings */
.offerings {
  padding: 80px 0;
  background-color: #f8f7ee;
  position: relative;
}

.offerings-text {
  max-width: 800px;
  margin-bottom: 40px;
  font-size: 1.2rem;
  color: #666;
}

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

.offering-card {
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
  background-color: #fff;
  transition: transform 0.3s ease;
}

.offering-card:hover {
  transform: translateY(-10px);
}

/* FAQ Section Styles */
.faq-container {
  max-width: 900px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.faq-group {
  margin-bottom: 40px;
}

.faq-group h3 {
  font-size: 1.8rem;
  margin-bottom: 25px;
  color: #333;
  position: relative;
  padding-bottom: 10px;
}

.faq-group h3:after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, #ffb800 0%, #f83600 100%);
  border-radius: 10px;
}

.faq-item {
  margin-bottom: 15px;
  border-radius: 12px;
  background-color: #f8f7ee;
  overflow: hidden;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.05);
}

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

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

.faq-question h4 {
  font-size: 1.1rem;
  font-weight: 600;
  margin: 0;
  color: #333;
}

.faq-toggle {
  font-size: 1.5rem;
  font-weight: 700;
  color: #ffb800;
  transition: transform 0.3s ease;
}

.faq-item.active .faq-toggle {
  transform: rotate(45deg);
}

.faq-answer {
  padding: 0 25px;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.4s ease;
}

.faq-item.active .faq-answer {
  padding: 0 25px 20px;
  max-height: 1000px; /* Large enough to accommodate any answer */
}

.faq-answer p {
  margin: 0;
  line-height: 1.6;
  color: #666;
}
/* Testimonials */
.testimonials {
  padding: 80px 0;
  background-color: #fff;
  position: relative;
}

/* Adding curved top to testimonials section */
.testimonials::before {
  content: "";
  position: absolute;
  top: -1px;
  left: 0;
  width: 100%;
  height: 60px;
  background-color: #fff;
  clip-path: ellipse(50% 60px at 50% 0);
  z-index: 1;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  position: relative;
  z-index: 2;
}

.testimonial-card {
  background-color: #f8f7ee;
  padding: 30px;
  border-radius: 16px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease;
}

.testimonial-card:hover {
  transform: translateY(-10px);
}

.testimonial-card p {
  font-size: 1.1rem;
  margin-bottom: 20px;
  color: #333;
  font-style: italic;
}

.client-info {
  display: flex;
  align-items: center;
}

.client-info img {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  margin-right: 15px;
}

/* Call to Action */
.cta {
  background: linear-gradient(135deg, #001f3f 0%, #003366 100%);
  padding: 100px 0;
  text-align: center;
  color: #fff;
  position: relative;
}
.cta::before {
  content: "";
  position: absolute;
  top: -1px;
  left: 0;
  width: 100%;
  height: 60px;
  background-color: #fff;
  clip-path: ellipse(50% 60px at 50% 0);
  z-index: 1;
}

/* Adding curved bottom to CTA section */
.cta::after {
  content: "";
  position: absolute;
  bottom: -1px;
  left: 0;
  width: 100%;
  height: 60px;
  background-color: #f8f7ee;
  clip-path: ellipse(50% 60px at 50% 60px);
  z-index: 1;
}

.cta h2 {
  font-size: 3.5rem;
  margin-bottom: 30px;
}

.cta p {
  font-size: 1.2rem;
  margin-bottom: 40px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.cta .btn {
  position: relative;
  z-index: 2;
}

/* Footer */
footer {
  background-color: #f8f7ee;
  padding: 80px 0 30px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 60px;
}

.footer-links h4 {
  margin-bottom: 20px;
  font-size: 1.2rem;
  color: #333;
}

.footer-links ul {
  list-style: none;
}

.footer-links ul li {
  margin-bottom: 15px;
  color: #666;
}

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

.footer-subscription label {
  margin-bottom: 10px;
  color: #333;
}

.footer-subscription input {
  padding: 12px;
  margin-bottom: 15px;
  border: 1px solid #ddd;
  border-radius: 8px;
}

.social-links {
  display: flex;
  margin-top: 20px;
}

.social-links a {
  margin-right: 20px;
  font-weight: 500;
  color: #333;
}

.footer-bottom {
  display: flex;
  text-align: center;
  justify-content: space-between;
  padding-top: 30px;
  border-top: 1px solid rgba(0, 0, 0, 0.1);
  color: #666;
}

.footer-terms {
  display: flex;
  text-align: center;
  gap: 20px;
}

.footer-container {
  display: flex;
  text-align: center;
  justify-content: space-between;
  padding-bottom: 30px;
}

/* Scroll to Top Button */
.scroll-to-top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  background-color: #ffb800;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  cursor: pointer;
  z-index: 100;
  transition: transform 0.3s ease, opacity 0.3s ease;
  opacity: 0;
  visibility: hidden;
  z-index: 9999;
}

.scroll-to-top.show {
  opacity: 1;
  visibility: visible;
}

.scroll-to-top img {
  width: 40px;
  height: 40px;
  filter: brightness(0) invert(1); /* Makes the icon white */
  transition: transform 0.3s ease;
}

/* Alternative: If you want to use your gradient colors for the icon */
.scroll-to-top.gradient-icon {
  background: linear-gradient(135deg, #ffb800 0%, #f83600 100%);
}

.scroll-to-top.gradient-icon img {
  filter: brightness(0) invert(1);
}

/* Pulse animation for attention */
.scroll-to-top::before {
  content: "";
  position: absolute;
  top: -5px;
  left: -5px;
  right: -5px;
  bottom: -5px;
  border-radius: 50%;
  background: linear-gradient(135deg, #ffb800 0%, #f83600 100%);
  opacity: 0.3;
  animation: scrollPulse 2s infinite;
  z-index: -1;
}

.footer-logo {
  display: flex;
  align-items: center;
  justify-content: center;
}

.akupay-logo-container {
  display: flex;
  gap: 10px;
  align-items: center;
  margin: 3px 0;
}

.akupay-logo {
  height: 15px;
}

.aku-tagline {
  font-size: 8px;
}

@keyframes scrollPulse {
  0% {
    transform: scale(1);
    opacity: 0.3;
  }
  50% {
    transform: scale(1.1);
    opacity: 0.1;
  }
  100% {
    transform: scale(1);
    opacity: 0.3;
  }
}

/* Enhanced hover effect */
.scroll-to-top:hover {
  transform: scale(1.05);
  background: linear-gradient(135deg, #f83600 0%, #ffb800 100%);
  box-shadow: 0 8px 25px rgba(248, 54, 0, 0.3);
}

/* Responsive */
@media (max-width: 992px) {
  .features-grid,
  .offerings-grid {
    grid-template-columns: repeat(2, 1fr);
  }

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

  .hero-content {
    width: 100%;
    text-align: center;
    padding: 0 10px;
  }

  .hero h1 {
    font-size: 3.5rem;
  }

  .hero-image {
    /* position: relative; */
    width: 100%;
    margin-top: 40px;
  }

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

  .akupay-logo-container {
    justify-content: center;
  }
}

@media (max-width: 768px) {
  .testimonials-grid,
  .audience-sections,
  .cards-grid {
    grid-template-columns: 1fr;
  }

  nav ul {
    display: none;
  }

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

  .hero h1 {
    font-size: 3rem;
  }
  .hero-container {
    flex-direction: column;
  }

  .footer-container {
    flex-direction: column;
    align-items: center;
    gap: 20px;
  }

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

  .footer-logo {
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
  }
}

@media (max-width: 576px) {
  .features-grid,
  .offerings-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .hero h1 {
    font-size: 2.5rem;
  }
}
