/* CSS3 */

/* General Styles */
header {
    background: linear-gradient(to right, #0d47a1, #1565c0);
}

body {
    font-family: Arial, sans-serif;
    display: block;
    /*flex-direction: column;*/
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    margin: 0;
    background-color: #f8f9fa;
}

iframe {
    width: 80%;
    max-width: 800px;
    height: 450px;
    border: none;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

footer {
    font-size: 0.9rem;
    text-align: center;
    /* Ensure footer text is centered */
    padding: 10px;
    /* Add spacing for better readability */
}

/* Navbar */
.navbar-brand {
    font-size: 1.5rem;
}

.nav-link:hover {
    color: #1565c0 !important;
    text-decoration: underline;
}

/* Cards */
.card:hover {
    transform: translateY(-10px);
    transition: transform 0.3s ease;
    /* Explicitly targeting transform for better performance */
}

/* Buttons */
.btn-outline-light:hover {
    background-color: #ffffff;
    color: #0d47a1;
}

.btn {
    transition: background-color 0.3s ease, transform 0.3s ease;
    /* Unified transition for hover effects */
}

.btn-primary {
    background-color: #007bff;
    border: none;
}

.btn-primary:hover {
    background-color: #0056b3;
}

/* Carousel */
.carousel-item img,
.carousel-item iframe {
    max-height: 600px;
    width: auto;
    margin: 0 auto;
}

.carousel-item {
    text-align: center;
}

/* Round Image */
.round-image {
    width: 200px;
    /* Fixed width for uniform sizing */
    height: 200px;
    /* Matches width for perfect circle */
    border-radius: 50%;
    /* Makes the image round */
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    /* Adds shadow for depth */
    border: 2px solid #007bff;
    /* Adds a clean border */
}

/* Form Container */
.form-container {
    max-width: 600px;
    margin: 30px auto;
    padding: 20px;
    background: #ffffff;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

/* Bot Container */
#bot-container {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    width: 100vw;
    margin: 0;
    padding: 0;
    background-color: #f8f9fa;
    position: relative;
    /* Ensures proper stacking with child elements */
}
