body {
    font-family: 'Arial', sans-serif;
    margin: 0;
    padding: 0;
}

#message-icon {
    position: fixed;
    top: 10px;
    right: 10px;
    display: none;
    cursor: pointer;
}


#chatbot-container {
    position: fixed;
    top: 150px;
    right: 10px;
    display: none;
    background-color: #fff;
    border: 5px solid rgb(14, 13, 13);
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
    max-width: 300px;
    width: 100%;
    height: 500px;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
}

#title-container {
    background-color: #aaf0d1; /* Light mint color */
    padding: 10px;
    text-align: center;
    font-weight: bold;
    border: 5px 5px solid #ccc; 
    color: #000000; /* Black text color */
}

#chat-container {
    flex: 1;
    overflow-y: auto; /* Enable vertical scrolling if the content exceeds the container height */
    border: 5px solid #ccc; /* Add a border for better visual separation */
     /* Optional: Add rounded corners for a softer look */
    max-height: 450px; /* Set a maximum height to limit the chat container size */
}

#input-container {
    padding: 10px;
    border-top: 1px solid #ccc;
    display: flex;
    align-items: center;
    align-self: flex-end; /* Move input container to the bottom */
}

#user-input {
    flex: 1;
    padding: 8px;
    margin-right: 10px;
    border: 1px solid #ccc;
    border-radius: 4px;
}

#user-input:focus {
    outline: none;
    border-color: #007bff;
}

button {
    padding: 8px 15px;
    font-size: 14px;
    background-color: #007bff;
    color: #fff;
    border: none;
    border-radius: 4px;
    cursor: pointer;
}

button:hover {
    background-color: #08923d;
}

html{
    scroll-behavior: smooth;
}
h1 {
    color: #681010;
}

nav.navbar {
    background-color: #084c61;
    height: 100px;
    color: #db691e;
    border: 3px solid #000000; /* Dark black border */
}

.navbar-nav {
    border: 3px solid #000000; /* Dark black border */
    border-radius: 10px; /* Rounded corners */
    padding: 5px; /* Optional: Add padding around the border */
}

.navbar-nav .nav-item {
    margin: 0 5px; /* Optional: Add spacing between items inside the border */
}

.navbar-nav{
    background-color: #1f242d; /* Limit background to the navigation area */
    border-radius: 5px; /* Optional: Rounded corners */
    padding: 5px;
}

.nav-item .nav-link {
    color: #ffffff; /* Ensure text is visible */
    padding: 10px 15px; /* Spacing for links */
}

.navbar {
    padding: 10px 15px; /* Add padding for better spacing */
}

.navbar-toggler {
    border: none; /* Remove the default border for a cleaner look */
}

.navbar-brand {
    font-size: 40px; /* Adjust font size for mobile */
}


p {
    font-size: 1rem; /* Make text slightly smaller for mobile readability */
    line-height: 1.5;
}

#home h2, 
#services h2,
#blog h2,
#team h2 {
    margin-bottom: 3rem; /* Adjust spacing as needed */
    color: #db691e ; 
    font-family: 'Times New Roman', Times, serif;
    text-align: center;
}

.services, .home {
    font-size: 24px;
    text-align: left;
    list-style-type: none;
    list-style-type: none; /* Removes default bullets */
    padding: 0;           /* Removes any default padding */
    margin: 0;            /* Removes any default margin */
}

.services, .home li {
    display: flex;       /* Allows better control over the icon and text alignment */
    align-items: flex-start; /* Ensures the text aligns to the top of the icon */
    margin-bottom: 0.5rem; /* Optional: Adds spacing between list items */
}

.home {
    list-style-type: none; /* Optional: removes default bullets */
    text-align: center; /* Centers text inside the list items */
    margin: 0 auto; /* Centers the <ul> horizontally */
    padding: 0; /* Removes default padding */
}

.services li span {
    flex: 1;            /* Ensures the text spans properly without wrapping under the bullet */
}

.services li::before {
    content: "";       /* Inserts the custom bullet point */
    margin-right: 0.5rem; /* Space between the bullet and text */
    font-size: 1rem;     /* Adjust the size of the bullet point */
    line-height: 1.5;    /* Aligns with the text's height */
}

/* nav.main-nav {
    background-color: rgb(90, 124, 139);
    text-align:end;
} */


nav ul {
    list-style-type: none;
    margin: 0;
    padding: 0;
}

nav li {
    display: inline-block;
    margin-right: 15px;
}

nav a {
    text-decoration: none;
    color: rgba(28, 186, 201, 0.721);
    font-weight: bold;
    font-size: 16px;
}

section {
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    background: #1f242d;
    padding: 150px;
    text-align: center;
    font-size: 100px;
    color: #fff;
    font-weight: 700;
    padding: 20px 15px; /* Reduce padding for smaller devices */
}

.image-section{
    max-width: 100%;
    overflow: hidden;
    background-image: url(/samuel-arkwright-dTLLaxj2mWw-unsplash.jpg);
}

.image {
    width: 100%;
    height: auto;
    display: block;
}

section:nth-child(odd){
background: #34495e ;
}

p {
    font-size: 18px;
    line-height: 1.6;
    color: #666;
}

.cta-button {
    display: inline-block;
    padding: 15px 30px;
    font-size: 18px;
    text-align: center;
    text-decoration: none;
    background-color: #007bff;
    color: white;
    border-radius: 5px;
    transition: background-color 0.3s ease;
}

.cta-button:hover {
    background-color: #0056b3;
}

footer {
    background-color: #084c61;
    padding: 5px;
    text-align: center;
}

.service-item {
    margin-bottom: 20px; /* Add spacing between cards */
    padding: 15px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
}

@media (max-width: 768px) {
    .service-item h4 {
        font-size: 1.2rem; /* Adjust title size */
    }

    .service-item p {
        font-size: 0.9rem; /* Adjust description size */
    }
}
