/* style.css */
body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    margin: 0;
    padding: 0;
    line-height: 1.6;
    color: #333;
    background-color: #f0f8ff; /* Light blue background */
}

.container {
    width: 80%;
    margin: 0 auto;
    max-width: 1200px;
}

header {
    background-color: #1a75bc; /* Darker blue header */
    color: white;
    padding: 2em 0;
    text-align: center;
}

header .container {
    display: flex;
    flex-direction: column;
    align-items: center;
}

header .profile-pic {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    overflow: hidden;
    margin-bottom: 1em;
}

header .profile-pic img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

header nav ul {
    list-style: none;
    display: flex;
    margin-top: 1em;
}

header nav ul li {
    margin: 0 15px;
}

header nav ul li a {
    color: white;
    text-decoration: none;
}

.section {
    padding: 4em 0;
}

.bg-light {
    background-color: #e6f0ff; /* Lighter blue for sections */
}

#floating-chat {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 1000;
    transition: transform 0.3s ease-in-out;
    transform: scale(0);
}

#floating-chat.show {
    transform: scale(1);
}

#floating-chat img {
    height: 60px;
    border-radius: 50%;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    transition: transform 0.2s ease-in-out;
    background-color: #00c300; /* Line Green */
    padding: 10px;
}

#floating-chat img:hover {
    transform: scale(1.1);
}

h2, h3 {
    color: #1a75bc;
}

a {
    color: #1a75bc;
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

.quote-text {
    font-size: 1.2em;
    line-height: 1.6;
    font-style: italic;
    margin-bottom: 20px;
}