/* === Global Reset === */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html, body {
  margin: 0;
  padding: 0;
  scroll-behavior: smooth;
  background-color: #000;
  color: white;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

/* === Page Wrapper === */
.page-wrapper {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 20px;
}

/* === Section Padding === */
section {
  padding-top: 40px;
  padding-bottom: 40px;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

/* === Header === */
header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 60px;
}

.logo img {
  height: 70px;
}

nav ul {
  display: flex;
  list-style: none;
  gap: 30px;
}

nav a {
  color: white;
  text-decoration: none;
  font-size: 16px;
  transition: color 0.3s ease;
}

nav a:hover,
nav a.active {
  color: #00c774;
  font-weight: 600;
}

.cta-icons {
  display: flex;
  align-items: center;
  gap: 15px;
}

.cta-icons img {
  height: 20px;
  cursor: pointer;
}

.whatsapp-btn {
  background-color: #00c774;
  color: white;
  padding: 10px 20px;
  border-radius: 20px;
  font-weight: 600;
  text-decoration: none;
  transition: background 0.3s ease;
}

.whatsapp-btn:hover {
  background-color: #00a761;
}

/* === Hero Section === */
.hero {
  display: flex;
  justify-content: space-around;
  align-items: center;
  padding: 60px;
  flex-wrap: wrap;
}

.hero-text {
  max-width: 50%;
}

.hero-text h2 {
  font-size: 22px;
  font-weight: 400;
  margin-bottom: 10px;
}

.hero-text h1 {
  font-size: 60px;
  font-weight: 700;
  margin: 10px 0;
}

.hero-text h3 {
  color: #00c774;
  margin: 20px 0;
  font-size: 20px;
}

.hero-text p {
  font-size: 16px;
  color: #ccc;
  max-width: 500px;
  line-height: 1.5;
  margin-bottom: 30px;
}

.start-btn {
  background-color: #00c774;
  color: white;
  padding: 12px 30px;
  border: none;
  font-size: 16px;
  border-radius: 4px;
  cursor: pointer;
  transition: background 0.3s ease;
}

.start-btn:hover {
  background-color: #00a761;
}

.hero-img img {
  width: 100%;
  max-width: 450px;
}

/* === Comparison Section === */
.comparison {
  padding: 80px 20px;
  display: flex;
  justify-content: center;
  background-color: #000;
}

.comparison-container {
  display: flex;
  gap: 40px;
  flex-wrap: wrap;
  max-width: 1100px;
  width: 100%;
  justify-content: center;
}

.column {
  flex: 1;
  min-width: 320px;
  max-width: 450px;
  padding: 60px 30px 40px;
  border-radius: 30px;
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 25px;
}

.column.left {
  background-color: #f7931e;
  color: white;
}

.column.right {
  background-color: #1e1e1e;
  color: white;
}

/* Title styles */
.column-title {
  position: absolute;
  top: -25px;
  left: 30px;
  padding: 10px 20px;
  border-radius: 15px;
  font-size: 20px;
  font-weight: bold;
  z-index: 2;
}

.left .column-title {
  background-color: #2a2a2a;
  color: white;
}

.right .column-title {
  background-color: #f7931e;
  color: black;
}

/* List Items */
.column ul {
  list-style: none;
  padding: 0;
}

.column li {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 18px;
  padding: 10px 0;
}

.icon-left,
.icon-right {
  display: flex;
  align-items: center;
  gap: 15px;
}

/* Circular icon container */
.icon-circle {
  width: 45px;
  height: 45px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.icon-check {
  background-color: #141414;
}

.icon-check img {
  width: 25px;
  height: 25px;
}

.icon-cross {
  background-color: #f7931e;
}

.icon-cross img {
  width: 25px;
  height: 25px;
}

.about-section {
  display: flex;
  justify-content: space-between;
  padding: 60px 40px;
  gap: 40px;
}

.about-left {
  flex: 1;
  max-width: 35%;
}

.about-left h4 {
  font-size: 20px;
  color: #fff;
  margin-bottom: 10px;
}

.about-left h1 {
  font-size: 65px;
  font-weight: 700;
  margin-bottom: 20px;
}

.about-left .subheading {
  color: #00c85f;
  margin-bottom: 15px;
  font-size: 18px;
  font-weight: 600;
}

.about-left .desc {
  color: #ccc;
  font-size: 16px;
  line-height: 1.6;
  margin-bottom: 25px;
}

.about-center {
  flex: 1;
  display: flex;
  justify-content: center;
}

.about-center .arrows {
  width: 100%;
  height: auto;
}

.about-right {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-around;
  gap: 40px;
}

.feature h2 {
  font-size: 72px;
  font-weight: bold;
}

.feature h2 span {
  color: #00c85f;
}

.feature p {
  color: #ccc;
  font-size: 14px;
  margin-top: 5px;
}

.why-money-mingle {
  background-color: #000;
  color: #fff;
  padding: 60px 20px;
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
}

.money-mingle-container {
  max-width: 1200px;
  margin: auto;
  display: flex;
  align-items: center;
  gap: 40px;
  flex-wrap: wrap;
  justify-content: center;
}

.money-mingle-image img {
  width: 100%;
  max-width: 400px;
}

.money-mingle-text {
  max-width: 600px;
}

.money-mingle-text h1 {
  font-size: 3rem;
  margin-bottom: 10px;
}

.money-mingle-text h3 {
  font-weight: 400;
  font-size: 1.5rem;
  margin-bottom: 20px;
}

.money-mingle-text p {
  font-size: 1rem;
  line-height: 1.6;
  color: #ccc;
  margin-bottom: 30px;
}

.money-mingle-btn {
  background-color: #00cc66;
  color: white;
  padding: 12px 24px;
  text-decoration: none;
  border-radius: 4px;
  font-weight: bold;
  transition: background 0.3s;
}

.money-mingle-btn:hover {
  background-color: #00a652;
}

/* Responsive */
@media (max-width: 768px) {
  .money-mingle-container {
    flex-direction: column;
    text-align: center;
  }

  .money-mingle-text h1 {
    font-size: 2.5rem;
  }

  .money-mingle-image img {
    max-width: 300px;
  }
}

.contact-section {
  background-color: #000;
  color: #fff;
  padding: 60px 20px 40px;
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
}

.contact-container {
  background-color: #444;
  border-radius: 16px;
  max-width: 1200px;
  margin: auto;
  padding: 40px;
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  justify-content: space-between;
}

.contact-form {
  flex: 1;
  min-width: 300px;
}

.contact-form h2 {
  margin-bottom: 20px;
  font-size: 1.8rem;
}

.contact-form form {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.form-row {
  display: flex;
  gap: 15px;
}

.form-row input {
  flex: 1;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 12px;
  border-radius: 8px;
  border: none;
  background-color: #f5f5f5;
  font-size: 1rem;
}

.contact-form button {
  margin-top: 10px;
  padding: 12px;
  background-color: #00cc66;
  border: none;
  color: white;
  border-radius: 8px;
  font-size: 1rem;
  cursor: pointer;
  transition: background 0.3s;
}

.contact-form button:hover {
  background-color: #00a652;
}

.contact-info {
  flex: 1;
  min-width: 300px;
}

.contact-info h1 {
  font-size: 2.5rem;
  color: #00cc66;
  margin-bottom: 10px;
}

.contact-info p {
  margin-bottom: 30px;
  color: #ddd;
  line-height: 1.6;
}

.contact-icons {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.icon-box {
  display: flex;
  align-items: center;
  gap: 12px;
  background-color: #333;
  padding: 10px 14px;
  border-radius: 8px;
  min-width: 130px;
}

.icon-box .icon {
  background-color: #00cc66;
  color: #fff;
  font-size: 1.2rem;
  padding: 8px;
  border-radius: 8px;
}

.contact-footer {
  text-align: center;
  margin-top: 30px;
  color: #ccc;
  font-size: 0.9rem;
}

.contact-footer a {
  color: #ccc;
  margin: 0 10px;
  text-decoration: none;
}

.contact-footer a:hover {
  text-decoration: underline;
}

/* Responsive */
@media (max-width: 768px) {
  .form-row {
    flex-direction: column;
  }

  .contact-container {
    flex-direction: column;
    text-align: center;
  }

  .icon-box {
    justify-content: center;
  }
}


/* === Responsive === */
@media (max-width: 900px) {
  .comparison-container {
    flex-direction: column;
    align-items: center;
  }

  .column {
    margin-bottom: 50px;
  }

  .column-title {
    position: relative;
    top: auto;
    left: auto;
    margin-bottom: 20px;
  }
}

