/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

body {
    background: #f5f9fc; /* soft muted blue-gray background */
    color: #002147; /* deep navy text */
    line-height: 1.6;
}

/* Header */
.header {
  position: fixed;
  top: 0;
  width: 100%;
  background: #ffffff; /* clean white header */
  padding: 0.5rem 1.5rem; /* tighter vertical space */
  box-shadow: 0 4px 12px rgba(0, 33, 71, 0.1);
  z-index: 1000;
}

/* Navbar Flex Container */
.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1400px;
  margin: 0 auto;
}

/* Logo */
.logo img {
  height: auto;
  width: auto;
  max-height: 80px;
  max-width: 160px;
  object-fit: contain;
  transition: transform 0.3s ease;
  display: block;
}

/* Hover Effect */
.logo img:hover {
  transform: scale(1.05);
}

/* Responsive Logo Size */
@media (max-width: 768px) {
  .logo img {
    max-height: 60px;
    max-width: 120px;
  }

  .header {
    padding: 0.5rem 1rem;
  }
}


.nav-links a {
    margin: 0 15px;
    color: #002147;
    text-decoration: none;
    position: relative;
    font-weight: 500;
    transition: all 0.3s ease;
}

.nav-links a::after {
    content: "";
    position: absolute;
    width: 0%;
    height: 2px;
    background-color: #00c16e; /* soft green underline */
    left: 0;
    bottom: -4px;
    transition: 0.3s;
}

.nav-links a:hover::after {
    width: 100%;
}

.get-started-btn {
    background-color: #00c16e;
    padding: 0.7rem 1.4rem;
    border-radius: 25px;
    color: #ffffff;
    font-weight: 600;
    box-shadow: 0 0 15px rgba(0, 193, 110, 0.3);
    transition: 0.3s;
}

.get-started-btn:hover {
    background-color: #009f5d;
    color: #ffffff;
    box-shadow: 0 0 25px rgba(0, 193, 110, 0.5);
}

/* Mobile Menu */
.mobile-menu {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.mobile-menu span {
    background: #002147;
    margin: 3px 0;
    height: 3px;
    width: 25px;
}

/* Hero Section */
.hero {
    padding: 120px 20px 60px;
    text-align: center;
    background: linear-gradient(145deg, #f5f9fc, #eaf3fb);
}

.hero-content h1 {
    font-size: 2.8rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #002147;
}

.hero-content p {
    font-size: 1.2rem;
    max-width: 700px;
    margin: 0 auto;
    color: #4a5568; /* calm dark gray-blue */
}

/* Contact Buttons */
.contact-buttons {
    margin-top: 2rem;
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.cta-button {
    display: inline-flex;
    align-items: center;
    padding: 0.8rem 1.4rem;
    font-weight: 600;
    border-radius: 30px;
    text-decoration: none;
    color: #fff;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.cta-button img.icon {
    height: 24px;
    margin-right: 10px;
}

.cta-button.whatsapp {
    background-color: #00c16e;
    border-color: #009f5d;
}

.cta-button.telegram {
    background-color: #0088cc;
    border-color: #0077b6;
}

.cta-button:hover {
    transform: scale(1.05);
    box-shadow: 0 0 15px rgba(0, 33, 71, 0.2);
}

/* Enhanced Mobile/Tablet Responsiveness */
@media (max-width: 768px) {
  /* Hide desktop nav */
  .nav-links {
    display: none !important;
  }

  /* Show mobile menu icon */
  .mobile-menu {
    display: flex !important;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    padding-right: 1rem;
  }

  /* Hero title resizing */
  .hero-content h1 {
    font-size: 2rem;
    line-height: 2.5rem;
    text-align: center;
    padding: 0 1.5rem;
    font-weight: 700;
  }

  /* Call-to-action button refinement */
  .get-started-btn {
    padding: 0.7rem 1.5rem;
    font-size: 1rem;
    border-radius: 10px;
    width: fit-content;
    margin: 1.2rem auto 0;
    display: block;
    background-color: #0eb85c; /* strong green */
    color: #fff;
    box-shadow: 0 4px 12px rgba(14, 184, 92, 0.3);
    transition: background 0.3s ease;
  }

  .get-started-btn:hover {
    background-color: #0a954b;
  }

  /* Logo and mobile header adjustments */
  .header-logo {
    max-width: 100px;
    margin-left: 1rem;
  }

  /* Stat section fix */
  .stats-wrapper {
    padding: 0 1rem;
  }

  .stat-card {
    margin-bottom: 1rem;
    padding: 1rem;
    border-radius: 12px;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
  }

  .stat-card h2 {
    font-size: 1.8rem;
    margin-bottom: 0.4rem;
    color: #0eb85c;
  }

  .stat-card p {
    font-size: 0.95rem;
    color: #333;
  }
}


/* Mockup / Promo Card */
.mockup-screen {
    background: #ffffff;
    padding: 2rem;
    border-radius: 20px;
    box-shadow: 0 0 20px rgba(0, 33, 71, 0.08);
    margin: 4rem auto;
    max-width: 900px;
    color: #002147;
    text-align: center;
    transition: transform 0.3s ease;
}

.mockup-screen:hover {
    transform: translateY(-5px);
    box-shadow: 0 0 30px rgba(0, 193, 110, 0.25);
}

.dashboard-header {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.dashboard-icon {
    width: 32px;
    height: 32px;
    fill: #00c16e;
    animation: pulse-glow 2s infinite ease-in-out;
}

.dashboard-text {
    font-size: 1.1rem;
    color: #4a5568;
    max-width: 700px;
    margin: 0 auto;
}

.highlight {
    color: #00c16e;
    font-weight: 600;
}

.fade-line {
    color: #718096;
    font-style: italic;
}

@keyframes pulse-glow {
    0%, 100% { filter: drop-shadow(0 0 4px #00c16e); }
    50% { filter: drop-shadow(0 0 12px #00c16e); }
}

/* Features Section */
.features {
    background: linear-gradient(to bottom, #f9fcff, #eaf3fb);
    padding: 5rem 1rem;
    color: #002147;
}

.features-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.feature-card-link {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

.feature-card {
    background: #ffffff;
    padding: 2rem;
    border-radius: 18px;
    box-shadow: 0 4px 15px rgba(0, 33, 71, 0.05);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.feature-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 8px 30px rgba(0, 193, 110, 0.1);
    background: #f0fdf7;
}

.feature-icon {
    width: 40px;
    height: 40px;
    fill: #00c16e;
    margin-bottom: 1rem;
}

.feature-card h3 {
    font-size: 1.4rem;
    margin-bottom: 0.7rem;
    color: #002147;
}

.feature-card p {
    font-size: 1rem;
    color: #4a5568;
    line-height: 1.6;
}

/* Responsive Tweaks */
@media (max-width: 768px) {
    .dashboard-header {
        flex-direction: column;
    }

    .dashboard-icon {
        width: 40px;
        height: 40px;
    }

    .feature-card {
        padding: 1.5rem;
    }
}

/* Features Section */
.features {
    background: linear-gradient(to bottom, #f7fafc, #e4edf5);
    padding: 4rem 1rem;
    color: #002147;
}

.features-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.feature-card-link {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

.feature-card {
    background: rgba(255, 255, 255, 0.85);
    border: 1px solid rgba(0, 193, 110, 0.1);
    backdrop-filter: blur(10px);
    padding: 2rem;
    border-radius: 16px;
    box-shadow: 0 0 12px rgba(0, 193, 110, 0.06);
    transition: all 0.3s ease;
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.feature-card:hover {
    transform: scale(1.03);
    box-shadow: 0 0 24px rgba(0, 193, 110, 0.15);
    border-color: #00c16e;
}

.feature-icon {
    width: 40px;
    height: 40px;
    fill: #00c16e;
    margin-bottom: 1rem;
    transition: transform 0.3s ease;
}

.feature-card:hover .feature-icon {
    transform: rotate(8deg) scale(1.1);
}

.feature-card h3 {
    font-size: 1.3rem;
    margin-bottom: 0.6rem;
    color: #002147;
}

.feature-card p {
    font-size: 1rem;
    color: #4a5568;
    line-height: 1.6;
}

/* Stats Section */
.stats {
    background: #f0f4f8;
    padding: 4rem 1rem;
    text-align: center;
}

.stats-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.stat-link {
    text-decoration: none;
    color: inherit;
    flex: 1 1 200px;
}

.stat-item {
    background: #ffffff;
    border: 1px solid rgba(0, 193, 110, 0.08);
    padding: 2rem;
    border-radius: 18px;
    box-shadow: 0 0 15px rgba(0, 193, 110, 0.05);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.stat-item:hover {
    transform: scale(1.05);
    box-shadow: 0 0 22px rgba(0, 193, 110, 0.12);
    border-color: #00c16e;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: bold;
    color: #00c16e;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 1.1rem;
    color: #4a5568;
}

/* Responsive Tweaks */
@media (max-width: 768px) {
    .features-container {
        grid-template-columns: 1fr;
    }

    .stats-container {
        flex-direction: column;
    }
}


/* Value-Added Services Section */
.value-services {
  padding: 80px 20px;
  background-color: #f9fbfc;
  color: #0a1a33; /* Deep Navy */
  text-align: center;
}

.value-services h2 {
  font-size: 2.8rem;
  color: #0a1a33;
  margin-bottom: 40px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
}

.service-card-link {
  text-decoration: none;
  transition: transform 0.3s ease;
}

.service-card-link:hover {
  transform: translateY(-10px);
}

.service-card {
  background: #ffffff;
  border: 2px solid #dfe9f1;
  border-radius: 16px;
  padding: 30px 25px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
}

.service-card:hover {
  border-color: #7ac943; /* Lime Green */
  box-shadow: 0 10px 30px rgba(122, 201, 67, 0.25);
}

.service-icon {
  width: 50px;
  height: 50px;
  fill: #7ac943; /* Lime Green */
  margin-bottom: 20px;
  transition: fill 0.3s ease;
}

.service-card:hover .service-icon {
  fill: #0a1a33; /* Deep Navy */
}

.service-card h3 {
  font-size: 1.4rem;
  color: #0a1a33;
  margin-bottom: 12px;
  font-weight: 700;
  text-transform: capitalize;
}

.service-card p {
  font-size: 1rem;
  color: #5a6978;
  line-height: 1.6;
  margin: 0;
}

/* Integrations Carousel Section */
.integrations {
    background: #f9fbfd;
    padding: 4rem 1rem;
    text-align: center;
}

.integrations h2 {
    font-size: 2rem;
    margin-bottom: 2rem;
    color: #002147;
}

.carousel-container {
    overflow-x: auto;
    scrollbar-width: none; /* Firefox */
    -ms-overflow-style: none; /* IE 10+ */
}

.carousel-container::-webkit-scrollbar {
    display: none; /* Chrome/Safari */
}

.carousel-track {
    display: flex;
    gap: 2rem;
    padding: 1rem;
    animation: scrollTrack 30s linear infinite;
}

.partner-logo {
    flex: 0 0 auto;
    width: 120px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 12px;
    box-shadow: 0 4px 10px rgba(0, 193, 110, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.partner-logo:hover {
    transform: scale(1.05);
    box-shadow: 0 6px 16px rgba(0, 193, 110, 0.15);
}

.partner-logo img {
    max-width: 80%;
    max-height: 80%;
}

/* Merchant CTA Section */
.merchant-cta {
    background: linear-gradient(to right, #ffffff, #eef7f1);
    padding: 5rem 1rem;
    text-align: center;
    color: #002147;
}

.merchant-cta h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.cta-subtext {
    font-size: 1.1rem;
    max-width: 700px;
    margin: 0 auto 2rem;
    color: #4a5568;
}

.cta-buttons {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
}

.cta-button {
    background: #00c16e;
    color: #fff;
    font-size: 1rem;
    padding: 0.8rem 2rem;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    box-shadow: 0 6px 12px rgba(0, 193, 110, 0.15);
    transition: background 0.3s ease, transform 0.3s ease;
}

.cta-button:hover {
    background: #00a65a;
    transform: translateY(-2px);
}

.cta-button a {
    color: #fff;
    text-decoration: none;
}

.portal-link p {
    font-size: 0.95rem;
    color: #4a5568;
}

.portal-link a {
    color: #00c16e;
    font-weight: 600;
    text-decoration: underline;
}

/* Optional carousel scroll animation */
@keyframes scrollTrack {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* Responsive Tweaks */
@media (max-width: 768px) {
    .carousel-track {
        animation: none;
        flex-wrap: nowrap;
        justify-content: flex-start;
    }

    .cta-buttons {
        gap: 1rem;
    }

    .cta-subtext {
        font-size: 1rem;
    }
}

/* Footer Main */
.footer {
    background: #f3f6f9;
    padding: 4rem 1rem 2rem;
    color: #002147;
    font-family: 'Segoe UI', sans-serif;
    border-top: 1px solid #d0e4dd;
}

.footer-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.footer-section h3 {
    font-size: 1.2rem;
    margin-bottom: 1rem;
    color: #00c16e;
}

.footer-section p {
    font-size: 0.95rem;
    line-height: 1.6;
    color: #4a5568;
}

.footer-section a {
    display: inline-block;
    font-size: 0.9rem;
    color: #4a5568;
    margin-bottom: 0.5rem;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section a:hover {
    color: #00a65a;
    text-decoration: underline;
}

/* Footer Bottom */
.footer-bottom {
    margin-top: 3rem;
    text-align: center;
    font-size: 0.85rem;
    color: #718096;
    border-top: 1px solid #d0e4dd;
    padding-top: 1.5rem;
}

/* Responsive */
@media (max-width: 600px) {
    .footer-container {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .footer-section a {
        margin-bottom: 0.8rem;
    }
}
