/* Base Styles */
body {
    font-family: 'Helvetica Neue', sans-serif;
    background: linear-gradient(135deg, #e0f7fa, #b2ebf2);
    color: #333;
    line-height: 1.6;
    margin: 0;
    padding: 0;
}

.navbar {
    margin-bottom: 20px;
    background-color: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(10px);
    transition: background 0.3s ease;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
}

.navbar-brand {
    font-weight: bold;
    color: #009688;
}

.navbar-nav .nav-link {
    color: #333;
}

.navbar-nav .nav-link:hover {
    color: #009688;
}

.btn-primary {
    background-color: #009688;
    border-color: #009688;
}

.btn-primary:hover {
    background-color: #00796b;
    border-color: #00796b;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

.card {
    margin-bottom: 20px;
    border: none;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
    transition: transform 0.3s ease;
    background: linear-gradient(135deg, #ffffff, #e0f7fa);
}

.card:hover {
    transform: translateY(-5px);
}

.card-header {
    background-color: #009688;
    color: #fff;
    font-size: 1.5rem;
    padding: 15px;
    border-radius: 8px 8px 0 0;
}

.card-body {
    padding: 20px;
    font-size: 1.1rem;
}

.footer {
    background-color: #e0f7fa;
    padding: 20px 0;
    text-align: center;
    position: absolute;
    width: 100%;
    bottom: 0;
}

.footer a {
    color: #009688;
    text-decoration: none;
}

.footer a:hover {
    text-decoration: underline;
}

.alert {
    margin-top: 20px;
}

.alert-success {
    background-color: #d4edda;
    border-color: #c3e6cb;
    color: #155724;
}

.alert-danger {
    background-color: #f8d7da;
    border-color: #f5c6cb;
    color: #721c24;
}

.debug-error {
    background-color: #f8d7da;
    border: 1px solid #f5c6cb;
    color: #721c24;
    padding: 10px;
    margin-top: 20px;
}

.debug-data {
    background-color: #e9ecef;
    border: 1px solid #dee2e6;
    padding: 10px;
    margin-top: 20px;
}

.debug-data pre {
    margin: 0;
    padding: 10px;
    background-color: #fff;
    border: 1px solid #dee2e6;
}

.jumbotron {
    background: linear-gradient(135deg, #009688, #00796b);
    color: #fff;
    padding: 4rem 2rem;
    margin-bottom: 2rem;
    border-radius: 8px;
    text-align: center;
}

.jumbotron h1 {
    font-weight: bold;
}

.jumbotron p {
    font-size: 1.25rem;
}

.jumbotron .btn {
    font-size: 1.25rem;
    padding: 0.75rem 1.5rem;
}

.testimonials {
    background-color: #e0f7fa;
    padding: 2rem 0;
    border-radius: 8px;
}

.testimonials h2 {
    margin-bottom: 2rem;
    font-weight: bold;
}

.testimonials .card {
    border: none;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
    transition: transform 0.3s ease;
}

.testimonials .card:hover {
    transform: translateY(-5px);
}

.testimonials .card-body {
    padding: 2rem;
    font-size: 1.1rem;
}

.testimonials .card-text {
    margin-bottom: 1rem;
}

.testimonials .card-text strong {
    font-weight: bold;
    display: block;
    margin-top: 0.5rem;
}

/* Additional Styles for Welcoming Feel */
body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0));
    z-index: -1;
}

section {
    position: relative;
    padding: 40px 20px;
    background: linear-gradient(135deg, #ffffff, #e0f7fa);
    border-radius: 8px;
    margin: 20px 0;
}

section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.2), rgba(255, 255, 255, 0));
    z-index: -1;
    border-radius: 8px;
}

section h2 {
    color: #009688;
    text-align: center;
    margin-bottom: 20px;
}

section p {
    color: #555;
    text-align: center;
    max-width: 600px;
    margin: 0 auto 20px;
    font-size: 1.1rem;
}

.section-bg {
    background: linear-gradient(135deg, #009688, #00796b);
    color: #fff;
    padding: 40px 20px;
    border-radius: 8px;
    text-align: center;
}

.section-bg h2 {
    color: #fff;
}

.section-bg p {
    color: #ddd;
}

.btn-glow {
    position: relative;
    padding: 10px 20px;
    color: #fff;
    background: #009688;
    border: none;
    border-radius: 5px;
    overflow: hidden;
    z-index: 1;
}

.btn-glow::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 150%;
    height: 150%;
    background: rgba(0, 150, 136, 0.5);
    border-radius: 50%;
    transform: translate(-50%, -50%) scale(0);
    transition: transform 0.5s ease;
    z-index: -1;
}

.btn-glow:hover::before {
    transform: translate(-50%, -50%) scale(1.5);
}

/* Animations */
@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

.fade-in {
    animation: fadeIn 1s ease-in-out;
}

/* Responsive Design */
@media (max-width: 768px) {
    .container {
        padding: 10px;
    }

    .jumbotron {
        padding: 2rem 1rem;
    }

    .section-bg {
        padding: 20px 10px;
    }
}