* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --primary-orange: #e67e22;
  --text-dark: #1a1a1a;
  --text-gray: #666666;
  --bg-light: #fafafa;
  --white: #ffffff;
  --card-bg: #f5f5f5;
  --footer-bg: #1a1a1a;
}

body {
  font-family:
    -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue",
    Arial, sans-serif;
  line-height: 1.6;
  color: var(--text-dark);
  background-color: var(--white);
  padding-top: 72px;
}

/* Navigation */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background-color: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
}

.navbar-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 60px;
  max-width: 1200px;
  margin: 0 auto;
}

.logo a {
  display: flex;

  gap: 10px;
  font-weight: 700;
  font-size: 16px;
  color: var(--text-dark);

  align-items: center;
  text-decoration: none;
  font-weight: 600;
}

.logo-icon {
  width: 32px;
  height: 32px;
  background-color: var(--primary-orange);
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-weight: bold;
}

.nav-links {
  display: flex;
  gap: 40px;
  list-style: none;
  align-items: center;
}

.nav-links a {
  text-decoration: none;
  color: var(--text-dark);
  font-size: 14px;
  font-weight: 500;
  transition: color 0.3s;
}

.nav-links a:hover {
  color: var(--primary-orange);
}

.nav-links a.active {
  color: var(--primary-orange);
}

/* Dropdown Menu */
.dropdown {
  position: relative;
}

.dropdown-toggle {
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 4px;
}

.dropdown-arrow {
  font-size: 10px;
  color: inherit;
  transition: transform 0.3s;
}

.dropdown:hover .dropdown-arrow {
  transform: rotate(180deg);
}

.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  margin-top: 10px;
  background-color: white;
  border-radius: 8px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  list-style: none;
  padding: 8px 0;
  min-width: 140px;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s;
}

.dropdown:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
}

.dropdown-menu li {
  padding: 0;
}

.dropdown-menu a {
  display: block;
  padding: 10px 20px;
  color: var(--text-dark);
  font-size: 14px;
  text-decoration: none;
  transition: background-color 0.3s;
}

.dropdown-menu a:hover {
  background-color: #fff5eb;
  color: var(--primary-orange);
}

.mobile-menu-btn {
  display: none;
  background: none;
  border: none;
  font-size: 24px;
  cursor: pointer;
}

/* Section Container */
.section-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 60px;
}

.section-title {
  text-align: center;
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 60px;
  color: var(--text-dark);
}

.section-title.light {
  color: var(--white);
}

/* Hero Section */
.hero {
  position: relative;
  min-height: 631px;
  background-image: url("../images/ubg.webp");
  background-size: cover;
  background-position: center top;
  background-repeat: no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  max-width: 1200px;
  margin: 0 auto;
}

.hero-content {
  max-width: 800px;
  width: 100%;
  padding: 0 60px;
}

.app-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
  margin-top: 180px;
}

.app-btn {
  display: block;
  height: 48px;
  transition: transform 0.3s;
}

.app-btn:hover {
  transform: translateY(-3px);
}

.app-btn img {
  height: 100%;
  width: auto;
  border-radius: 8px;
}

/* Simi Cash Hero */
.simi-hero {
  width: 100%;
  min-height: 538px;
 
  
  box-sizing: border-box;
}

.simi-hero-bg {
  max-width: 1200px;
  margin: 0 auto;
  min-height: 538px;
  background-image: url("../images/scbg.webp");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}

.simi-hero-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  padding: 60px 100px;
}

.simi-hero-left {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.simi-hero-left .brand-row {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 24px;
}
.brand-logo img {
  width: 64px;
  height: 64px;
}
.simi-hero-left .brand-logo {
  width: 64px;
  height: 64px;

  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-weight: 600;
  font-size: 18px;
}

.simi-hero-left .brand-name {
  font-weight: 600;
  font-size: 32px;
  color: #191c1d;
  line-height: 32px;
}

.simi-hero-title {
  font-size: 42px;
  font-weight: 700;
  color: #1a1c1d;
  line-height: 1.2;
  margin-bottom: 32px;
  max-width: 550px;
}

.simi-hero-left .app-buttons {
  margin-top: 0;
  justify-content: flex-start;
}

.simi-hero-right {
  flex: 0 0 auto;
  margin-left: 60px;
}

.simi-hero-right img {
  width: 280px;
  height: auto;
}

.app-btn {
  display: block;
  height: 48px;
  transition: transform 0.3s;
}

.app-btn:hover {
  transform: translateY(-3px);
}

.app-btn img {
  height: 100%;
  width: auto;
  border-radius: 8px;
}

/* Key Benefits Section */
.benefits {
  padding: 100px 0;
  background-color: var(--white);
}

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

.benefit-card {
  background-color: #faf8f5;
  padding: 32px 24px;
  border-radius: 16px;
  text-align: left;
  transition:
    transform 0.3s,
    box-shadow 0.3s;
}

.benefit-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.benefit-icon {
  width: 48px;
  height: 48px;
  background-color: var(--text-dark);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}
.benefit-icon img {
  width: 48px;
  height: 48px;
}

.benefit-title {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 12px;
  color: var(--text-dark);
}

.benefit-desc {
  font-size: 13px;
  color: var(--text-gray);
  line-height: 1.6;
}

/* Use Cases Section */
.use-cases {
  padding: 100px 0;
  background-image: url("../images/ucbg.webp");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  min-height: 400px;
}

.use-cases-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 16px;
  max-width: 800px;
  margin: 0 auto;
  position: relative;
}

.use-case-item {
  display: flex;
  align-items: center;
  gap: 10px;
  background-color: rgba(255, 255, 255, 0.9);
  padding: 12px 20px;
  border-radius: 50px;
  font-size: 14px;
  color: var(--text-dark);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
  border: 1px solid rgba(0, 0, 0, 0.05);
}

.use-case-icon {
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  overflow: hidden;
}

.use-case-icon img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.use-case-icon img {
  width: 40px;
  height: 40px;
}
/* Eligibility Section */
.eligibility {
  padding: 100px 0;
  background-color: var(--text-dark);
}

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

.eligibility-card {
  background-color: #2a2a2a;
  padding: 32px 24px;
  border-radius: 16px;
  text-align: center;
  transition: transform 0.3s;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.eligibility-card:hover {
  transform: translateY(-5px);
}

.eligibility-icon {
  font-size: 32px;
  margin-bottom: 16px;
}
.eligibility-icon img {
  width: 30px;
  height: 30px;
}
.eligibility-text {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.5;
  text-align: left;
}

/* How to Apply Section */
.how-to-apply {
  padding: 100px 0;
  background-color: var(--white);
}

.steps-container {
  max-width: 800px;
  margin: 0 auto;
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.step-row {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 40px;
}

.step-row.left .step-content {
  grid-column: 1;
  text-align: right;
}

.step-row.left .step-number {
  grid-column: 2;
}

.step-row.right .step-number {
  grid-column: 2;
}

.step-row.right .step-content {
  grid-column: 3;
  text-align: left;
}

.step-content {
  max-width: 400px;
}

.step-title {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 8px;
  color: var(--text-dark);
}

.step-desc {
  font-size: 14px;
  color: var(--text-gray);
  line-height: 1.6;
}

.step-number {
  width: 40px;
  height: 40px;
  background-color: var(--text-dark);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  font-size: 16px;
}

/* Footer */
.footer {
  background-color: var(--footer-bg);
  color: var(--white);
  padding: 60px;
  text-align: center;
}

.footer-content {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 60px;
}

.footer-contact {
  margin-bottom: 30px;
}

.footer-item {
  font-size: 14px;
  margin-bottom: 8px;
  color: #fff;
}

.footer-label {
  color: #fff;
  margin-right: 8px;
}

.footer-divider {
  height: 1px;
  background-color: #333;
  max-width: 400px;
  margin: 30px auto;
}

.footer-logo {
  font-size: 16px;
  font-weight: 600;
  letter-spacing: 1px;
}

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

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

@media (max-width: 768px) {
  body {
    padding-top: 62px;
  }

  .navbar-container {
    padding: 15px 20px;
  }

  .nav-links {
    display: none;
    position: absolute;
    top: 70px;
    left: 0;
    width: 100%;
    background-color: var(--white);
    flex-direction: column;
    padding: 20px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    gap: 20px;
  }

  .nav-links.active {
    display: flex;
  }

  .dropdown-menu {
    position: static;
    transform: none;
    box-shadow: none;
    opacity: 1;
    visibility: visible;
    margin-top: 10px;
    padding-left: 20px;
    background-color: transparent;
  }

  .dropdown-menu a:hover {
    background-color: transparent;
  }

  .mobile-menu-btn {
    display: block;
  }

  .section-container {
    padding: 0 20px;
  }

  .section-title {
    font-size: 28px;
    margin-bottom: 40px;
  }

  .hero {
    min-height: 400px;
    padding: 60px 20px;
  }

  .simi-hero {
    padding-top: 60px;
  }

  .simi-hero-container {
    flex-direction: column;
    padding: 40px 20px;
  }

  .simi-hero-left {
    align-items: center;
  }

  .simi-hero-title {
    font-size: 28px;
    text-align: center;
    max-width: 100%;
  }

  .simi-hero-left .app-buttons {
    justify-content: center;
  }

  .simi-hero-right {
    margin-left: 0;
    margin-top: 40px;
  }

  .app-buttons {
    flex-direction: column;
    align-items: center;
  }

  .benefits {
    padding: 60px 0;
  }

  .benefits-grid {
    grid-template-columns: 1fr;
    padding: 0 20px;
  }

  .use-cases {
    padding: 60px 0;
  }

  .use-case-item {
    width: 100%;
    justify-content: center;
  }

  .eligibility {
    padding: 60px 0;
  }

  .eligibility-grid {
    grid-template-columns: 1fr;
    padding: 0 20px;
  }

  .how-to-apply {
    padding: 60px 0;
  }

  .step-row {
    display: flex;
    flex-direction: column;
    text-align: center;
    gap: 20px;
  }

  .step-row.left .step-content,
  .step-row.right .step-content {
    text-align: center;
  }

  .step-content {
    order: 2;
  }

  .step-number {
    order: 1;
  }

  .footer {
    padding: 40px 20px;
  }

  .footer-content {
    padding: 0;
  }
}

@media (max-width: 480px) {
  .hero-title {
    font-size: 26px;
  }

  .benefit-card {
    padding: 24px 20px;
  }

  .simi-hero-container {
    flex-direction: column;
    padding: 40px 20px;
    text-align: center;
  }

  .simi-hero-left {
    align-items: center;
  }

  .simi-hero-title {
    font-size: 28px;
    text-align: center;
    max-width: 100%;
  }

  .simi-hero-left .app-buttons {
    justify-content: center;
  }

  .simi-hero-right {
    margin-left: 0;
    margin-top: 40px;
  }

  .simi-hero-right img {
    width: 200px;
  }
}
