* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, sans-serif;
}

body {
    font-family: Arial, sans-serif;
    background-color: #f8f9fa;
}

.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background-color: #4684c6;
    color: white;
    padding: 15px;
    text-align: center;
    font-size: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.menu {
    
    display: flex;
    display: flex;
justify-content: center;
}
.menu a {
    color: rgb(190, 186, 186);
    text-decoration: none;
    padding: 0 15px;
}
.menu a:hover {
    color: white;
}
.menu-toggle {
    display: none;
    font-size: 24px;
    cursor: pointer;
}
@media (max-width: 768px) {
    .menu {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 50px;
        left: 0;
        width: 100%;
        background-color: #3f4b62;
        text-align: center;
    }
    .menu a {
        padding: 10px;
        display: block;
    }
    .menu-toggle {
        display: block;
    }
}
.banner {
    margin-top: 50px;
    width: 100%;
    height: 300px;
    background: url('/static/banner1.png') no-repeat center center/cover;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 24px;
    font-weight: bold;
    text-align: center;
}
.content {
    margin-top: 200px;
    padding-left: 10%;
    padding-right: 10%;
    
}
.chat-box {
    position: fixed;
    bottom: 100px;
    right: 20px;
    width: 300px;
    background: white;
    border: 1px solid #ccc;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.1);
}
.chat-header {
    background: #3f4b62;
    color: white;
    padding: 10px;
    text-align: center;
}
.chat-messages {
    height: 400px;
    padding: 10px;
    overflow-y: auto;
}
.chat-input {
    display: flex;
    
}
.chat-input input {
    flex: 1;
    padding: 10px;
    border: none;
    outline: none;
    
    
}
.chat-input button {
    padding: 10px;
    background: #4684c6;
    color: white;
    border: none;
    cursor: pointer;
    font-size: x-large;
    
}
.chat-input button:hover {
    background: #4684c6;
}
.voice-btn {
    background: #e63946;
    margin-left: 5px;
}
.voice-btn:hover {
    background: #b71c1c;
}
.message {
    padding: 8px;
    margin: 5px 0;
    border-radius: 5px;
    width: fit-content;
    max-width: 80%;
}
.user-message {
    background-color: #4684c6;
    color: white;
    align-self: flex-end;
}
.bot-message {
    background-color: #ddd;
    color: black;
    align-self: flex-start;
}
.typing-indicator {
    font-style: italic;
    color: #888;
}
/* Dark overlay background */
.overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7); /* Dark fade effect */
    display: none;
    justify-content: center;
    align-items: center;
}

/* Alert box styling */
.alert-box {
    background: white;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
    text-align: center;
    width: 400px;
}

.alert-box button {
    margin-top: 10px;
    padding: 10px 15px;
    border: none;
    background: #4684c6;
    color: white;
    border-radius: 5px;
    cursor: pointer;
}

.alert-box button:hover {
    background: #4684c6;
}
#login{
        text-decoration: none;
        color: white;
}
#logout{
    text-decoration: none;
    color: white;
}
.team-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
}

.team-card {
    background: white;
    border-radius: 10px;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.2);
    overflow: hidden;
    width: 250px;
    text-align: center;
    transition: transform 0.3s;
}

.team-card:hover {
    transform: scale(1.05);
}

.team-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.team-card .info {
    padding: 15px;
}

.team-card h3 {
    margin: 10px 0;
    font-size: 20px;
    color: #333;
}

.team-card p {
    font-size: 14px;
    color: #666;
    text-align: justify;
}

/* Responsive Grid */
@media (max-width: 768px) {
    .team-container {
        flex-direction: column;
        align-items: center;
    }
}
.menu a.active {
    color: white;
}
body {
    font-family: Arial, sans-serif;
}

.overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    display: none;
    justify-content: center;
    align-items: center;
}
.login-box {
    background: white;
    padding: 20px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
    width: 300px;
}

.login-box input {
    width: 100%;
    padding: 10px;
    margin: 5px 0;
    border: 1px solid #ccc;
    border-radius: 5px;
}

.login-box button {
    width: 100%;
    padding: 10px;
    margin: 5px 0;
    border: none;
    background: #4684c6;
    color: white;
    border-radius: 5px;
    cursor: pointer;
}

.login-box button:hover {
    background: #4684c6;
}

.google-login {
    background: #db4437;
    color: white;
}

.google-login:hover {
    background: #b71c1c;
}

.close-btn {
    background: #e63946;
}

.close-btn:hover {
    background: #b71c1c;
}

.divider {
    margin: 10px 0;
    font-weight: bold;
}
.signout-btn {
    margin-top: 20px;
    padding: 10px 20px;
    background-color: #dc3545;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
}

.signout-btn:hover {
    background-color: #c82333;
}

/* Optional: Customize Google button appearance if needed */
.g_id_signin {
    margin-top: 20px;
}

h2 {
    text-align: center;
}
label {
    font-weight: bold;
}
input, textarea {
    width: 100%;
    padding: 10px;
    margin-top: 5px;
    margin-bottom: 15px;
    border: 1px solid #ccc;
    border-radius: 5px;
}

.contact-info {
    text-align: center;
    margin-top: 20px;
}

.container {
    max-width: 600px;
    margin: 150px auto;
    background: white;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.1);
}
.footer {
    text-align: center;
    padding: 10px;
    background-color: #333;
    color: white;
    border-radius: 5px;
    width: 100%;
    
}


