* {
    scroll-behavior: smooth;
}

.background{
    background-color:#0B1626;
    overflow-x: hidden;
}

/* Fade-in animation */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
}

/* Apply animations */
#header {
    animation: slideInLeft 0.8s ease-out;
}

#heros {
    animation: fadeIn 1s ease-out;
}

#features {
    animation: fadeIn 1.2s ease-out;
}

.detail-feature {
    animation: fadeIn 1.4s ease-out;
}

#jumbotoron {
    animation: fadeIn 1.6s ease-out;
}

.trust-safety {
    animation: fadeIn 1.8s ease-out;
}

#footer {
    animation: fadeIn 2s ease-out;
}
.name{
    color: white;
    font-family: 'Nunito', sans-serif;
    font-weight:bold;
    font-size: 1.3rem;
}
.header-feature{
    color: white;
    font-family: 'Nunito', sans-serif;
    transition: all 0.3s ease;
    position: relative;
}

.header-feature:hover {
    color: #2380F7;
    transform: translateY(-2px);
}

.header-feature::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: #2380F7;
    transition: width 0.3s ease;
}

.header-feature:hover::after {
    width: 100%;
}
.btn{
    background-color: #2380F7;
    color: white;
    font-size: 1rem;
    transition: all 0.3s ease;
    border: none;
}

.btn:hover {
    background-color: #1a6fd4;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(35, 128, 247, 0.4);
}

.btn-outline-primary {
    border: 2px solid #2380F7;
    color: #2380F7;
    background-color: transparent;
}

.btn-outline-primary:hover {
    background-color: #2380F7;
    color: white;
    transform: translateY(-2px);
}

.btn-outline-secondary {
    border: 2px solid #9fb3b7;
    color: #9fb3b7;
    background-color: transparent;
}

.btn-outline-secondary:hover {
    background-color: #9fb3b7;
    color: #0B1626;
    transform: translateY(-2px);
}
.symbol {
  fill: white;
  stroke: white;
  
}
.heros-heading{
    color: white;
    font-family: 'Nunito', sans-serif;
    font-size: 3.5rem;
    margin-bottom: 0%;
}
.hero-heading{
    color: #2380F7;
    font-family: 'Nunito', sans-serif;
    font-size: 3.5rem;
    margin-top: 0%;
}
.hero-content{
    margin-top: 20px;
    color:white;
    margin-bottom: 40px;
}
.hero-image{
    padding-bottom: 0%;
    border: 0%;
    transition: all 0.5s ease;
    animation: fadeIn 1.5s ease-out;
}

.hero-image:hover {
    transform: scale(1.02);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
}
.app-screenshots{
    display: flex;
    gap: 16px;
    justify-content: center;
    align-items: flex-start;
    flex-wrap: nowrap;
    overflow-x: auto;
    overflow-y: hidden;
    -webkit-overflow-scrolling: touch;
    padding: 8px 0 0;
}
.app-screenshots::-webkit-scrollbar{
    height: 8px;
}
.app-screenshots::-webkit-scrollbar-thumb{
    background: rgba(159, 179, 183, 0.25);
    border-radius: 999px;
}
.app-screenshots::-webkit-scrollbar-track{
    background: transparent;
}
.app-shot{
    width: 100%;
    max-width: 220px;
    aspect-ratio: 9 / 19.5;
    object-fit: cover;
    border-radius: 18px;
    border: 1px solid rgba(255, 255, 255, 0.10);
    box-shadow: 0 10px 25px rgba(0,0,0,0.45);
    transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
    background: #0f1e33;
}
.app-shot:hover{
    transform: translateY(-6px);
    border-color: rgba(35, 128, 247, 0.6);
    box-shadow: 0 16px 40px rgba(0,0,0,0.55);
}
@media (max-width: 1200px){
    /* Keep single row; allow horizontal scroll instead of wrapping */
    .app-shot{
        max-width: 200px;
    }
}
@media (max-width: 576px){
    .app-shot{
        max-width: 160px;
    }
}
.svg-symbol{
    stroke:white;
    fill:white;
    width:16px;
    height:16px;
    margin-right: 6px;
}
.feature-heading{
    font-weight: 700;
    color: white;
}
.feature-descrip{
    color: #9fb3b7;
    margin-bottom: 2rem;
}
.feature-box {
  position: relative;
  padding-top: 40px;
  transition: all 0.3s ease;
}

.feature-box:hover {
    transform: translateY(-10px);
}

.feature-box:hover .feature-icon {
    background-color: #2380F7;
    transform: scale(1.1);
    box-shadow: 0 5px 20px rgba(35, 128, 247, 0.4);
}
.feature-icon {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  color: white;
  background-color: #0f1e33;
  transition: all 0.3s ease;
  border: 2px solid #2380F7;
}
.feature-title{
  color: white;
  font-weight: 600;
  margin-bottom: 10px;
}

.feature-text {
  color: #9fb3b7;
  font-size: 15px;
  max-width: 280px;
  margin: 0 auto;
}
.detail-head{
    color:white;
    font-family: 'Nunito', sans-serif;
    font-weight:bold;
}
.detail-info{
    color: #9fb3b7;
    max-width: 550px;
}
.detail-symbol{
    color: #2380F7;
}
.detail-title{
    color:white;
    font-family: 'Nunito', sans-serif;
    padding-bottom: 15px;
}
.detail-descrip{
    color: #9fb3b7;
}
.feature-item {
    gap: 16px;
    transition: all 0.3s ease;
}

.feature-item:hover {
    transform: translateX(5px);
}

.feature-item:hover .icon-box {
    background-color: #2380F7;
    transform: scale(1.1);
}

.icon-box {
    width: 44px;
    height: 44px;
    border-radius: 10px;
    background-color: #0B1220;
    display: grid;
    place-items: center;
    flex-shrink: 0;
    transition: all 0.3s ease;
}
.icon-box svg {
    width: 18px;
    height: 18px;
    display: block;
}
.jumbo-head{
    color: #2380F7;
    margin-top: 30px;
    font-family: 'Nunito', sans-serif;
}
.jumbo-title{
    color: white;
    font-weight:700;
    font-size:2.5rem;
    max-width:600px;
    text-align: center;
    line-height:1.3;
    margin: 0 auto;
    font-family: 'Nunito', sans-serif;
}
.jumbo-descrip{
    padding-top: 30px;
    color: #9fb3b7;
    font-family: 'Nunito', sans-serif;
}
.jumbo-join{
    color: white;
    font-weight: 700;
    margin-top: 20px;
    font-family: 'Nunito', sans-serif;
}
.trust-title{
    color: white;
    font-weight: 700;
    padding-bottom: 20px;
    font-family: 'Nunito', sans-serif;
    font-size:2.5rem;
}
.trust-desc{
    color: #9fb3b7;
    font-family: 'Nunito', sans-serif;
    font-weight: 400;
}
.point-title{
    color: white;
    font-family: 'Nunito', sans-serif;
    font-weight: 700;
}
.point-desc{
    color: #9fb3b7;
    font-family: 'Nunito', sans-serif;
    transition: all 0.3s ease;
}

.point-desc:hover {
    color: #2380F7;
    transform: translateX(5px);
}
.check-icon{
    color: #2ECC71;
    padding-right: 5px;
}
.list-group-item{
    background-color: #0f1e33;
    color: #e5e7eb;
    border-radius: 0px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    font-family: 'Nunito', sans-serif;
    transition: all 0.3s ease;
}

.list-group-item:hover {
    background-color: #15263d;
    transform: translateX(5px);
    border-color: #2380F7;
}
.trust-icong{
    color:#22C55E;
}
.trust-iconb{
    color:#4DA3FF;
}
.trust-iconr{
    color:#EF4444;
}
.footer-head{
    color: white;
    font-family: 'Nunito', sans-serif;
    font-weight: 700;
    padding-left: 10px;
    font-size:1.3rem;
}

.footer-brand {
    display: flex;
    align-items: center; 
}
.footer-desc {
    font-family: 'Nunito', sans-serif;
    color: #9fb3b7;
    margin-left: 30px;
    max-width: 800px;
    padding-top: 20px;
    margin-bottom: 30px;
}
.point-title{
    color: white;
    font-family: 'Nunito', sans-serif;
    font-weight: 200;
    font-size: 1rem;
    padding-bottom: 20px;
}
.point-desc{
    font-family: 'Nunito', sans-serif;
    color: #9fb3b7;
    font-weight: 0.5rem;
    font-size: 13px;
    
}
.footer-img{
    height:30px;
    width:30px;
    margin-left: 30px;
    transition: all 0.3s ease;
}

.footer-img:hover {
    transform: rotate(360deg) scale(1.1);
}
.footer-svg{
    display: flex;
    align-items: center; 
    gap:10px
}
.footer-earth{
    fill:#9fb3b7;
    stroke : #9fb3b7;
    margin-left: 30px;
}
.footer-a{
    color:#9fb3b7;
}
.border{
    color: #12243e;
    margin-left: 30px;
    margin-right: 30px;
}
.footer-left,
.footer-right {
    color: #9fb3b7;
    font-size: 14px;
    margin-bottom: 0%;
}







