/* (1) Global Styles */
@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Roboto:wght@300&display=swap");

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: sans-serif;
}

html {
  scroll-behavior: smooth;
}

body {
  line-height: 1.6;
  color: #333;
}

a {
  text-decoration: none;
}

img {
  max-width: 100%;
}


/* (2) Header and Navigation */
header.site-header {
  background: #fff;
  padding: 14px 0;
  z-index: 999;
}

.brand {
  display: flex;
  gap: 12px;
  align-items: center;
}

.logo-circle {
  width: 50px;
  height: 50px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #007bff, #409cffff);
  color: #fff;
  font-weight: 700;
  font-size: 20px;
  box-shadow: 0 6px 18px rgba(255, 111, 0, 0.09);
  flex-shrink: 0;
}

.brand h3 {
  font-size: 24px;
  margin: 0;
  line-height: 1;
  text-shadow: 0.5px 0.5px 0.5px black;
}

.brand p {
  font-size: 14px;
  margin: 0;
  color: #6b7280;
  font-weight: 600;
}

.btn-started {
  background: linear-gradient(90deg, #007bff, #409cffff);
  color: #fff;
  border: none;
  padding: 8px 15px;
  font-weight: 500;
  letter-spacing: 0.2px;
  box-shadow: 0 6px 22px rgba(255, 111, 0, 0.12);
  transition: background 0.6s;
}
.btn-started-2 {
  color: #007bff;
  background: transparent;
  border: 1px solid #007bff;
  padding: 8px 15px;
  font-weight: 400;
  letter-spacing: 0.2px;
  box-shadow: 0 6px 22px rgba(255, 111, 0, 0.12);
  transition: background 0.6s;
}

.btn-started-2:hover {
  background: linear-gradient(90deg, #007bff, #409cffff);
  color: #fff;
  border: none;
}

.btn-started:hover {
  color: #007bff;
  background: transparent;
  border: 1px solid #007bff;
}

ul.navbar-menu {
  list-style: none;
  margin: 0 !important;
  padding: 0 !important;
}

.navbar-custom {
  background: #070b1fff;
}

.navbar-menu {
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 15px;
  margin: 0;
}

.navbar-item {
  position: relative;
  margin: 0 10px;
}

.navbar-item a {
  color: #ffffff;
  text-decoration: none;
  padding: 10px 12px;
  display: block;
  transition: background 0.6s;
}

.navbar-item a:hover {
  background: #2b91ffff;
  border-radius: 4px;
  color: #fff !important;
}

.hamburger {
  display: none;
  font-size: 24px;
  color: #000;
  cursor: pointer;
}

.cross {
  position: absolute;
  top: 20px;
  right: 20px;
  color: #000;
}

.cross i {
  font-size: 30px;
}

@media (max-width: 768px) {
  .navbar-menu {
    position: fixed;
    top: 0px;
    left: -100%;
    width: 100%;
    bottom: 0;
    background: #fff;
    flex-direction: column;
    gap: 0;
    transition: left 0.3s;
    z-index: 9999;
    padding: 15px;
    overflow: auto;
  }

  .navbar-menu.show {
    left: 0;
  }

  .navbar-item a {
    padding: 12px 20px;
    color: #000;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  }
}


/* (3) Hero section */
.main-hero {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 1rem;
  background: #f9f9f9;
  width: 100%;
}

.hero-content {
  flex: 1;
  min-width: 300px;
  margin-right: 2rem;
  margin-bottom: 2rem;
}

.hero-content h1 {
  font-size: 2.5rem;
  line-height: 3rem;
}

.hero-content p {
  margin-bottom: 2rem;
  font-size: 1.2rem;
}

.hero-image {
  flex: 1;
  min-width: 300px;
}

.hero-image img {
  border-radius: 15px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  transition: transform 0.5s ease;
}

.hero-image img:hover {
  transform: scale(1.05);
}

/* (4) Features section */
.features {
  padding: 2rem;
  text-align: center;
}

.features h2 {
  margin-bottom: 3rem;
  font-size: 2rem;
}

.feature-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  justify-content: center;
}

.feature-card {
  background: #fff;
  padding: 2rem;
  border-radius: 10px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  width: 250px;
  text-align: center;
}

.feature-card h3 {
  margin: 1rem 0;
}

.feature-card p {
  font-size: 0.95rem;
}


/* Pricing section */
.pricing {
  padding: 2rem;
  background: #f9f9f9;
  text-align: center;
}

.pricing h2 {
  margin-bottom: 3rem;
  font-size: 2rem;
}

.pricing-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  justify-content: center;
}

.pricing-card {
  background: #fff;
  padding: 2rem;
  border-radius: 10px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  width: 250px;
}

.pricing-card .price {
  font-size: 1.5rem;
  margin: 1rem 0;
}

.pricing-card ul {
  list-style: none;
  margin-bottom: 1rem;
}

.pricing-card ul li {
  margin: 0.5rem 0;
}

.topups {
  margin-top: 3rem;
}

.topup-grid {
  display: flex;
  justify-content: center;
  gap: 1rem;
}

.topup-card {
  padding: 1rem 1rem;
  background: #007bff;
  color: #fff;
  border-radius: 5px;
}


/* How It Works section */
.how {
  padding: 3rem 2rem;
  text-align: center;
}

.how h2 {
  margin-bottom: 3rem;
  font-size: 2rem;
}

.how-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  justify-content: center;
}

.how-step {
  background: #fff;
  padding: 2rem;
  border-radius: 10px;
  width: 220px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}


/* Testimonials serction */
.testimonials {
  padding: 5rem 2rem;
  background: #f9f9f9;
  text-align: center;
}

.testimonial-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  justify-content: center;
}

.testimonial-card {
  background: #fff;
  padding: 2rem;
  border-radius: 10px;
  width: 300px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}


/* Contact form section */
.contact {
  padding: 5rem 2rem;
  text-align: center;
}

.contact form {
  display: flex;
  flex-direction: column;
  max-width: 400px;
  margin: auto;
}

.contact input,
.contact textarea {
  margin-bottom: 1rem;
  padding: 0.7rem 1rem;
  border-radius: 5px;
  border: 1px solid #ccc;
}

.contact button {
  cursor: pointer;
}


/* Footer styles */
footer {
  background: #007bff;
  color: #fff;
  padding: 3rem 2rem 1rem 2rem;
}

.footer-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  max-width: 1200px;
  margin: auto;
  gap: 2rem;
}

.footer-column {
  flex: 1;
  min-width: 200px;
}

.footer-column h3 {
  margin-bottom: 1rem;
}

.footer-column p,
.footer-column li,
.footer-column a {
  font-size: 0.9rem;
  color: #fff;
}

.footer-column ul {
  list-style: none;
  padding-left: 0;
}

.footer-column ul li {
  margin-bottom: 0.5rem;
}

.footer-column ul li a:hover {
  text-decoration: underline;
}

.social-icons {
  display: flex;
  gap: 1rem;
  margin-top: 1rem;
}

.social-icons img {
  width: 30px;
  height: 30px;
  border-radius: 50%;
}

.footer {
  position: relative;
  background-color: rgba(0, 5, 15, 0.87) !important;
  padding: 50px 0;
}

.footer ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer .logo h2 {
  color: #fff;
}

footer .logo img {
  width: 150px;
  margin-top: -35px;
  margin-bottom: 10px;
}

.ml-2 {
  margin-left: 10px;
}

.footer-container {
  max-width: 1170px;
  margin: auto;
}

.footer-row {
  display: flex;
  flex-wrap: wrap;
}

.footer-col {
  width: 25%;
  padding: 0 15px;
}

.footer-col p {
  color: #fff;
  text-align: start;
}

.footer-col h4 {
  color: #007bff;
  text-shadow:1px 1px 1px black;
  margin-bottom: 15px;
}

.footer-col ul li:not(:last-child) {
  margin-bottom: 10px;
}

.footer-col ul li a {
  font-size: 16px;
  text-decoration: none;
  transition: all 0.3s ease;
  display: flex;
  align-items: start;
}

.footer-col ul li a i,
.footer-col ul li a span {
  color: #fff;
}

.footer-col ul li a:hover {
  padding-left: 4px;
}

.footer-col ul li a:hover i,
.footer-col ul li a:hover span {
  color: #fff;
}

.footer-col .social-links a {
  height: 40px;
  width: 40px;
  background-color: #fff;
  margin: 0 10px 10px 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: all 0.5s ease;
  text-decoration: none;
}
.footer-col .social-links a i {
  color: #000;
}

.footer-col .social-links a:hover {
  color: #fff;
  border: 1px solid #fff;
  background-color: #007bff;
}

.footer-col .social-links a:hover i {
  color: #fff;
}

@media (max-width: 1009px) {
  .footer-col {
    width: 50%;
    margin-bottom: 30px;
  }
}

@media (max-width: 574px) {
  .footer-col {
    width: 100%;
  }
}

/*************************************/
/********* Additional Styles *********/
/**************************************/
/* Hover effects for cards and buttons */
.feature-card,
.pricing-card,
.how-step,
.testimonial-card {
  transition: transform 0.3s, box-shadow 0.3s;
}

.feature-card:hover,
.pricing-card:hover,
.how-step:hover,
.testimonial-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

section h2 {
  position: relative;
  display: inline-block;
  margin-bottom: 2rem;
}

.testimonial-card {
  border-left: 5px solid #007bff;
}

.testimonial-card p {
  font-style: italic;
  color: #555;
  position: relative;
}

.testimonial-card p::before {
  content: "“";
  font-size: 2rem;
  color: #007bff;
  position: absolute;
  left: -10px;
  top: -10px;
}