body {
    background-color: #f4f6f9;
    font-family: 'Poppins', sans-serif;
    color: #555;
    line-height: 1.6;
}

.feature-card {
    transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
    border-radius: 12px;
    background: #fff;
}

.feature-card:hover {
    transform: scale(1.05);
    box-shadow: 0px 15px 25px rgba(0, 0, 0, 0.2);
}
.alert-message {
    display: none;
    background-color: #28a745;
    color: white;
    padding: 10px;
    text-align: center;
    margin-top: 20px;
    border-radius: 5px;
}

.navbar {
    background-color:rgba(127, 206, 246, 0.93);
}

.navbar-nav .nav-item {
    margin: 0 15px;
}

.navbar-nav .nav-link {
    color: white !important;
    font-weight: 600;
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: color 0.3s ease-in-out, transform 0.2s ease-in-out;
}


.navbar-nav .nav-link:hover {
    color: #0055ff !important;
    transform: scale(1.1);
}


.navbar-nav .nav-link.active {
    color: #1302c7 !important;
    border-bottom: 2px solid #2245e0;
    padding-bottom: 3px;
}

.footer {
    background-color:rgba(127, 206, 246, 0.93);
    color: white;
    text-align: center;
    padding: 20px;
}

.app-section h2 {
    color: #0066cc;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 30px;
}

.app-feature {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 20px;
    text-align: left;
}
    .app-feature img {
        width: 50px;
        height: 50px;
    }

    .app-feature div {
        flex: 1;
    }
.app-section {
        background-size: cover;
        padding: 60px 0;
        text-align: center;
        color: black;
}
.app-section .btn {
    background-color: #0066cc;
    color: white;
    font-size: 1.2rem;
    padding: 12px 25px;
    border-radius: 10px;
    text-decoration: none;
    transition: background-color 0.3s ease;
}

    .app-section .btn:hover {
        background-color: #0055a5;
    }

.hero h1 {
    font-family: 'Roboto Slab', serif;
    font-size: 3.8rem;
    font-weight: 700;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.hero p {
    font-size: 1.25rem;
    margin-bottom: 30px;
}

.btn-primary {
    background-color: #0066cc;
    border-color: #0066cc;
    padding: 14px 35px;
    font-size: 1.1rem;
    border-radius: 30px;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    background-color: #0055a5;
    transform: translateY(-3px);
}

.form-control {
    border: 2px solid black;
    border-radius: 10px;
}

.pricing-card {
    background-color: #ffffff;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    padding: 40px;
    text-align: center;
    transition: transform 0.3s ease-in-out;
    border: 1px solid #e0e0e0;
}

.pricing-card:hover {
    transform: scale(1.05);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.pricing-card h3 {
    color: #343a40;
    font-size: 26px;
    margin-bottom: 15px;
    font-weight: 600;
}

.price {
    font-size: 28px;
    font-weight: 700;
    color: #28a745;
    margin: 20px 0;
}

.pricing-card p.text-muted {
    color: #6c757d;
    font-size: 16px;
    margin-bottom: 15px;
}

.pricing-card ul {
    list-style-type: none;
    padding: 0;
    margin-bottom: 20px;
}

.pricing-card ul li {
    font-size: 16px;
    color: #555;
    margin: 10px 0;
    font-weight: 500;
}

.btn-success {
    background-color: #28a745;
    border: none;
    padding: 12px 25px;
    color: white;
    font-size: 16px;
    border-radius: 30px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.btn-success:hover {
    background-color: #218838;
}

.alert-message {
    display: none;
    background-color: #28a745;
    color: white;
    padding: 10px;
    text-align: center;
    margin-top: 20px;
    border-radius: 5px;
}
@media (max-width: 768px) {
    .hero h1 {
        font-size: 2.5rem;
    }

    .app-feature {
        flex-direction: column;
        text-align: center;
    }

    .pricing-card {
        padding: 20px;
    }
}
