.header-title {
    /* background: linear-gradient(to right, #45bd55, #015c08); */
    background: linear-gradient(to right, #004d40, #00796b, #009688, #4db6ac, #88c4bf);
    /* background: linear-gradient(to right, #0060dd, #00227e); */
    width: auto;
    height: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.header-title > div {
    width: 100%;
}

.header-title h1 {
    margin: 0;
    font-size: 5vw; /* Font size responsive to viewport width */
}

@media (max-width: 967px) {
    .header-title {
        /* background: linear-gradient(to right, #45bd55, #015c08); */
        background: linear-gradient(to right, #004d40, #00796b, #009688, #4db6ac, #88c4bf);
        /* background: linear-gradient(to right, #0060dd, #00227e); */
        width: auto;
        height: 250px;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .header-title > div {
        width: 100%;
    }

    .header-title h1 {
        margin: 0;
        font-size: 10vw; /* Font size responsive to viewport width */
    }
}
@media (max-width: 475px) {
    .header-title {
        /* background: linear-gradient(to right, #45bd55, #015c08); */
        background: linear-gradient(to right, #004d40, #00796b, #009688, #4db6ac, #88c4bf);
        /* background: linear-gradient(to right, #0060dd, #00227e); */
        width: auto;
        height: 250px;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .header-title > div {
        width: 100%;
    }

    .header-title h1 {
        margin: 0;
        font-size: 13vw; /* Font size responsive to viewport width */
    }
}

/*** Feature Start ***/
.feature .feature-item {
    position: relative;
    display: flex;
    /* border: 1px solid var(--bs-primary); */
    border-radius: 10px;
    /* background: var(--bs-light); */
    transition: 0.5s;

}

.feature .feature-item::before {
    width: 0;
    height: 100%;
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    border-radius: 10px;
    transition: 0.5s;
}

.feature .feature-item .feature-icon {
    display: inline-flex;
    border-radius: 10px;
    transition: 0.5s;
}

.feature .feature-item:hover .feature-content h5 {
    color: var(--bs-dark);
}
/*** Feature End ***/

/*** Section Title Start ***/
.section-title {
    max-width: 900px;
    text-align: center;
    margin: 0 auto;
}

.section-title .sub-style {
    position: relative;
    display: inline-block;
    text-transform: uppercase;
    color: rgb(0, 0, 96);
}

.section-title .sub-style::before {
    content: "";
    width: 100px;
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    margin-top: 8px;
    margin-left: -100px;
    border: 1px solid rgb(0, 0, 96) !important;
}

.section-title .sub-style::after {
    content: "";
    width: 50px;
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    margin-bottom: 5px;
    margin-left: -50px;
    border: 1px solid rgb(0, 0, 96) !important;
}

.sub-title {
    position: relative;
    display: inline-block;
    text-transform: uppercase;
    color: rgb(0, 0, 96);
}

.sub-title::before {
    content: "";
    width: 100px;
    position: absolute;
    top: 50%;
    right: 0;
    transform: translateY(-50%);
    margin-top: 8px;
    margin-right: -100px;
    border: 1px solid rgb(0, 0, 96) !important;
}

.sub-title::after {
    content: "";
    width: 50px;
    position: absolute;
    top: 50%;
    right: 0;
    transform: translateY(-50%);
    margin-bottom: 8px;
    margin-right: -50px;
    border: 1px solid rgb(0, 0, 96) !important;
}


/*** Service Start ***/
.service .service-item {
    box-shadow: 0 0 45px rgba(0, 0, 0, .2) ;
}

.service .service-item .service-img {
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.service .service-item .service-img img {
    transition: 0.5s;
}

.service .service-item .service-img::before {
    width: 100%;
    height: 0;
    position: absolute;
    content: "";
    top: 0;
    left: 0;
    border-top-right-radius: 10px;
    border-top-left-radius: 10px;
    transition: 0.5s;
    z-index: 5;

}

/* .service .service-item:hover .service-img::before {
    height: 100%;
    background: rgba(21, 185, 217, .3);
} */

.service .service-item .service-img:hover img {
    transform: scale(1.3);
}

.service .service-item .service-content {
    position: relative;
    z-index: 2;

}

.service .service-item .service-content::before {
    width: 100%;
    height: 8px;
    position: absolute;
    content: "";
    bottom: 0;
    left: 0;
    border-bottom-left-radius: 10px;
    border-bottom-right-radius: 10px;
    background:  var(--bs-primary);
    transition: 0.5s;
    z-index: 3;
}

/* .service .service-item:hover .service-content::before {
    background: rgba(21, 185, 217, .5);
    height: 100%;
} */

.service .service-item .service-content .service-content-inner {
    transition: 0.5s;
}


/* .service .service-item:hover .service-content .service-content-inner {
    position: relative;
    color: var(--bs-white) !important;
    z-index: 9;
} */
.service .service-item:hover .service-content .service-content-inner h5 {
    color: var(--bs-secondary);
}

.text-justify p {
    text-align: justify;
}

/*** Service End ***/


.custom-caption {
    bottom: 50%;
    left: 10%;
    transform: translateY(50%);
    text-align: left;
    max-width: 50%;
}

@media (max-width: 878px) {

    .custom-caption p{
        font-size: 12px;
        display: none;
    }

    .custom-caption h5{
        font-size: 18px;
    }

    .custom-caption a{
        font-size: 15px;
    }
}
@media (max-width: 556px) {

    .custom-caption p{
        font-size: 15px;
        display: none;
    }

    .custom-caption h5{
        font-size: 20px;
    }

    .custom-caption a{
        font-size: 15px !important;
    }

    .carousel-item img {
        height: 250px;
        /* Increase height for smaller screens */
        object-fit: cover;
        object-position: right;
        /* Ensure the image covers the area */
    }
}

.service-item {
    height: 60%;
    display: flex;
    flex-direction: column;
}

.service-content {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 60%;
}

.service-content-inner {
    flex-grow: 1;
}

.truncate {
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 6; /* Number of lines before truncating */
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: normal;
}

.text-wrap {
    word-wrap: break-word;
    overflow-wrap: break-word;
}


/* Scroll-Up Button */
#scrollUpBtn {
    position: fixed;
    bottom: 20px;
    right: 20px;
    display: none;
    z-index: 1000;
    color: #fff;
    border: none;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    text-align: center;
    line-height: 35px;
    cursor: pointer;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

#scrollUpBtn:hover {
    background-color: #02575a;
}

#scrollUpBtn i {
    font-size: 18px;
}

/* Apply Button */
#ApplyBtn {
    position: fixed;
    bottom: 20px;
    left: 20px;
    display: none;
    z-index: 1000;
    color: #fff;
    border: none;
    border-radius: 30%;
    width: 120px;
    height: 40px;
    text-align: center;
    line-height: 30px;
    cursor: pointer;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

#ApplyBtn:hover {
    background-color: #014e4e;
}

#ApplyBtn a {
    font-size: 16px;
    color: #fff;
    text-decoration: none;
}


.bg-grad{
    background: linear-gradient(to right, #00227e, #0060dd);
}


.image-style-align-right {
    clear: none
}

.image-style-side {
    float: right;
    margin-left: var(--ck-image-style-spacing);
    max-width: 50%
}

.image-style-align-left {
    float: left;
    margin-right: var(--ck-image-style-spacing)
}

.image-style-align-center {
    margin-left: auto;
    margin-right: auto
}

.image-style-align-right {
    float: right;
    margin-left: var(--ck-image-style-spacing)
}

/* .ck-image img{
width: 100%;
max-width: 100%;
height: auto;
} */

.image img {
    max-width: 100% !important;
    height: auto !important;
    display: block !important;
    margin: 0 auto !important;
}

.image_resized {
    max-width: 100% !important;

    /* Adjust as needed */
    margin: 0 auto !important;
    /* Center horizontally */
    text-align: center !important;
    /* Center inline content */
}

.image_resized img {

    max-width: 100% !important;
    /* Make sure image doesn't exceed container width */
    display: block !important;
    /* Ensure image is a block-level element */
    margin: 0 auto !important;
    /* Center horizontally */
}

.image .image_resized img {
    max-width: 100% !important;
    height: auto !important;
    display: block !important;
    margin: 0 auto !important;
}

/* .image-style-block-align-right img {
display: block;
margin-left: var(--ck-image-style-spacing);
} */

.image-style-block-align-right {
    margin-right: 0 !important;
    margin-left: auto !important;
}

.image-style-block-align-left {
    margin-left: 0 !important;
    margin-right: auto !important;
}

/* .ck-image .image_resized{
max-width:50%;
display:block;
box-sizing:border-box} */
/* .ck-image .image_resized img{width:100%} */

.cookie-banner p {
    margin-bottom: 10px;
    font-size: 14px;
    color: #333;
}

.cookie-banner a {
    color: #007bff;
    text-decoration: none;
}

.accept-cookies-btn {
    background-color: #007bff;
    color: #fff;
    border: none;
    padding: 8px 16px;
    border-radius: 4px;
    cursor: pointer;
    font-size: 14px;
}

.accept-cookies-btn:hover {
    background-color: #0056b3;
}

.cookie-banner {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: #f0f0f0;
    padding: 20px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    z-index: 9999;
    text-align: center;
    max-width: 80%;
}

.blur-content {
    position: relative;
    /* Set position relative */
}

.blur-content.blur::before {
    content: '';
    /* Add pseudo-element */
    position: absolute;
    /* Set position absolute */
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.6);
    /* Black color with opacity */
    z-index: 9998;
    /* Ensure it's behind the banner */
}


.text-justify {
    text-align: justify;
}

.image-style-side {
    float: right;
    margin-left: var(--ck-image-style-spacing);
    max-width: 50%
}




/* .news-link img {
width: 100%;
max-width: 100%;
height: auto;
} */

.text-tiny {
    font-size: .7em
}

.text-small {
    font-size: .85em
}

.text-big {
    font-size: 1.4em
}

.text-huge {
    font-size: 1.8em
}



