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

.gradient-text {
  font-size: 48px; 
  font-weight: bold;
  background:  -webkit-linear-gradient(#14793d, #11e3ab);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
}

.image{
    width: auto;
    height: fit-content;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

       
.btn-primary {
    background: linear-gradient(135deg, #10b981, #059669);
    color: white;
    padding: 12px 30px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    transition: transform 0.3s, box-shadow 0.3s;
    display: inline-block;
    border: none;
    cursor: pointer;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(16, 185, 129, 0.4);
}

.btn-secondary:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(16, 185, 129, 0.2);
}

/* Hero Section */
.hero {
    padding-top: 10%;
    background: linear-gradient(135deg, #000000 0%, #0a3d2a 100%);
    text-align: center;
    color: white;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><circle cx="50" cy="50" r="2" fill="%2310b981" opacity="0.1"/></svg>');
    animation: float 20s linear infinite;
}

@keyframes float {
    0% { transform: translateY(0); }
    100% { transform: translateY(-100px); }
}

.hero-content {
     position: relative;
    z-index: 1;
}

.hero h1 {
    font-size: 56px;
    margin-bottom: 20px;
    animation: fadeInUp 0.8s ease;
}

.hero .tagline {
    font-size: 24px;
    margin-bottom: 30px;
    opacity: 0.95;
    animation: fadeInUp 0.8s ease 0.2s both;
}

.hero .description {
    font-size: 18px;
    max-width: 800px;
    margin: 0 auto 40px;
    line-height: 1.8;
    color: #d1d5db;
    animation: fadeInUp 0.8s ease 0.3s both;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin-bottom: 60px;
    animation: fadeInUp 0.8s ease 0.4s both;
}

.phone-mockup {
    max-width: 300px;
    margin: 0 auto;
    animation: fadeInUp 0.8s ease 0.6s both;
}

.phone-mockup svg {
    width: 100%;
    height: auto;
    filter: drop-shadow(0 20px 40px rgb(13, 13, 13));}

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

     
.features {
    padding: 100px 0;
    background: #0a0a0a;
}

.section-title {
    text-align: center;
    font-size: 42px;
    margin-bottom: 60px;
    color: #ffffff;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.feature-card {
    background: linear-gradient(135deg, #1a1a1a 0%, #0a3d2a 100%);
    padding: 40px 30px;
    border-radius: 20px;
    text-align: center;
    transition: transform 0.3s, box-shadow 0.3s;
    cursor: pointer;
    border: 1px solid rgba(16, 185, 129, 0.2);
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(16, 185, 129, 0.3);
    border-color: rgba(16, 185, 129, 0.5);
}

.feature-icon {
    font-size: 48px;
    margin-bottom: 20px;
}

.feature-card h3 {
    font-size: 22px;
    margin-bottom: 15px;
    color: #10b981;
}

.feature-card p {
    color: #9ca3af;
    line-height: 1.6;
}

        /* Stats Section */
.stats {
    background: linear-gradient(135deg, #10b981 0%, #3b82f6 100%);
    padding: 80px 0;
    color: white;
}

.stats-grid {
     display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
    text-align: center;
}

.stat-item h2 {
    font-size: 48px;
    margin-bottom: 10px;
}

.stat-item p {
     font-size: 18px;
    opacity: 0.9;
}

   
.cta {
    background: linear-gradient(135deg, #0a0a0a 0%, #0a3d2a 100%);
    padding: 100px 0;
    text-align: center;
    border-top: 1px solid rgba(16, 185, 129, 0.2);
}

.cta h2 {
    font-size: 42px;
    margin-bottom: 20px;
    color: #ffffff;
}

.cta p {
    font-size: 20px;
    color: #9ca3af;
    margin-bottom: 40px;
}


        /* Responsive */
@media (max-width: 768px) {
    .hero h1 {
        font-size: 36px;
    }
    .hero .tagline {
        font-size: 18px;
    }
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    .nav-links {
        display: none;
    }
        }
