/* Reset and Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --primary-color: #1f0b2c;
  --secondary-color: linear-gradient(
    135deg,
    #1f0b2c 0%,
    #62228b 50%,
    #b6215f79 100%
  );
  --accent-color: #62228b;
  --gradient-bg: linear-gradient(135deg, #1f0b2c 0%, #62228b 60%, #370941 100%);
  --text-color: #ffffff;
  --highlight-color: linear-gradient(
    135deg,
    #1f0b2c 0%,
    #62228b 50%,
    #b6215f79 100%
  );
  --card-bg: rgba(128, 22, 177, 0.541);
  --border-color: rgba(255, 255, 255, 0.2);
  --glass-effect: rgba(255, 255, 255, 0.05);
  --button-gradient: linear-gradient(
    135deg,
    #ff80b5 0%,
    #ffb677 25%,
    #8c52ff 60%,
    #4a90e2 100%
  );
  --card-gradient: linear-gradient(
    135deg,
    rgba(255, 255, 255, 0.3) 0%,
    rgba(245, 245, 245, 0.1) 100%
  );
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  background: var(--card-gradient);
}

body {
  font-family: "Inter", system-ui, sans-serif;
  color: var(--text-color);
  background: var(--gradient-bg);
  min-height: 100vh;
  line-height: 1.6;
}

html {
  scroll-behavior: smooth;
}


/* Navbar Styles */
.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.5rem 4rem;
  background: rgba(31, 11, 44, 0.8);
  backdrop-filter: blur(10px);
  width: 100%;
  top: 0;
  z-index: 1000;
}

/* Logo */
.logo {
  font-size: 1.5rem;
  font-weight: 700;
  background: var(--button-gradient);
  color: var(--text-color);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Navigation Links */
.nav-links {
  display: flex;
  gap: 2rem;
}

/* Links */
.nav-links a {
  color: var(--text-color);
  text-decoration: none;
  font-size: 1rem;
  transition: color 0.3s ease;
}

.nav-links a:hover {
  color: var(--secondary-color);
}

/* Hamburger Menu */
.hamburger {
  display: none;
  font-size: 2rem;
  cursor: pointer;
  color: var(--text-color);
}

/* Responsive Styles */
@media screen and (max-width: 768px) {
  .nav-links {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 70px;
    right: 0;
    background: rgba(31, 11, 44, 0.9);
    width: 100%;
    padding: 1rem 0;
    text-align: center;
  }

  .nav-links a {
    display: block;
    padding: 1rem;
  }

  .hamburger {
    display: block;
  }

  .nav-links.show {
    display: flex;
  }
}
/* Hero Section */
.hero {
  display: flex;
  flex-direction: column-reverse;
  align-items: center;
  text-align: center;
  padding: 4rem 2rem;
}

@media (min-width: 768px) {
  .hero {
    flex-direction: row;
    text-align: left;
    padding: 8rem 4rem;
  }
}

.hero-content {
  max-width: 600px;
}

.hero h2 {
  font-size: 2.5rem;
  line-height: 1.2;
  margin-bottom: 1rem;
}

@media (max-width: 768px) {
  .hero h2 {
    font-size: 2rem;
  }
}

.hero p {
  font-size: 1rem;
  margin-bottom: 1.5rem;
  opacity: 0.9;
}

.cta-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

.get-started-btn, .watch-video-btn {
  padding: 0.5rem 1.5rem;
  border-radius: 25px;
  font-weight: 500;
  transition: all 0.3s ease;
  cursor: pointer;
  border: none;
}

.get-started-btn {
  background: var(--button-gradient);
  color: var(--text-color);
}

.watch-video-btn {
  background: transparent;
  border: 1px solid var(--secondary-color);
  color: var(--secondary-color);
}

.watch-video-btn a {
  color: inherit;
  text-decoration: none;
}

/* Stats Section */
.stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 2rem;
  text-align: center;
  margin-top: 2rem;
}

.stat-item h2 {
  font-size: 2rem;
  background: var(--button-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* Partner Logos */
.partner-logos {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 2rem;
}

.partner-logos img {
  height: 30px;
  opacity: 0.5;
  filter: brightness(0) invert(1);
  transition: opacity 0.3s ease;
}

/* Hero Image */
.hero-image {
  display: flex;
  justify-content: center;
  align-items: center;
  max-width: 100%;
}

.hero-image img {
  max-width: 70%;
  height: auto;
  object-fit: contain;
}

@media (max-width: 768px) {
  .hero-image img {
    max-width: 90%;
  }
}


/* Payment Methods Section */
.payment-methods {
  padding: 0rem 0rem;
  background: var(--glass-effect);
  position: relative;
  overflow: hidden;
}

.payment-categories {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
  margin-bottom: 50px;
}

.category {
  background: var(--card-gradient);
  border-radius: 20px;
  padding: 2rem;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(129, 40, 49, 0.2);
  transition: transform 0.3s ease;
}

.category:hover {
  transform: translateY(-5px);
}

.category h3 {
  margin-bottom: 2rem;
  font-size: 1.5rem;
  color: var(--secondary-color);
}

.payment-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
  gap: 1.5rem;
}

.payment-item {
  background: rgba(255, 255, 255, 0.05);
  border-radius: 10px;
  padding: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s ease;
  border: 1px solid rgba(129, 40, 49, 0.1);
}

.payment-item:hover {
  transform: translateY(-5px);
  border-color: var(--secondary-color);
}

.payment-item img {
  max-width: 100%;
  height: 40px;
  object-fit: contain;
  filter: brightness(0) invert(1);
  opacity: 0.8;
  transition: opacity 0.3s ease;
}

.payment-item:hover img {
  opacity: 1;
}

@media(max-width: 700px){
    .payment-hide{
        display: none;
    }
}

/* Services Section */

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

.service-card {
  background: var(--card-gradient);
  border-radius: 20px;
  padding: 2rem;
  text-align: center;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(129, 40, 49, 0.2);
  transition: all 0.3s ease;
}

.service-card:hover {
  transform: translateY(-10px);
  border-color: var(--secondary-color);
}

.service-card i {
  font-size: 2.5rem;
  color: var(--secondary-color);
  margin-bottom: 1.5rem;
}

.service-card h3 {
  margin-bottom: 1rem;
  font-size: 1.5rem;
  color: var(--secondary-color);
}

/* Base Styles */
.about-us {
  padding: 6rem 4rem;
  background: var(--glass-effect);
}

.about-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  max-width: 1200px;
  margin: 0 auto;
}

.about-text {
  padding-right: 2rem;
}

.about-text h3 {
  font-size: 2rem;
  margin-bottom: 1.5rem;
  color: var(--secondary-color);
}

.about-features {
  margin-top: 2rem;
}

.feature {
  display: flex;
  align-items: center;
  margin-bottom: 1rem;
}

.feature i {
  color: var(--secondary-color);
  margin-right: 1rem;
}

.about-image {
  position: relative;
}

.blob-background {
  position: absolute;
  width: 100%;
  height: 100%;
  background: radial-gradient(
      circle at 30% 50%,
      rgba(255, 255, 255, 0.4) 10%,
      transparent 70%
    ),
    radial-gradient(
      circle at 70% 50%,
      rgba(255, 255, 255, 0.4) 10%,
      transparent 70%
    );
  border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
  animation: blobAnimation 10s infinite alternate;
}

@keyframes blobAnimation {
  0% {
    border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
  }

  50% {
    border-radius: 70% 30% 30% 70% / 70% 70% 30% 30%;
  }

  100% {
    border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
  }
}

/* Rotating Money Icons Inside the Blob */
.money-icon {
  position: absolute;
  width: 100px;
  height: 100px;
  animation: rotateMoney 5s linear infinite;
}

/* Different Paths & Speeds for Each Icon */
.icon1 {
  top: 10%;
  left: 10%;
  animation-duration: 4s;
}

.icon2 {
  top: 20%;
  right: 10%;
  animation-duration: 6s;
}

.icon3 {
  bottom: 10%;
  left: 20%;
  animation-duration: 5s;
}

.icon4 {
  bottom: 20%;
  right: 20%;
  animation-duration: 7s;
}

/* Keyframes for Rotation Path */
@keyframes rotateMoney {
  0% {
    transform: translate(0, 0) rotate(0deg);
  }
  25% {
    transform: translate(30px, -30px) rotate(90deg);
  }
  50% {
    transform: translate(0, -50px) rotate(180deg);
  }
  75% {
    transform: translate(-30px, -30px) rotate(270deg);
  }
  100% {
    transform: translate(0, 0) rotate(360deg);
  }
}

/* Mobile Responsiveness (up to 480px) */
@media screen and (max-width: 480px) {
  .about-us {
    padding: 4rem 2rem;
  }

  .about-content {
    grid-template-columns: 1fr; /* Stack content vertically */
    gap: 2rem;
  }

  .about-text {
    padding-right: 0;
  }

  .about-text h3 {
    font-size: 1.5rem; /* Smaller heading size for mobile */
  }

  .about-features {
    margin-top: 1.5rem;
  }

  .feature {
    font-size: 0.9rem; /* Smaller font size for features */
    margin-bottom: 0.8rem;
  }

  .about-image {
    display: flex;
    justify-content: center;
    width: 100%;
  }

  .blob-background {
    width: 70%; /* Smaller blob */
    height: 150px;
  }

  .money-icon {
    width: 50px; /* Smaller money icons */
    height: 50px;
  }

  .icon1 {
    animation-duration: 5s;
  }

  .icon2 {
    animation-duration: 6s;
  }

  .icon3 {
    animation-duration: 5s;
  }

  .icon4 {
    animation-duration: 7s;
  }
}

/* Tablet Responsiveness (up to 768px) */
@media screen and (max-width: 768px) {
  .about-us {
    padding: 5rem 3rem;
  }

  .about-content {
    grid-template-columns: 1fr; /* Stack content vertically */
    gap: 2.5rem;
  }

  .about-text h3 {
    font-size: 1.8rem; /* Adjusted heading size */
  }

  .about-features {
    margin-top: 1.8rem;
  }

  .feature {
    font-size: 1rem; /* Slightly smaller font size */
    margin-bottom: 1rem;
  }

  .about-image {
    display: flex;
    justify-content: center;
    width: 100%;
  }

  .blob-background {
    width: 80%; /* Adjusted blob size */
    height: 180px;
  }

  .money-icon {
    width: 70px; /* Slightly smaller money icons */
    height: 70px;
  }

  .icon1 {
    animation-duration: 4.5s;
  }

  .icon2 {
    animation-duration: 5.5s;
  }

  .icon3 {
    animation-duration: 5s;
  }

  .icon4 {
    animation-duration: 6.5s;
  }
}

/* Large Screen Responsiveness (1200px and above) */
@media screen and (min-width: 1200px) {
  .about-us {
    padding: 7rem 5rem;
  }

  .about-content {
    grid-template-columns: 1fr 1fr; /* Two columns for large screens */
    gap: 4rem;
  }

  .about-text h3 {
    font-size: 2.2rem; /* Larger heading size for large screens */
  }

  .about-features {
    margin-top: 2rem;
  }

  .feature {
    font-size: 1.1rem; /* Larger font size for features */
    margin-bottom: 1.2rem;
  }

  .about-image {
    display: flex;
    justify-content: flex-end;
  }

  .blob-background {
    width: 90%; /* Larger blob size */
    height: 250px;
  }

  .money-icon {
    width: 100px; /* Larger money icons */
    height: 100px;
  }

  .icon1 {
    animation-duration: 4s;
  }

  .icon2 {
    animation-duration: 6s;
  }

  .icon3 {
    animation-duration: 5s;
  }

  .icon4 {
    animation-duration: 7s;
  }
}


/* Base Styles */
.client-reviews {
  padding: 6rem 4rem;
}

.reviews-slider {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

.review-card {
  background: var(--card-gradient);
  border-radius: 20px;
  padding: 2rem;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(129, 40, 49, 0.2);
  transition: transform 0.3s ease;
}

.review-card:hover {
  transform: translateY(-5px);
  border-color: var(--secondary-color);
}

.review-header {
  display: flex;
  align-items: center;
  margin-bottom: 1.5rem;
}

.reviewer-image {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: var(--button-gradient);
  margin-right: 1rem;
}

.reviewer-info h4 {
  margin-bottom: 0.25rem;
  color: var(--secondary-color);
}

.reviewer-info p {
  opacity: 0.7;
  font-size: 0.9rem;
}

.review-text {
  margin-bottom: 1.5rem;
  font-style: italic;
}

.rating {
  color: var(--secondary-color);
}

/* Media Queries for Responsiveness */

@media (max-width: 768px) {
  .client-reviews {
    padding: 4rem 2rem;
  }

  .reviews-slider {
    grid-template-columns: 1fr; /* Single column for smaller screens */
  }

  .review-card {
    padding: 1.5rem; /* Reduce padding for smaller screens */
  }

  .review-header {
    flex-direction: column; /* Stack image and info vertically */
    text-align: center;
  }

  .reviewer-image {
    margin-bottom: 1rem; /* Space between image and info */
  }

  .reviewer-info h4 {
    font-size: 1.1rem; /* Adjust text size */
  }

  .reviewer-info p {
    font-size: 0.85rem; /* Adjust text size */
  }

  .review-text {
    font-size: 1rem; /* Adjust font size */
  }
}

/* For mobile screens (portrait mode) */
@media (max-width: 480px) {
  .client-reviews {
    padding: 3rem 1.5rem; /* Adjust padding for smaller devices */
  }

  .reviews-slider {
    grid-template-columns: 1fr; /* Single column layout for mobile */
    gap: 1rem; /* Reduced gap between cards */
  }

  .review-card {
    padding: 1rem; /* Reduced padding */
  }

  .review-header {
    text-align: center; /* Center align text on mobile */
  }

  .reviewer-image {
    width: 50px;
    height: 50px; /* Smaller image for mobile */
    margin-bottom: 0.5rem; /* Reduced margin between image and text */
  }

  .reviewer-info h4 {
    font-size: 1rem; /* Adjust font size for mobile */
  }

  .reviewer-info p {
    font-size: 0.8rem; /* Adjust font size */
  }

  .review-text {
    font-size: 0.9rem; /* Adjust font size */
  }

  .rating {
    font-size: 1rem; /* Adjust rating size */
  }
}

/* For larger screens (Desktops) */
@media (min-width: 1200px) {
  .client-reviews {
    padding: 8rem 4rem; /* Larger padding for larger screens */
  }

  .reviews-slider {
    grid-template-columns: repeat(3, 1fr); /* 3 columns on large screens */
  }

  .review-card {
    padding: 2rem; /* Keep padding as is for larger screens */
  }

  .review-header {
    flex-direction: row; /* Keep image and info side by side */
  }

  .reviewer-image {
    width: 70px;
    height: 70px; /* Larger image for larger screens */
  }

  .reviewer-info h4 {
    font-size: 1.2rem; /* Larger font size */
  }

  .reviewer-info p {
    font-size: 1rem; /* Larger font size */
  }

  .review-text {
    font-size: 1.1rem; /* Slightly larger font size */
  }

  .rating {
    font-size: 1.2rem; /* Larger rating stars */
  }
}


/* Newsletter Section */
.newsletter {
  padding: 6rem 4rem;
  background: var(--glass-effect);
  text-align: center;
}

.newsletter-content {
  max-width: 600px;
  margin: 0 auto;
}

.newsletter-form {
  display: flex;
  gap: 1rem;
  margin-top: 2rem;
}

.newsletter-form input {
  flex: 1;
  padding: 1rem;
  border: 1px solid rgba(129, 40, 49, 0.2);
  border-radius: 25px;
  background: rgba(255, 255, 255, 0.05);
  color: var(--text-color);
  transition: border-color 0.3s ease;
}

.newsletter-form input:focus {
  border-color: var(--secondary-color);
  outline: none;
}

.newsletter-form input::placeholder {
  color: rgba(255, 255, 255, 0.5);
}

/* Footer Section */
.footer {
  background: rgba(31, 11, 44, 0.9);
  padding: 4rem 4rem 2rem;
  backdrop-filter: blur(10px);
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 3rem;
  max-width: 1200px;
  margin: 0 auto;
}

.footer-section h3 {
  margin-bottom: 1.5rem;
  font-size: 1.2rem;
  color: var(--secondary-color);
}

.footer-section ul {
  list-style: none;
}

.footer-section ul li {
  margin-bottom: 0.75rem;
}

.footer-section a {
  color: var(--text-color);
  text-decoration: none;
  opacity: 0.7;
  transition: all 0.3s ease;
}

.footer-section a:hover {
  opacity: 1;
  color: var(--secondary-color);
}

.social-links {
  display: flex;
  gap: 1rem;
  margin-top: 1rem;
}

.social-links a {
  color: var(--text-color);
  font-size: 1.5rem;
  transition: color 0.3s ease;
}

.social-links a:hover {
  color: var(--secondary-color);
}

.footer-newsletter {
  display: flex;
  gap: 0.5rem;
  margin-bottom: 1rem;
}

.footer-newsletter input {
  flex: 1;
  padding: 0.75rem;
  border: 1px solid rgba(129, 40, 49, 0.2);
  border-radius: 25px;
  background: rgba(255, 255, 255, 0.05);
  color: var(--text-color);
  transition: border-color 0.3s ease;
}

.footer-newsletter input:focus {
  border-color: var(--secondary-color);
  outline: none;
}

.footer-newsletter button {
  background: var(--button-gradient);
  border: none;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  color: var(--text-color);
  cursor: pointer;
  transition: transform 0.3s ease;
}

.footer-newsletter button:hover {
  transform: translateY(-2px);
}

.footer-bottom {
  text-align: center;
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(129, 40, 49, 0.2);
}

/* Back to Top Button */
.back-to-top {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  background: var(--button-gradient);
  color: var(--text-color);
  width: 50px;
  height: 50px;
  border-radius: 50%;
  border: none;
  cursor: pointer;
  display: none;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  transition: transform 0.3s ease;
  z-index: 1000;
}

.back-to-top:hover {
  transform: translateY(-5px);
}

/* Responsive Design */
@media (max-width: 1024px) {
  .hero {
    grid-template-columns: 1fr;
    padding: 6rem 2rem 2rem;
  }

  .hero-content {
    padding-right: 0;
  }

  .stats {
    grid-template-columns: repeat(2, 1fr);
  }

  .payment-categories {
    grid-template-columns: 1fr;

  }

  .about-content {
    grid-template-columns: 1fr;
  }

  .about-text {
    padding-right: 0;
  }

  .about-image {
    height: 300px;
  }
}

@media (max-width: 768px) {
  .navbar {
    padding: 1rem 2rem;
  }

  .nav-links {
    display: none;
  }

  .stats {
    grid-template-columns: 1fr;
  }

  .partner-logos {
    flex-wrap: wrap;
    justify-content: center;
  }

  .section-header h2 {
    font-size: 2rem;
  }

  .payment-methods,
  .services,
  .about-us,
  .client-reviews,
  .newsletter {
    padding: 4rem 2rem;
  }
  .payment-categories{
    margin-bottom: -20px;
  }

  .newsletter-form {
    flex-direction: column;
  }

  .footer {
    padding: 3rem 2rem 1rem;
  }

  .footer-content {
    gap: 2rem;
  }
}

@media (max-width: 480px) {
  h1 {
    font-size: 2rem;
  }

  .cta-buttons {
    flex-direction: column;
  }

  .auth-buttons {
    display: none;
  }

  .section-header h2 {
    font-size: 1.75rem;
  }

  .service-card {
    padding: 1.5rem;
  }

  .back-to-top {
    width: 40px;
    height: 40px;
    font-size: 1rem;
  }
}

.carousel-logo {
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
  white-space: nowrap;
  position: relative;
  width: 100%;
  padding: 20px 0;
  background: transparent;
}

/* Outer container to hide overflow */
.carousel-container {
  overflow: hidden;
  width: 100%;
  position: relative;
}

/* Track for logos */
.carousel-track {
  display: flex;
  gap: 30px;
  align-items: center;
  animation: scrollLogos 30s linear infinite;
  width: max-content;
}

/* Logo Images */
.carousel-track img {
  height: 50px;
  /* Adjust size */
  width: auto;
  object-fit: contain;
  transition: transform 0.3s ease;
}

/* Hover Effect */
.carousel-track img:hover {
  transform: scale(1.1);
}

/* Smooth scrolling animation */
@keyframes scrollLogos {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}

.services {
  padding: 50px 20px;
}

/* Section Headers */
.section-header {
  text-align: center;
  margin-bottom: 4rem;
}

.section-header h2 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  background: var(--button-gradient);
  color: var(--text-color, #ffffff); /* Fallback text color */
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text; /* For non-WebKit browsers (might not work in some older browsers) */
}


.section-header p {
  font-size: 1.1rem;
  opacity: 0.8;
}

/* Container for form and info */
.container {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 50px;
  flex-wrap: wrap;
}

/* Form Styling */
.contact-container {
  background: var(--card-bg);
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  border-radius: 15px;
  padding: 2rem;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
  width: 100%;
  max-width: 400px;
  text-align: center;
  color: var(--text-color);
}

.contact-container h2 {
  margin-bottom: 1.5rem;
  font-size: 2rem;
  color: var(--text-color);
}

.contact-form .form-group {
  margin-bottom: 1rem;
}

.contact-form input {
  width: 100%;
  padding: 0.75rem;
  border: none;
  border-radius: 10px;
  background: var(--glass-effect);
  color: var(--text-color);
  font-size: 1rem;
  box-sizing: border-box;
  border: 1px solid var(--border-color);
  transition: border-color 0.3s ease;
}

/* Make placeholder text color white */
.contact-form input::placeholder {
  color: white;
}

.contact-form input:focus {
  outline: none;
  border-color: var(--accent-color);
}

.submit-btn {
  width: 100%;
  padding: 0.75rem;
  border: none;
  border-radius: 10px;
  background: var(--button-gradient);
  color: var(--text-color);
  font-size: 1rem;
  font-weight: bold;
  cursor: pointer;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.submit-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(255, 128, 181, 0.5);
}

/* Info Container Styling */
.info-container {
  max-width: 700px;
  width: 100%;
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  border-radius: 15px;
  padding: 2rem;
  color: var(--text-color);
}

.info-title {
  font-size: 1.8rem;
  margin-bottom: 20px;
  text-align: center;
  color: var(--text-color);
}

.info-row {
  display: flex;
  justify-content: space-around;
  gap: 0px;
  margin-bottom: 20px;
  flex-wrap: wrap;
  /* Allow items to wrap on smaller screens */
}

.info-item {
  display: flex;
  justify-content: center;
  /* Centers content horizontally */
  align-items: center;
  /* Centers content vertically */
  text-align: center;
  /* Centers the text */
  flex-direction: column;
  /* Stack items vertically */
}

.icon {
  font-size: 2rem;
  margin-right: 15px;
  color: #ffffff;
  width: 24px;
  height: 24px;
  fill: currentColor;
}
.icon-footer {
  /* font-size: 1rem; */
  margin-right: 15px;
  color: #ffffff;
  width: 18px;
  height: 18px;
  fill: currentColor;
}

.info-text {
  font-size: 1rem;
  line-height: 1.5;
}

.info-text strong {
  font-weight: bold;
  color: var(--text-color);
}

/* New Email Address & Phone Numbers Icons */
.email-icon,
.phone-icon {
  width: 24px;
  height: 24px;
  margin-right: 10px;
}

/* Responsive Design */
@media (max-width: 768px) {
  .container {
    flex-direction: column;
    gap: 30px;
  }

  .contact-container,
  .info-container {
    max-width: 100%;
  }

  .info-row {
    flex-direction: column;
    gap: 15px;
  }

  .info-item {
    width: 100%;
  }

  .section-header h2 {
    font-size: 2rem;
  }

  .section-header p {
    font-size: 1rem;
  }
}

@media (max-width: 480px) {
  .services {
    padding: 30px 15px;
  }

  .section-header {
    margin-bottom: 2rem;
  }

  .section-header h2 {
    font-size: 1.8rem;
  }

  .section-header p {
    font-size: 0.9rem;
  }

  .contact-container,
  .info-container {
    padding: 1.5rem;
  }

  .info-title {
    font-size: 1.5rem;
  }

  .info-text {
    font-size: 0.9rem;
  }

  .icon {
    font-size: 1.2rem;
    width: 20px;
    height: 20px;
  }
}

/* Solution Section */
.container-solution-section {
  background-color: #6a2d91;
  padding: 40px 20px;
}

.solution-section {
  max-width: 1200px;
  margin: 0 auto;
}

.header-solution-section {
  text-align: center;
  margin-bottom: 40px;
}

.header-solution-section h1 {
  font-size: 2.2rem;
  margin-bottom: 1rem;
  background: var(--button-gradient);
  color: var(--text-color);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.header-solution-section p {
  font-size: 1rem;
  color: white;
  margin-bottom: 20px;
}

/* Responsive Grid */
.grid-container-solution {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
  justify-content: center;
  align-items: center;
}

/* Grid Items */
.grid-item-solution {
  background-color: rgba(255, 255, 255, 0.15);
  padding: 20px;
  border-radius: 10px;
  text-align: center;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.15);
  display: flex;
  flex-direction: column;
  align-items: center;
  border: 1px solid rgba(129, 40, 49, 0.2);
  transition: transform 0.3s ease-in-out;
}

.grid-item-solution h2 {
  font-size: 1.3rem;
  margin-bottom: 10px;
  color: white;
}

.grid-item-solution p {
  font-size: 1rem;
  color: white;
  margin: 0;
}

.grid-item-solution:hover {
  transform: translateY(-5px);
  border-color: var(--secondary-color);
}

/* Images */
.img-solution-section {
  width: 100%;
  max-width: 300px;
  height: auto;
  object-fit: contain;
  margin-bottom: 15px;
}

/* Responsive Buttons */
.buttons {
  display: flex;
  justify-content: center;
  gap: 10px;
  flex-wrap: wrap;
}

.register-btn,
.incorporated-btn {
  padding: 10px 20px;
  border: none;
  border-radius: 5px;
  background-color: #3498db;
  color: white;
  cursor: pointer;
  font-size: 1rem;
  transition: 0.3s;
}

.incorporated-btn {
  background-color: #7f8c8d;
}

.register-btn:hover,
.incorporated-btn:hover {
  opacity: 0.9;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .header-solution-section h1 {
    font-size: 2rem;
  }

  .grid-container-solution {
    grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  }
}

@media (max-width: 768px) {
  .solution-section {
    padding: 30px 15px;
  }

  .header-solution-section h1 {
    font-size: 1.8rem;
  }

  .header-solution-section p {
    font-size: 0.95rem;
  }

  .grid-container-solution {
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  }

  .grid-item-solution {
    padding: 15px;
  }

  .grid-item-solution h2 {
    font-size: 1.2rem;
  }

  .grid-item-solution p {
    font-size: 0.9rem;
  }
}

@media (max-width: 480px) {
  .solution-section {
    padding: 20px 10px;
  }

  .header-solution-section h1 {
    font-size: 1.5rem;
  }

  .header-solution-section p {
    font-size: 0.85rem;
  }

  .grid-container-solution {
    grid-template-columns: 1fr;
  }

  .grid-item-solution {
    padding: 12px;
  }

  .grid-item-solution h2 {
    font-size: 1.1rem;
  }

  .grid-item-solution p {
    font-size: 0.85rem;
  }

  .buttons {
    flex-direction: column;
    gap: 8px;
  }

  .register-btn,
  .incorporated-btn {
    width: 100%;
  }
}

/* business-section */

.business-section {
  padding: 40px 20px;
  max-width: 1200px;
  margin: 0 auto;
}

.header {
  text-align: center;
  margin-bottom: 40px;
}

.header h1 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  background: var(--button-gradient);
  color: var(--text-color); /* Fallback text color */
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text; /* Might not work in non-WebKit browsers */
}

.header p {
  font-size: 1rem;
  color: white;
  margin-bottom: 20px;
}

.grid-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
}

.grid-item {
  background-color: #fbfbfb26;
  padding: 20px;
  border-radius: 10px;
  text-align: center;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  border: 1px solid rgba(129, 40, 49, 0.2);
  transition: transform 0.3s ease;
}

.grid-item:hover {
  transform: translateY(-5px);
  border-color: var(--secondary-color);
}

.grid-item h2 {
  font-size: 1.2rem;
  margin-bottom: 15px;
  color: white;
}

.grid-item p {
  font-size: 0.9rem;
  color: white;
  margin-bottom: 10px;
}

.grid-item .learn-more {
  font-size: 0.9rem;
  color: #3498db;
  text-decoration: none;
  font-weight: bold;
}

.grid-item .learn-more:hover {
  text-decoration: underline;
  border-color: var(--secondary-color);
}

/* Responsive Design */
@media (max-width: 768px) {
  .header h1 {
    font-size: 1.5rem;
  }

  .header p {
    font-size: 0.9rem;
  }

  .grid-container {
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  }

  .grid-item h2 {
    font-size: 1rem;
  }

  .grid-item p,
  .grid-item .learn-more {
    font-size: 0.8rem;
  }
}

@media (max-width: 480px) {
  .business-section {
    padding: 20px 10px;
  }

  .header h1 {
    font-size: 1.2rem;
  }

  .header p {
    font-size: 0.8rem;
  }

  .grid-container {
    grid-template-columns: 1fr;
  }

  .grid-item {
    padding: 15px;
  }

  .grid-item h2 {
    font-size: 0.9rem;
  }

  .grid-item p,
  .grid-item .learn-more {
    font-size: 0.7rem;
  }
}
