body {
    font-family: 'Inter', Arial, sans-serif;
    margin: 0;
    padding: 0;
    /* background: #101a26; */
    color: #fff;
}

main {
    width: 100%;
    overflow-x: hidden;
}

/* Hero Section */
.hero {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    padding: 60px 5vw 40px 5vw;
    background: #101a26;
    min-height: 60vh;
}
.hero-content {
    flex: 1 1 350px;
    max-width: 500px;
}
.hero h1 {
    font-size: 3rem;
    font-weight: 700;
    line-height: 1.1;
    margin: 0 0 20px 0;
}
.highlight-green {
    color: #1b9ec8;
}
.arrow {
    color: #1b9ec8;
    font-size: 2.2rem;
}
.hero-desc {
    font-size: 1.1rem;
    color: #b5c7d3;
    margin-bottom: 30px;
}
.btn-primary {
    background: #1b9ec8;
    color: #101a26;
    padding: 14px 36px;
    border-radius: 30px;
    font-weight: 700;
    text-decoration: none;
    display: inline-block;
    margin-bottom: 18px;
    transition: background 0.2s;
}
.btn-primary:hover {
    background: #2386d9;
}
.download-links a {
    color: #1b9ec8;
    text-decoration: underline;
    font-size: 0.98rem;
}
.hero-globe {
    flex: 1 1 350px;
    display: flex;
    justify-content: center;
    align-items: center;
    min-width: 300px;
}
.hero-globe img {
      width: 100%;
    height: 100%;
    border-radius: 50px;
}

/* As Seen On */
.as-seen-on {
    /* background: #1a2332; */
    text-align: center;
    padding: 30px 0 20px 0;
}
.as-seen-on img {
    max-width: 90vw;
    width: 600px;
}

/* Custom As Seen On Logos Styles */
.as-seen-on {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 40px 0 30px 0;
  background: none;
  text-align: center;
  padding: 30px 0 20px 0;
}
.as-seen-on-logos {
  display: flex;
  gap: 80px;
  align-items: center;
  justify-content: center;
}
.logo-text {
  color: #888;
  font-family: 'Inter', Arial, sans-serif;
  font-size: 2rem;
  text-align: center;
  line-height: 1.1;
  letter-spacing: 2px;
  font-weight: 400;
}
.logo-bold {
  font-weight: 700;
  font-size: 2.4rem;
  font-family: 'Times New Roman', Times, serif;
}
.logo-sub {
  font-size: 0.8rem;
  letter-spacing: 1px;
  font-weight: 400;
}
.logo-coindesk-icon {
  font-size: 1.5rem;
  vertical-align: middle;
  margin-right: 4px;
}
@media (max-width: 900px) {
  .as-seen-on-logos {
    gap: 30px;
  }
  .logo-text {
    font-size: 1.2rem;
  }
  .logo-bold {
    font-size: 1.4rem;
  }
}

/* Buy Crypto Instantly */
.buy-crypto {
    /* background: #101a26; */
    text-align: center;
    padding: 50px 5vw 40px 5vw;
}
.buy-crypto h2 {
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 10px;
}
.buy-crypto p {
    color: #b5c7d3;
    margin-bottom: 30px;
}
.buy-crypto-form {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
    margin-bottom: 20px;
}
.buy-crypto-form input,
.buy-crypto-form select {
    padding: 12px 16px;
    border-radius: 8px;
    border: none;
    font-size: 1rem;
    min-width: 120px;
    background: #232e3c;
    color: #fff;
}
.btn-secondary {
    background: #232e3c;
    color: #1b9ec8;
    padding: 12px 28px;
    border-radius: 30px;
    font-weight: 700;
    border: 2px solid #1b9ec8;
    cursor: pointer;
    transition: background 0.2s, color 0.2s;
}
.btn-secondary:hover {
    background: #1b9ec8;
    color: #101a26;
}
.send-money-info {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    color: #1b9ec8;
    font-weight: 600;
    margin-bottom: 10px;
}
.btn-tertiary {
    color: #1b9ec8;
    background: none;
    border: 2px solid #1b9ec8;
    border-radius: 30px;
    padding: 10px 26px;
    font-weight: 700;
    text-decoration: none;
    display: inline-block;
    margin-top: 10px;
    transition: background 0.2s, color 0.2s;
}
.btn-tertiary:hover {
    background: #1b9ec8;
    color: #101a26;
}

/* App Showcase */
.app-showcase {
    background: #1a2332;
    text-align: center;
    padding: 40px 0 30px 0;
}
.app-showcase img {
    max-width: 90vw;
    width: 600px;
}

/* Features */
.features {
    background: url('./asset/images/graph.jpg') center center/cover no-repeat;
    position: relative;
    padding: 60px 5vw 40px 5vw;
    text-align: center;
    z-index: 1;
    overflow: hidden;
}
.features::before {
    content: "";
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(0,0,0,0.45); /* dark overlay */
    z-index: 2;
}
.features > * {
    position: relative;
    z-index: 3;
}
.features h2 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 40px;
}
.features-list {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
}
.feature-item {
    background: #1a2332;
    border-radius: 18px;
    padding: 30px 22px;
    width: 260px;
    box-sizing: border-box;
    text-align: center;
    color: #fff;
    box-shadow: 0 2px 12px 0 rgba(0,0,0,0.08);
    transition: all 0.3s ease-in-out;
    position: relative;
    overflow: hidden;
}
.feature-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(27, 158, 200, 0.3);
    background: #232e3c;
}
.feature-item::before {
    content: "";
    position: absolute;
    left: 0; right: 0;
    top: -100%;
    height: 100%;
    width: 100%;
    background: linear-gradient(180deg, rgba(255,200,55,0.32) 0%, rgba(255,140,0,0.18) 70%, transparent 100%);
    z-index: 1;
    transition: top 0.4s cubic-bezier(0.4,0,0.2,1);
    pointer-events: none;
}
.feature-item:hover::before {
    top: 0;
}
.feature-item > * {
    position: relative;
    z-index: 2;
}
.feature-item img {
    width: 48px;
    margin-bottom: 18px;
}
.feature-item h3 {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 10px;
}
.feature-item p {
    color: #b5c7d3;
    font-size: 0.98rem;
}

/* Real Users */
.real-users {
    /* background: #1a2332; */
    padding: 60px 5vw 40px 5vw;
    text-align: center;
}
.real-users h2 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 40px;
    color: #1b9ec8;
}
.user-stories {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
}
.user-story {
    background: #232e3c;
    border-radius: 18px;
    padding: 30px 22px;
    width: 260px;
    box-sizing: border-box;
    text-align: center;
    color: #fff;
    box-shadow: 0 2px 12px 0 rgba(0,0,0,0.08);
    transition: all 0.3s ease-in-out;
    position: relative;
    overflow: hidden;
}
.user-story:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(27, 158, 200, 0.3);
    background: #2a3744;
}
.user-story::before {
    content: "";
    position: absolute;
    left: 0; right: 0;
    top: -100%;
    height: 100%;
    width: 100%;
    background: linear-gradient(180deg, rgba(255,200,55,0.32) 0%, rgba(255,140,0,0.18) 70%, transparent 100%);
    z-index: 1;
    transition: top 0.4s cubic-bezier(0.4,0,0.2,1);
    pointer-events: none;
}
.user-story:hover::before {
    top: 0;
}
.user-story > * {
    position: relative;
    z-index: 2;
}
.user-story img {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 18px;
}
.user-story h3 {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 10px;
}
.user-story p {
    color: #b5c7d3;
    font-size: 0.98rem;
}

/* App Download */
.app-download {
    background: #e3f0ff;
    color: #101a26;
    text-align: center;
    padding: 60px 5vw 60px 5vw;
}
.app-download h2 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 18px;
}
.app-download p {
    color: #232e3c;
    margin-bottom: 30px;
}
.app-download img {
    max-width: 90vw;
    width: 300px;
    margin-bottom: 30px;
}
.app-download .btn-primary {
    background: #101a26;
    color: #1b9ec8;
    border: none;
    margin-top: 10px;
}
.app-download .btn-primary:hover {
    background: #232e3c;
}

/* Responsive Styles */
@media (max-width: 1100px) {
    .hero {
        flex-direction: column;
        text-align: center;
        padding: 40px 3vw 30px 3vw;
    }
    .hero-content, .hero-globe {
        max-width: 100%;
    }
    .features-list, .user-stories {
        gap: 18px;
    }
}
@media (max-width: 700px) {
    .hero h1 {
        font-size: 2.1rem;
    }
    .features-list, .user-stories {
        flex-direction: column;
        align-items: center;
    }
    .feature-item, .user-story {
        width: 90vw;
        padding: 20px 10px;
    }
    .app-showcase img, .as-seen-on img, .app-download img {
        width: 98vw;
        max-width: 98vw;
    }
    .buy-crypto-form {
        flex-direction: column;
        gap: 8px;
    }
    .as-seen-on-logos {
        flex-direction: column;
        gap: 24px;
    }
    .logo-text, .logo-bold {
        font-size: 1.1rem;
        text-align: center;
    }
    .user-stories-slider {
        gap: 0;
        flex-direction: column;
        align-items: center;
    }
    .user-story {
        width: 94vw;
        max-width: 350px;
        margin: 0 auto;
        margin-bottom: 12px;
    }
    .slider-controls {
        gap: 8px;
        margin-top: 12px;
    }
    #hero-content{
        height: 150px;
        margin-bottom: -200px;
    }
}
@media (max-width: 500px) {
     #hero-content{
        height: 150px;
        margin-bottom: -200px;
    }

    .user-story {
        width: 99vw;
        max-width: 99vw;
        padding: 18px 4px;
        margin-bottom: 12px;
    }
    .slider-btn {
        width: 36px;
        height: 36px;
        font-size: 1.2rem;
    }
}

.black{
    color: black;
}

/* User Stories Slider Styles */
.user-stories-slider-container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto 40px auto;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.user-stories-slider {
  display: flex;
  gap: 30px;
  width: 100%;
  justify-content: center;
  align-items: stretch;
}
.user-story {
  background: #232e3c;
  border-radius: 18px;
  padding: 30px 22px;
  width: 320px;
  box-sizing: border-box;
  text-align: center;
  color: #fff;
  box-shadow: 0 2px 12px 0 rgba(0,0,0,0.08);
  display: block;
  transition: all 0.3s ease-in-out;
}
.user-story:hover {
  transform: translateY(-5px);
  box-shadow: 0 5px 15px rgba(27, 158, 200, 0.3);
  background: #2a3744;
}
.user-story img {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 18px;
}
.slider-controls {
  margin-top: 18px;
  display: flex;
  gap: 16px;
  justify-content: center;
}
.slider-btn {
  background: #1b9ec8;
  color: #fff;
  border: none;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  font-size: 1.5rem;
  cursor: pointer;
  transition: background 0.2s;
}
.slider-btn:disabled {
  background: #b5c7d3;
  cursor: not-allowed;
}

#hero{
    padding: 20px;
}
@media (max-width: 1100px) {
  .user-story {
    width: 90vw;
    max-width: 350px;
  }
  .user-stories-slider {
    gap: 16px;
  }
}
@media (max-width: 900px) {
  .user-story {
    width: 95vw;
    max-width: 320px;
  }
}
@media (max-width: 700px) {
  .user-stories-slider {
    gap: 0;
  }
  #hero{
    padding: 20px;
}
  .user-story {
    width: 98vw;
    max-width: 98vw;
    margin: 0 auto;
    margin-bottom: 12px;
  }
}

.flex   {
    display: flex;
    gap: 20px;
    align-items: center;
    justify-content: center;
}

/* Card Hover Effects */
.choose-card {
    transition: transform 0.3s cubic-bezier(.4,2,.6,1), box-shadow 0.3s cubic-bezier(.4,2,.6,1);
    box-shadow: 0 2px 8px rgba(27, 158, 200, 0.05);
}

.choose-card:hover {
    transform: translateY(-10px) scale(1.04);
    box-shadow: 0 8px 24px rgba(27, 158, 200, 0.18);
    background: #f6fbff;
}

.values-card {
    transition: transform 0.3s cubic-bezier(.4,2,.6,1), box-shadow 0.3s cubic-bezier(.4,2,.6,1);
    box-shadow: 0 2px 8px rgba(27, 158, 200, 0.05);
}

.values-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 8px 24px rgba(27, 158, 200, 0.15);
    background: #d6e9ff !important;
}

.values-card:hover img {
    transform: scale(1.1);
}

.values-card img {
    transition: transform 0.3s ease;
}

.team-card {
    transition: transform 0.3s cubic-bezier(.4,2,.6,1), box-shadow 0.3s cubic-bezier(.4,2,.6,1);
    box-shadow: 0 2px 8px rgba(27, 158, 200, 0.05);
}

.team-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 8px 24px rgba(27, 158, 200, 0.15);
    background: #f6fbff !important;
}

.team-card img {
    transition: transform 0.3s ease;
    border: 3px solid transparent;
}

.team-card:hover img {
    transform: scale(1.1);
    border-color: #1b9ec8;
}

/* Stats Card Hover Effect */
.stats-card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.stats-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 24px rgba(27, 158, 200, 0.15);
}

/* Process Card Hover Effect */
.process-card {
    transition: transform 0.3s ease;
}

.process-card:hover {
    transform: translateY(-5px);
}

.process-card:hover div {
    background: #d6e9ff;
}

/* Testimonial Card Hover Effect */
.testimonial-card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 24px rgba(27, 158, 200, 0.15);
}


