@import url("https://fonts.googleapis.com/css2?family=Lato:wght@400;700&family=Merriweather+Sans:wght@400;700&display=swap");
body {
    font-family: 'Lato', sans-serif;
    color: #040000;
}

html,
body {
    overflow-x: hidden;
}

.layout_padding {
    padding-top: 20px;
    padding-bottom: 0px;
}

.layout_padding2 {
    padding: 45px 0;
}

.layout_padding2-top {
    padding-top: 45px;
}

.layout_padding2-bottom {
    padding-bottom: 45px;
}

.layout_padding-top {
    padding-top: 120px;
}

.layout_padding-bottom {
    padding-bottom: 120px;
}

.heading_container {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
}

.heading_container h2 {
    font-weight: bold;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    text-transform: uppercase;
    font-family: 'Merriweather Sans', sans-serif;
}

.heading_container p {
    margin-bottom: 0;
}

.heading_container.heading_center {
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    text-align: center;
}

h1,
h2 {
    font-family: 'Merriweather Sans', sans-serif;
}

a,
a:hover,
a:focus {
    text-decoration: none;
}


/*header section*/

.hero_area {
    position: relative;
    background-color: #d1e3ff;
}

.header_section .container-fluid {
    padding-right: 25px;
    padding-left: 25px;
}

.header_section .header_top {
    padding: 15px 0;
    background-color: #000000;
}

.header_section .header_top .contact_nav {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
}

.header_section .header_top .contact_nav a {
    color: #ffffff;
}

.header_section .header_top .contact_nav a i {
    color: #ff8a1d;
}

.header_section .header_bottom {
    padding: 10px 0;
}

.navbar-brand {
    padding: 0;
    margin: 0;
    color: #000000;
    font-weight: bold;
    font-size: 24px;
    font-weight: bold;
}

.navbar-brand span {
    color: #0355cc;
    text-transform: uppercase;
}

.custom_nav-container {
    padding: 0;
}

.custom_nav-container .navbar-nav {
    margin-left: auto;
}

.custom_nav-container .navbar-nav .nav-item .nav-link {
    padding: 10px 25px;
    color: #000000;
    text-align: center;
}

.custom_nav-container .navbar-nav .nav-item:hover .nav-link,
.custom_nav-container .navbar-nav .nav-item.active .nav-link {
    color: #0355cc;
}

.custom_nav-container .form-inline .nav_search-btn {
    width: 35px;
    height: 35px;
    padding: 0;
    border: none;
    color: #000000;
}

.custom_nav-container .form-inline .nav_search-btn:hover {
    color: #0355cc;
}

.custom_nav-container .navbar-toggler {
    outline: none;
}

.custom_nav-container .navbar-toggler {
    padding: 0;
    width: 37px;
    height: 42px;
    -webkit-transition: all .3s;
    transition: all .3s;
}

.custom_nav-container .navbar-toggler span {
    display: block;
    width: 35px;
    height: 4px;
    background-color: #000000;
    margin: 7px 0;
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
    position: relative;
    border-radius: 5px;
    -webkit-transition: all .3s;
    transition: all .3s;
}

.custom_nav-container .navbar-toggler span::before,
.custom_nav-container .navbar-toggler span::after {
    content: "";
    position: absolute;
    left: 0;
    height: 100%;
    width: 100%;
    background-color: #000000;
    top: -10px;
    border-radius: 5px;
    -webkit-transition: all .3s;
    transition: all .3s;
}

.custom_nav-container .navbar-toggler span::after {
    top: 10px;
}

.custom_nav-container .navbar-toggler[aria-expanded="true"] {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
}

.custom_nav-container .navbar-toggler[aria-expanded="true"] span {
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
}

.custom_nav-container .navbar-toggler[aria-expanded="true"] span::before,
.custom_nav-container .navbar-toggler[aria-expanded="true"] span::after {
    -webkit-transform: rotate(90deg);
    transform: rotate(90deg);
    top: 0;
}

.custom_nav-container .navbar-toggler[aria-expanded="true"] .s-1 {
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
    margin: 0;
    margin-bottom: -4px;
}

.custom_nav-container .navbar-toggler[aria-expanded="true"] .s-2 {
    display: none;
}

.custom_nav-container .navbar-toggler[aria-expanded="true"] .s-3 {
    -webkit-transform: rotate(-45deg);
    transform: rotate(-45deg);
    margin: 0;
    margin-top: -4px;
}

.custom_nav-container .navbar-toggler[aria-expanded="false"] .s-1,
.custom_nav-container .navbar-toggler[aria-expanded="false"] .s-2,
.custom_nav-container .navbar-toggler[aria-expanded="false"] .s-3 {
    -webkit-transform: none;
    transform: none;
}

.quote_btn-container {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.quote_btn-container a {
    color: #ffffff;
    margin-right: 25px;
    text-transform: uppercase;
}

.quote_btn-container a span {
    margin-left: 5px;
}

.quote_btn-container a:hover {
    color: #ff8a1d;
}


/*end header section*/


/* slider section */

.slider_section {
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    background-size: cover;
    background-position: bottom;
}

.slider_section .row {
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.slider_section #customCarousel1 {
    width: 100%;
    position: unset;
}

.slider_section .detail-box {
    padding-bottom: 90px;
}

.slider_section .detail-box h1 {
    font-weight: bold;
    margin-bottom: 25px;
    color: #0355cc;
}

.slider_section .detail-box p {
    color: #444;
    font-size: 15px;
}

.slider_section .detail-box a {
    display: inline-block;
    font-family: 'Merriweather Sans', sans-serif;
    text-transform: uppercase;
    padding: 10px 45px;
    background-color: #ff8a1d;
    border: 1px solid #ff8a1d;
    border-radius: 5px;
    color: #ffffff;
    margin-top: 15px;
}

.slider_section .detail-box a:hover {
    background-color: transparent;
    color: #ff8a1d;
}

.slider_section .img-box img {
    width: 130%;
}

.feature_section {
    -webkit-transform: translateY(-50%);
    transform: translateY(-35%);
}

.feature_section .feature_container {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}

.feature_section .feature_container .box {
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    text-align: center;
    margin: 0 10px;
    padding: 45px 15px;
    background-color: #ffffff;
    color: #555089;
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
    -webkit-box-shadow: 0 0 15px 0 rgba(0, 0, 0, 0.2);
    box-shadow: 0 0 15px 0 rgba(0, 0, 0, 0.2);
}

.feature_section .feature_container .box .img-box {
    width: 90px;
    height: 90px;
}

.feature_section .feature_container .box .img-box img {
    max-height: 100%;
    max-width: 100%;
    -webkit-transition: all .3s;
    transition: all .3s;
}

.feature_section .feature_container .box .name {
    margin-top: 20px;
    text-transform: uppercase;
    font-family: 'Merriweather Sans', sans-serif;
    margin-bottom: 0;
}

.feature_section .feature_container .box:hover,
.feature_section .feature_container .box.active {
    background-color: #ff8a1d;
    color: #ffffff;
}

.feature_section .feature_container .box:hover .img-box svg,
.feature_section .feature_container .box.active .img-box svg {
    fill: #ffffff;
}

.feature_section .feature_container .box:hover .img-box svg path,
.feature_section .feature_container .box.active .img-box svg path {
    fill: #ffffff;
}

.about_section .row {
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.about_section .detail-box h2 {
    text-transform: uppercase;
    font-weight: bold;
}

.about_section .detail-box p {
    margin-top: 10px;
}

.about_section .detail-box a {
    margin-top: 15px;
    display: inline-block;
    font-family: Merriweather Sans, sans-serif;
    text-transform: uppercase;
    padding: 10px 45px;
    background-color: #0355cc;
    border: 1px solid #0355cc;
    border-radius: 2px;
    color: #ffffff;
}

.about_section .detail-box a:hover {
    background-color: transparent;
    color: #0355cc;
}

.about_section .img-box img {
    width: 90%;
    margin-left: 100px;
}

.professional_section {
    background-color: #d1e3ff;
}

.professional_section .row {
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.professional_section .img-box img {
    width: 80%;
}

.professional_section .detail-box h2 {
    text-transform: uppercase;
    font-weight: bold;
    color: #0355cc;
}

.professional_section .detail-box p {
    margin-top: 20px;
}

.professional_section .detail-box a {
    margin-top: 25px;
    display: inline-block;
    font-family: 'Merriweather Sans', sans-serif;
    text-transform: uppercase;
    padding: 10px 45px;
    background-color: #ff8a1d;
    border: 1px solid #ff8a1d;
    border-radius: 2px;
    color: #ffffff;
}

.professional_section .detail-box a:hover {
    background-color: transparent;
    color: #ff8a1d;
}

.service_section {
    position: relative;
}

.service_section .box {
    margin-top: 30px;
    text-align: center;
    -webkit-box-shadow: 0 0 5px 2px rgba(0, 0, 0, 0.15);
    box-shadow: 0 0 5px 2px rgba(0, 0, 0, 0.15);
    padding: 25px 15px;
    -webkit-transition: all .3s;
    transition: all .3s;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.service_section .box .img-box {
    width: 65px;
    height: 65px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.service_section .box .img-box img {
    max-height: 100%;
    max-width: 100%;
    -webkit-transition: all .3s;
    transition: all .3s;
}

.service_section .box .detail-box {
    margin-top: 15px;
}

.service_section .box .detail-box h5 {
    font-weight: bold;
}

.service_section .box .detail-box p {
    margin: 0;
}

.service_section .box:hover {
    background-color: #ff8a1d;
    color: #ffffff;
}

.service_section .box:hover .img-box img {
    -webkit-filter: brightness(0) invert(1);
    filter: brightness(0) invert(1);
}

.service_section .btn-box {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    margin-top: 45px;
}

.service_section .btn-box a {
    display: inline-block;
    font-family: 'Merriweather Sans', sans-serif;
    text-transform: uppercase;
    padding: 10px 45px;
    background-color: #0355cc;
    border: 1px solid #0355cc;
    border-radius: 0;
    color: #ffffff;
}

.service_section .btn-box a:hover {
    background-color: transparent;
    color: #0355cc;
}

.heading_container {
    margin-bottom: 30px;
}

.contact_section input {
    width: 100%;
    border: none;
    height: 50px;
    margin-bottom: 25px;
    padding-left: 25px;
    background-color: #ffffff;
    outline: none;
    color: #ffffff;
    -webkit-box-shadow: 0 0 7px 0 rgba(0, 0, 0, 0.2);
    box-shadow: 0 0 7px 0 rgba(0, 0, 0, 0.2);
}

.contact_section input::-webkit-input-placeholder {
    color: #737272;
}

.contact_section input:-ms-input-placeholder {
    color: #737272;
}

.contact_section input::-ms-input-placeholder {
    color: #737272;
}

.contact_section input::placeholder {
    color: #737272;
}

.contact_section input.message-box {
    height: 135px;
}

.contact_section button {
    border: none;
    display: inline-block;
    font-family: 'Merriweather Sans', sans-serif;
    text-transform: uppercase;
    padding: 10px 55px;
    background-color: #0355cc;
    border: 1px solid #0355cc;
    border-radius: 0;
    color: #ffffff;
    margin-top: 15px;
}

.contact_section button:hover {
    background-color: transparent;
    color: #0355cc;
}

.contact_section .map_container {
    height: 360px;
}

.contact_section .map_container .map {
    height: 100%;
}

.info_section {
    padding: 75px 0;
    background-color: #0a0f43;
    text-align: center;
    color: #fff;
}

.info_section h4 {
    text-transform: uppercase;
    font-weight: bold;
    margin-bottom: 25px;
}

.info_section .social-box {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    margin-top: 25px;
}

.info_section .social-box .box {
    background-color: #ffffff;
    padding: 5px 15px;
}

.info_section a {
    margin: 0 5px;
    color: #0355cc;
}

.info_section a i {
    font-size: 18px;
}

.info_section a:hover {
    color: #ff8a1d;
}

.info_items a {
    position: relative;
}

.info_items .item {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    text-align: center;
}

.info_items .item .img-box {
    width: 80px;
    height: 80px;
    border-radius: 100%;
    background-color: #ffffff;
    background-repeat: no-repeat;
    background-position: center;
    text-align: center;
    line-height: 80px;
    background-color: #0355cc;
    color: #ffffff;
}

.info_items .item .img-box i {
    font-size: 24px;
}

.info_items .item p {
    margin-top: 25px;
    color: #fff;
    margin-bottom: 0;
    background-color: #0a0f43;
}

.info_items .item:hover .img-box {
    background-color: #ff8a1d;
}

.info_items {
    position: relative;
}

.info_items::before {
    content: "";
    position: absolute;
    top: 65px;
    width: 75%;
    height: 1px;
    background-color: #fff;
    left: 50%;
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
}


/* footer section*/

.footer_section {
    background-color: #0a0f43;
}

.footer_section p {
    margin: 0;
    padding: 25px 0;
    color: #ffffff;
    text-align: center;
    border-top: 0.8px solid #ffffff;
}

.footer_section a {
    color: inherit;
}

@media (max-width: 1300px) {}

@media (max-width: 1120px) {}

@media (max-width: 992px) {
    .hero_area {
        height: auto;
    }
    .header_section .main_nav {
        flex: 1;
    }
    #navbarSupportedContent {
        margin-top: 15px;
    }
    .slider_section {
        padding-top: 45px;
    }
    .feature_section .feature_container .box {
        padding: 30px 15px;
    }
    .feature_section .feature_container .box .img-box {
        width: 75px;
    }
    .feature_section {
        transform: none;
        padding: 90px 0;
    }
}

@media (max-width: 767px) {
    .layout_padding {
        padding-top: 90px;
        padding-bottom: 90px;
    }
    .layout_padding-top {
        padding-top: 90px;
    }
    .layout_padding-bottom {
        padding-bottom: 90px;
    }
    .slider_section .detail-box {
        padding-bottom: 45px;
    }
    .feature_section .feature_container {
        flex-direction: column;
    }
    .feature_section .feature_container .box {
        padding: 30px 15px;
    }
    .feature_section .feature_container .box:not(:nth-last-child(1)) {
        margin-bottom: 15px;
    }
    .about_section .detail-box {
        margin-bottom: 45px;
    }
    .professional_section .img-box {
        display: none;
    }
    .contact_section form {
        margin-bottom: 45px;
    }
    .info_section .info_items::before {
        width: 1px;
        height: 90%;
        top: 25px;
    }
}

@media (max-width: 576px) {}

@media (max-width: 480px) {}

@media (max-width: 400px) {}

@media (max-width: 360px) {}

@media (min-width: 1200px) {
    .container {
        max-width: 1170px;
    }
}


/* Container styles */

.container {
    max-width: 100%;
    padding: 20px;
}


/* Project card styles */

.project {
    margin-bottom: 30px;
    border: 1px solid #ddd;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    transition: box-shadow 0.3s ease;
}

.project:hover {
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.project-image {
    position: relative;
    overflow: hidden;
}

.project-image img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.3s ease;
}

.project-image:hover img {
    transform: scale(1.1);
}

.overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(255, 165, 0, 0.5);
    /* Orange with 50% opacity */
    opacity: 0;
    transition: opacity 0.3s ease;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.overlay-text {
    color: #fff;
}

.project-image:hover .overlay {
    opacity: 1;
}

.project-details {
    padding: 20px;
}

.project-details h3 {
    font-size: 24px;
    margin-bottom: 10px;
}

.project-details p {
    font-size: 16px;
    color: #666;
    margin-bottom: 10px;
}

.project-details .btn {
    display: inline-block;
    padding: 10px 20px;
    background-color: #007bff;
    color: #fff;
    text-decoration: none;
    border-radius: 5px;
    transition: background-color 0.3s ease;
}

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

.section-title h2 {
    font-size: 32px;
    color: #ff8a1d;
}

.section-title p {
    font-size: 18px;
    color: blue;
}

.info {
    background-color: #fff;
    border: 2px solid #ff8a1d;
    padding: 30px;
    border-radius: 4px;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
}

label {
    display: block;
    margin-bottom: 5px;
    font-weight: bold;
    color: blue;
}

input,
select {
    width: 100%;
    padding: 8px;
    margin-bottom: 15px;
    box-sizing: border-box;
    border: 1px solid #ccc;
    border-radius: 4px;
}

input[type="submit"] {
    background-color: #ff8a1d;
    color: white;
    cursor: pointer;
}

input[type="submit"]:hover {
    background-color: blue;
}

.meetings-container {
    margin-top: 20px;
}

#delete-meetings {
    background-color: red;
    color: white;
    border: none;
    padding: 10px;
    border-radius: 4px;
    cursor: pointer;
    margin-top: 20px;
}

.section-title h2 {
    font-size: 32px;
    color: #ff8a1d;
}

.section-title p {
    font-size: 18px;
    color: blue;
}

.info {
    background-color: #fff;
    border: 2px solid #ff8a1d;
    padding: 30px;
    border-radius: 4px;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
}

label {
    display: block;
    margin-bottom: 5px;
    font-weight: bold;
    color: blue;
}

input,
textarea {
    width: 100%;
    padding: 8px;
    margin-bottom: 15px;
    box-sizing: border-box;
    border: 1px solid #ccc;
    border-radius: 4px;
}

input[type="submit"] {
    background-color: #ff8a1d;
    color: white;
    cursor: pointer;
}

input[type="submit"]:hover {
    background-color: blue;
}

.posts-container .post-item {
    border: 1px solid #ddd;
    padding: 15px;
    margin-bottom: 10px;
    border-radius: 4px;
    background-color: #f9f9f9;
}

.posts-container .delete-post {
    background-color: red;
    color: white;
    border: none;
    padding: 5px 10px;
    border-radius: 3px;
    cursor: pointer;
    float: right;
}

#roadmap {
    background-color: #ffffff;
    padding: 40px 0;
}

.section-title {
    text-align: center;
    margin-bottom: 30px;
}

.section-title h2 {
    font-size: 36px;
    color: #ff8a1d;
    margin-bottom: 10px;
}

.phase {
    margin-bottom: 60px;
}

h3 {
    font-size: 28px;
    color: #0033ff;
    margin-bottom: 20px;
    text-align: center;
}

.roadmap-container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 20px;
}

.roadmap-content {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.step {
    position: relative;
    padding: 20px;
    border: 2px solid #ddd;
    border-radius: 8px;
    background-color: #f9f9f9;
    cursor: pointer;
    transition: background-color 0.3s, transform 0.3s;
}

.step:hover {
    background-color: #e0f7fa;
    transform: scale(1.02);
}

.step-header {
    display: flex;
    align-items: center;
}

.step-number {
    background-color: #0033ff;
    color: #ffffff;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 18px;
    margin-right: 15px;
}

.step-details {
    display: none;
    padding-top: 10px;
    color: #333;
}

.step-details p {
    margin: 0;
}

body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    overflow-x: hidden;
    background-color: #f5f5f5;
}

#chatbot {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 9999;
}

#chatbot-icon {
    background-color: #ff8a1d;
    color: white;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 30px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
}

#chatbot-window {
    display: none;
    flex-direction: column;
    width: 350px;
    height: 450px;
    background-color: white;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.3);
    border-radius: 10px;
    overflow: hidden;
}

#chatbot-header {
    background-color: #ff8a1d;
    color: white;
    padding: 10px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

#chatbot-messages {
    flex: 1;
    padding: 10px;
    overflow-y: auto;
    background-color: #eaeaea;
}

.message {
    margin-bottom: 10px;
    padding: 8px 12px;
    border-radius: 15px;
    max-width: 80%;
}

.user {
    background-color: #0084ff;
    color: white;
    align-self: flex-end;
}

.bot {
    background-color: #f1f0f0;
    color: black;
    align-self: flex-start;
}

#chatbot-input {
    display: flex;
    align-items: center;
    padding: 10px;
    background-color: #f1f1f1;
}

#chatbot-input input {
    flex: 1;
    padding: 10px;
    border: none;
    border-radius: 5px;
}

#chatbot-input button {
    background-color: #ff8a1d;
    color: white;
    border: none;
    padding: 10px;
    margin-left: 5px;
    border-radius: 5px;
    cursor: pointer;
}

#chatbot-input button:hover {
    background-color: #e07b1b;
}


/* Style for the main form container */

#job-suggestion-form {
    background-color: #fff;
    /* White background for form */
    border: 1px solid #ccc;
    /* Light grey border */
    border-radius: 8px;
    /* Rounded corners */
    padding: 20px;
    /* Padding inside the form */
    max-width: 600px;
    /* Max width of the form */
    margin: 20px auto;
    /* Center the form horizontally */
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    /* Subtle shadow for better appearance */
}


/* Fieldset styling */

#job-suggestion-form fieldset {
    border: 1px solid #ff8a1d;
    /* Orange border */
    border-radius: 8px;
    /* Rounded corners */
    padding: 20px;
    /* Padding inside fieldset */
    margin: 0;
    /* No margin */
}


/* Legend styling */

#job-suggestion-form legend {
    font-size: 1.2em;
    /* Slightly larger font size */
    color: #ff8a1d;
    /* Orange color */
    margin-bottom: 10px;
    /* Space below legend */
}


/* Label styling */

#job-suggestion-form label {
    display: block;
    /* Block display for labels */
    font-size: 1em;
    /* Font size */
    color: #333;
    /* Dark grey color for text */
    margin: 10px 0 5px;
    /* Space around labels */
}


/* Input field styling */

#job-suggestion-form input[type="number"],
#job-suggestion-form input[type="text"] {
    width: calc(100% - 22px);
    /* Full width minus padding */
    padding: 10px;
    /* Padding inside input fields */
    border: 1px solid #ddd;
    /* Light grey border */
    border-radius: 4px;
    /* Rounded corners */
    box-sizing: border-box;
    /* Include padding and border in element's total width and height */
    margin-bottom: 15px;
    /* Space below input fields */
}


/* Button styling */

#job-suggestion-form button {
    background-color: #ff8a1d;
    /* Orange background */
    color: #fff;
    /* White text */
    border: none;
    /* Remove default border */
    padding: 10px 20px;
    /* Padding inside button */
    border-radius: 4px;
    /* Rounded corners */
    cursor: pointer;
    /* Pointer cursor on hover */
    font-size: 1em;
    /* Font size */
    transition: background-color 0.3s ease;
    /* Smooth background color transition */
}

#job-suggestion-form button:hover {
    background-color: #e67e22;
    /* Darker orange on hover */
}


/* Styling for the result div */

#result {
    background-color: #f8f8f8;
    /* Light grey background */
    border: 1px solid #ff8a1d;
    /* Orange border */
    border-radius: 8px;
    /* Rounded corners */
    padding: 20px;
    /* Padding inside result div */
    max-width: 600px;
    /* Max width of result div */
    margin: 20px auto;
    /* Center the result div horizontally */
    display: none;
    /* Hidden by default */
}


/* Heading inside result div */

#result h2 {
    color: #ff8a1d;
    /* Orange color */
    margin-top: 0;
    /* No margin at the top */
}


/* Paragraph inside result div */

#result p {
    color: #333;
    /* Dark grey color */
}

.custom-container {
    background-color: #fff;
    /* White background for container */
    padding: 30px;
    /* Increased padding */
    margin-bottom: 20px;
    border-radius: 4px;
    /* Consistent border radius */
    border: 2px solid #ff8a1d;
    /* Border matching the theme */
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
    /* Box shadow for depth */
}

.custom-container h2 {
    font-size: 32px;
    color: #ff8a1d;
    /* Orange title color */
}

.custom-container h3 {
    font-size: 18px;
    color: blue;
    /* Blue subtitle color */
}

.custom-container label {
    display: block;
    margin-bottom: 5px;
    font-weight: bold;
    color: blue;
    /* Blue label text */
}

.custom-container input,
.custom-container textarea,
.custom-container select {
    width: 100%;
    padding: 8px;
    margin-bottom: 15px;
    box-sizing: border-box;
    border: 1px solid #ccc;
    /* Light gray border */
    border-radius: 4px;
    /* Consistent border radius */
}

.custom-container button {
    padding: 10px 20px;
    background-color: #ff8a1d;
    /* Orange button background */
    color: white;
    /* White text on button */
    border: none;
    border-radius: 4px;
    /* Consistent border radius */
    cursor: pointer;
}

.custom-container button:hover {
    background-color: blue;
    /* Blue background on hover */
}

.custom-container .post {
    background-color: #ffffff;
    /* White background for posts */
    color: blue;
    /* Blue text for post content */
    padding: 15px;
    margin-bottom: 10px;
    border-radius: 4px;
    /* Consistent border radius */
    position: relative;
    border: 2px solid #ff8a1d;
    /* Orange border for posts */
}

.custom-container .post button {
    position: absolute;
    top: 10px;
    right: 10px;
    padding: 5px 10px;
    background-color: #ff8a1d;
    /* Orange button background */
    color: #ffffff;
    /* White text */
    border: none;
    border-radius: 4px;
    /* Consistent border radius */
    cursor: pointer;
}

.custom-container .post button:hover {
    background-color: blue;
    /* Blue background on hover */
}