/*

Theme Name: Hello Elementor Child

Theme URI: https://github.com/elementor/hello-theme/

Description: Hello Elementor Child is a child theme of Hello Elementor, created by Elementor team

Author: Elementor Team

Author URI: https://elementor.com/

Template: hello-elementor

Version: 1.0.1

Text Domain: hello-elementor-child

License: GNU General Public License v3 or later.

License URI: https://www.gnu.org/licenses/gpl-3.0.html

*/
/* header css st here */
header#masthead {
    transition: all 0.5s ease !important;
}

header.fixed-header {
    position: fixed !important;
    top:0px !important;
}
/* header css end here */


.single-post-header {
    position: relative;
    background-size: cover;
    background-position: center;
    padding: 50px 0; /* Adjust the padding to suit your design */
    color: white;
}

.single-post-header .overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5); /* Dark overlay to make text readable */
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.single-post-header .breadcrumb {
    font-size: 14px;
    margin-bottom: 10px;
    color: #fff;
}

.single-post-header .post-title {
    font-size: 36px;
    margin: 0;
    font-weight: bold;
}

.content-wrapper {
    display: flex;
    margin-top: 20px;
}

.main-content {
    flex: 70%;
    padding-right: 20px;
}

.sidebar {
    flex: 30%;
    background-color: #04233A;
    padding: 20px;
    color: #fff;
}

.sidebar h3 {
    color: #fff;
}

.sidebar ul {
    list-style: none;
    padding: 0;
}

.sidebar ul li {
    margin-bottom: 10px;
}

.sidebar ul li a {
    color: #2799C3;
    text-decoration: none;
}

.sidebar ul li a:hover {
    text-decoration: underline;
}

.search-bar input[type="search"] {
    width: 100%;
    padding: 10px;
    margin-bottom: 20px;
    border: none;
    background-color: #fff;
    color: #04233A;
}

.search-bar button {
    padding: 10px;
    background-color: #2799C3;
    color: #fff;
    border: none;
    cursor: pointer;
}

.search-bar button:hover {
    background-color: #04233A;
}

.contact-form-here .feild {
    display: flex;
    justify-content: space-between;
    align-items: center;
    column-gap: 13px;
}

.contact-form-here .feild .col-md-6 {
    width: 100%;
}

.contact-form-here textarea {
    height: 120px;
}
.contact-form-here p {
    color: #fff;
}

.contact-form-here p a {
    color: #fff;
    font-weight: 800;
}

.contact-form-here .submit-button {
    background: #2591b9;
    color: #fff;
    border: 1px solid #fff;
}