/* General Styles */
html, body, h1, h2, h3, h4, h5, h6 {
    font-family: "Montserrat", sans-serif;
}

body, h1, h2, h3, h4, h5, h6 {
    font-family: "Montserrat", sans-serif;
    
}

/* Content Styles */
.w3-content {
    max-width: 980px;
}

.w3-justify {
    text-align: justify !important;
}

.w3-padding-64 {
    padding-top: 34px !important;
    padding-bottom: 64px !important;
}

.w3-padding-34 {
    padding-top: 80px !important;
    padding-bottom: 14px !important;
}

.w3-padding-32 {
    padding-top: 22px !important;
    padding-bottom: 32px !important;
}
.w3-black {
    color: #fff !important;
    background-color: #003333 !important;
}
.w3-gray {
	color: black !important;
    background-color: #ccffff !important;
}
.w3-text-grey {
    color: #6D918D !important;
}


.w3-light-grey {
    color: #000 !important;
    background-color: #f3f6f5 !important;
}

.w3-margin-bottom {
    margin-bottom: 16px !important;
}

.w3-margin-right {
    margin-right: 16px !important;
}

.w3-text-teal {
    color:  #009999 !important;
}

.w3-padding-32 {
    padding: 32px !important;
}

.w3-opacity {
    opacity: 0.75;
}

.w3-round-xlarge {
    border-radius: 16px !important;
}

.w3-row-padding img {
    margin-bottom: 12px;
}

/* Sidebar Styles */
.w3-sidebar {
    width: 120px;
    background: #235c57;
    height: 100%;
    position: fixed;
    overflow: auto;
}

#main {
    margin-left: 120px;
    margin-bottom: 50px;
}

/* Navbar Styles */
.navbar {
    display: flex;
    justify-content: space-between;
    padding: 0 20px;
    background-color: #99cac5;
}

.navbar a {
    padding: 14px 20px;
    text-decoration: none;
    color: white;
    font-size: 20px;
}

/* Mobile Styles */
@media only screen and (max-width: 600px) {
    #main {
        margin-left: 0;
    }

    .w3-sidebar {
        width: 100%;
        height: auto;
        position: relative;
    }

    .w3-sidebar img {
        display: none;
    }

    .w3-sidebar a {
        display: block;
        text-align: center;
    }
    
     .navbar {
        display: flex; /* Show navbar on small screens */
    }

    .navbar a {
        padding: 10px 14px;
        font-size: 15px;
    }
}

/* Ensure no names are cut off */
.navbar a {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

/* Testimonial Styles */
.testimonial-container {
    background-color: #f1f1f1;
    padding: 20px;
    border-radius: 8px;
    margin-bottom: 20px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.testimonial-header {
    color: #009fcc;
    font-size: 24px;
    font-weight: bold;
    margin-bottom: 10px;
}

.testimonial-content {
    color: #9aacab;
    font-size: 18px;
}

/* Typing Container Styles */
.typing-container {
    display: inline-block;
    white-space: pre;
    color:  #009999;
    padding-top: 150px;
}

/* Contact Form Styles */
.contact-form {
    display: none;
    margin-top: 20px;
    padding: 20px;
    background-color: #333;
}

.contact-form input[type="text"],
.contact-form input[type="submit"],
.contact-form input[type="reset"] {
    width: 100%;
    padding: 10px;
    margin: 5px 0;
    background-color: #444;
    color: #fff;
    border: none;
}

.contact-form input[type="submit"]:hover,
.contact-form input[type="reset"]:hover {
    background-color: #575757;
}

/* Button Styles */
.w3-button {
    background-color: #336666;
    color: #fff;
}

.w3-button:hover {
    background-color:  #009999;
}

/* Footer Styles */
.footer {
    position: fixed;
    bottom: 0;
    width: 100%;
    background-color: #003333;
    color: #fff;
    text-align: center;
    padding: 10px 0;
}

.footer a {
    color:  #009999;
    text-decoration: none;
    margin: 0 10px;
}

.footer a:hover {
    text-decoration: underline;
}

/* Video Container Styles */
.video-container {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: auto;
    padding: 20px;
}

.video-container video {
    width: 100%;
    height: auto;
    max-width: 800px;
}


p {
    font-size: 16px;
  
}