  /* Custom CSS */
  html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}
.navbar {
    padding: 1rem 0;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}
.footer {
    background-color: #212529;
    color: white;
    padding: 2rem 0;
    margin-top: 3rem;
}
.login-container {
    max-width: 450px;
    margin: 2rem auto;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 0 20px rgba(0,0,0,0.1);
}
.social-icon {
    color: white;
    margin-right: 1rem;
    font-size: 1.2rem;
    transition: color 0.3s;
}
.social-icon:hover {
    color: #0d6efd;
}
.hero-section {
    background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url('https://images.unsplash.com/photo-1521791136064-7986c2920216?ixlib=rb-1.2.1&auto=format&fit=crop&w=1950&q=80');
    background-size: cover;
    background-position: center;
    color: white;
    padding: 120px 0;
 
}

.section-padding {
    padding: 80px 0;
}

.card {
    transition: transform 0.3s, box-shadow 0.3s;
    margin-bottom: 20px;
}



.process-card {
    border-radius: 10px;
    border: none;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
}

.process-icon {
    font-size: 2.5rem;
    margin-bottom: 15px;
    color: #0d6efd;
}

.testimonial-card {
    padding: 20px;
    border-radius: 10px;
    background-color: #f8f9fa;
}

.testimonial-img {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 15px;
}



html, body {
    height: 100%;
    margin: 0;
    display: flex;
    flex-direction: column;
}

main {
    flex: 1; 
}

.footer {
    background-color: #212529;
    color: white;
    padding: 60px 0 30px;
}
.social-icon {
    font-size: 1.5rem;
    margin-right: 15px;
    color: white;
    transition: color 0.3s;
}

.social-icon:hover {
    color: #0d6efd;
}

.feature-icon {
    font-size: 2rem;
    color: #0d6efd;
    margin-bottom: 15px;
}

/* Form styles */
.form-section {
    background-color: #f8f9fa;
    border-radius: 10px;
}

.form-control:focus {
    box-shadow: 0 0 0 0.25rem rgba(13, 110, 253, 0.25);
    border-color: #0d6efd;
}

#loginError{
    display: none;
}