.contact-bg {
    position: relative;
    /* Ensure proper positioning for the overlay */
    height: 50vh;
    background-position: 50% 50%;
    background-repeat: no-repeat;
    background-size: cover;
    /* Ensure the background covers the entire element */
    text-align: center;
    color: #fff;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.content-item i {
    font-size: 3rem;
    color: #0e72b4;
    /* Example color */
    margin-bottom: 10px;
}

/* Add overlay */
.contact-bg::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.103);
    /* Adjust the opacity as needed */
    z-index: 1;
    /* Ensure the overlay is behind the content */
}

/* Rest of your existing CSS */
.contact-bg h3 {
    font-size: 1.3rem;
    font-weight: 400;
}

.contact-bg h2 {
    font-size: 3rem;
    text-transform: uppercase;
    padding: 0.4rem 0;
    letter-spacing: 4px;
}

.line div {
    margin: 0 0.2rem;
}

.line div:nth-child(1),
.line div:nth-child(3) {
    height: 3px;
    width: 70px;
    background: #0e72b4;
    border-radius: 5px;
}

.line {
    display: flex;
    align-items: center;
}

.line div:nth-child(2) {
    width: 10px;
    height: 10px;
    background: #0e72b4;
    border-radius: 50%;
}

.text {
    font-weight: 300;
    opacity: 0.9;
}

@media screen and (min-width: 768px) {
    .contact-bg .text {
        width: 70%;
        margin-left: auto;
        margin-right: auto;
    }

    .contact-info {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
    }
}

@media screen and (min-width: 992px) {
    .contact-bg .text {
        width: 50%;
    }

    .contact-form {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        align-items: center;
    }
}

@media screen and (min-width: 1200px) {
    .contact-info {
        grid-template-columns: repeat(4, 1fr);
    }
}

.contact .info-boxs {
    color: #444;
    box-shadow: 0 0 30px rgba(214, 215, 216, 0.6);
    padding: 20px 10px 30px 10px;
    margin-bottom: 30px;
    width: 100%;
}

.contact .info-boxs i {
    font-size: 20px;
    color: #428bca;
    border-radius: 50%;
    padding: 8px;
    border: 2px dotted #9eccf4;
}

.contact .info-boxs h3 {
    font-size: 20px;
    color: #666;
    font-weight: 700;
    margin: 10px 0;
}

.contact .info-boxs p {
    padding: 0px 20px;
    line-height: 24px;
    font-size: 14px;
    margin-bottom: 0;
}

.img-service {
    display: block;
    width: 50%;
    margin-left: auto;
    margin-right: auto;
}

.img-serviceai {
    display: block;
    width: 100%;
    margin-left: auto;
    margin-right: auto;
}

.img-services {
    display: block;
    width: 30%;
    margin-left: auto;
    margin-right: auto;
}

/* management */

.container-manage {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    width: 80%;
    margin: 0 auto;
}

.card_manage {
    background-color: white;
    border: 1px solid #ddd;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    width: calc(50% - 20px);
    /* Adjust width to fit two boxes in one line with margin */
    margin-bottom: 20px;
    box-sizing: border-box;
    text-align: center;
    padding: 20px;
}

.card_manage img {
    display: block;
    margin: 0 auto 10px;
    border-radius: 50%;
    width: 200px;
    height: 200px;
}

.card_manage h3 {
    font-size: 24px;
    color: #333;
    margin-bottom: 5px;
}

.card_manage h4 {
    font-size: 18px;
    color: #777;
    margin-bottom: 15px;
}

.card_manage p {
    font-size: 14px;
    color: #555;
    text-align: justify;
    margin-top: 10px;
}

.card_manage .read-more {
    margin-top: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.card_manage .read-more a {
    text-decoration: none;
    color: #ffffff;
    background-color: #0e72b4;
    /* Change background color to #76ABD8 */
    padding: 10px 19px;
    border-radius: 4px;
    margin-right: 10px;
}

.card_manage .read-more a:last-child {
    margin-right: 0;
}

/* Media Query for smaller screens */
@media (max-width: 768px) {
    .card_manage .read-more {
        justify-content: center;
    }
}

.card_manage .social-icons {
    margin-top: 0px;
    /* Adjust margin for spacing */
    display: flex;
    justify-content: center;
}

.card_manage .social-icons a {
    text-decoration: none;
    color: #ffffff;
    margin: 0 5px;
    /* Adjust margin for spacing */
    font-size: 16px;
}

/* Media Query for smaller screens */
@media (max-width: 768px) {
    .card_manage .social-icons {
        justify-content: center;
    }
}

/* Media Query for smaller screens */
@media (max-width: 768px) {
    .card_manage {
        width: 100%;
        /* Full width on smaller screens */
    }
}

/* navbar request demo button */

.navbar .btn-primary.text-whites {
    padding: 8px 20px;
    border-radius: 0px;
    background-color: #0e72b4;
    /* Change this to match your site's color scheme */
    color: #fff;
    margin-left: 40px;
}

.navbar .btn-primary.text-whites:hover {
    background-color: #0d4472;
    /* Darker shade for hover effect */
    color: #fff;
}

.text-whites {
    --bs-text-opacity: 1;
    color: rgb(255 255 255) !important;
}

/* Responsive adjustments */
@media (max-width: 991.98px) {
    .navbar ul {
        flex-direction: column;
        align-items: flex-start;
        width: 120%;
    }

    .navbar ul li {
        width: 35%;
        text-align: left;
        padding: 10px 0;
    }

    .navbar ul li a {
        width: 100%;
    }

    .navbar .btn.nav-link.btn-primary.text-white {
        width: 100%;
        text-align: center;
        margin: 10px 0;
    }

    .mobile-nav-toggle {
        display: block;
    }
}

@media (min-width: 992px) {
    .mobile-nav-toggle {
        display: none;
    }
}

/* jobs page */

.shadow {
    box-shadow: 0 0 3px rgb(53 64 78 / 20%) !important;
}

.rounded {
    border-radius: 5px !important;
}

.bg-light {
    background-color: #f7f8fa !important;
}

.badge {
    padding: 5px 8px;
    border-radius: 3px;
    letter-spacing: 0.5px;
    font-size: 12px;
}

a {
    text-decoration: none;
}

/* blog page */

/* footer */
body {
    margin: 0;
    font-family: Arial, sans-serif;
}

.certification p {
    margin: 10px 0;
}

h5 {
    /* border-bottom: 2px solid white; */
    padding-bottom: 10px;
    margin-bottom: 20px;
}

/* ul {
    list-style: none;
    padding: 0;
} */

ul li {
    margin: 15px 0;
}

a.text-white {
    text-decoration: none;
}

a.text-white:hover {
    text-decoration: underline;
}

/* .btn-outline-light {
    border-color: #fff;
    color: #fff;
}

.btn-outline-light:hover {
    background-color: #fff;
    color: #4A4A4A;
} */

/* .img-fluid {
    max-width: 40%;
    height: auto;
} */
.copyright {
    text-align: center;
    padding: 20px;
}

.col-md-6.d-flex {
    display: flex;
    align-items: center;
    /* Vertically center items */
}

.col-md-6.d-flex>div {
    margin-left: 10px;
    /* Adjust margin as needed */
}

.col-md-3 ul li a::before {
    position: relative;
    content: "\f105";
    font-family: "font awesome 5 free";
    font-weight: 900;
    margin-right: 10px;
    color: #9b9b9b;
}

/*--------------------------------------------------------------
# Team Section
--------------------------------------------------------------*/

.team {
    background: #fff;
    padding: 60px 0 70px 0;
}

.team .member {
    position: relative;
}

.team .member .member-img {
    width: 200px;
    height: 200px;
    margin: 0 80px;
    border-radius: 50%;
    overflow: hidden;
    position: relative;
    border: 4px solid var(--background-color);
    box-shadow: 0 15px 35px -10px rgba(0, 0, 0, 0.2);
}

@media (max-width: 1024px) {
    .team .member .member-img {
        margin: 0 60px;
    }
}

.team .member .member-img img {
    position: relative;
    z-index: 1;
}

.team .member .member-img .social {
    position: absolute;
    inset: 0;
    background-color: rgba(0, 0, 0, 0.6);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 2;
    padding-bottom: 20px;
    transition: 0.3s;
    visibility: hidden;
    opacity: 0;
}

.team .member .member-img .social a {
    transition: 0.3s;
    color: var(--contrast-color);
    font-size: 20px;
    margin: 0 8px;
}

.team .member .member-img .social a:hover {
    color: var(--accent-color);
}

.team .member .member-info {
    margin-top: 30px;
}

.team .member .member-info h4 {
    font-weight: 700;
    margin-bottom: 6px;
    font-size: 18px;
}

.team .member .member-info span {
    font-style: italic;
    display: block;
    font-size: 15px;
    color: color-mix(in srgb, var(--default-color), transparent 40%);
    margin-bottom: 10px;
}

.team .member .member-info p {
    margin-bottom: 0;
    font-size: 14px;
}

.team .member:hover .member-img .social {
    padding-bottom: 0;
    visibility: visible;
    opacity: 1;
}

/*--------------------------------------------------------------
# Blog Posts Section
--------------------------------------------------------------*/
.blog-posts article {
    background-color: var(--surface-color);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
    padding: 30px;
    height: 100%;
}

.blog-posts .post-img {
    max-height: 440px;
    margin: -30px -30px 0 -30px;
    overflow: hidden;
}

.blog-posts .title {
    font-size: 24px;
    font-weight: 700;
    padding: 0;
    margin: 30px 0;
}

.blog-posts .title a {
    color: #333333;
    transition: 0.3s;
}

.blog-posts .title a:hover {
    color: #0e72b4;
}

.blog-posts .meta-top {
    margin-top: 20px;
    color: color-mix(in srgb, #333333, transparent 40%);
}

.blog-posts .meta-top ul {
    display: flex;
    flex-wrap: wrap;
    list-style: none;
    align-items: center;
    padding: 0;
    margin: 0;
}

.blog-posts .meta-top ul li+li {
    padding-left: 20px;
}

.blog-posts .meta-top i {
    font-size: 16px;
    margin-right: 8px;
    line-height: 0;
    color: color-mix(in srgb, #333333, transparent 20%);
}

.blog-posts .meta-top a {
    color: color-mix(in srgb, #333333, transparent 40%);
    font-size: 14px;
    display: inline-block;
    line-height: 1;
}

.blog-posts .content {
    margin-top: 20px;
}

.blog-posts .content .read-more {
    text-align: right;
}

.blog-posts .content .read-more a {
    background: #0e72b4;
    color: #ffffff;
    display: inline-block;
    padding: 8px 30px;
    transition: 0.3s;
    font-size: 14px;
    border-radius: 4px;
}

.blog-posts .content .read-more a:hover {
    background: #0d4472;
}

/*--------------------------------------------------------------
# Blog Pagination Section
--------------------------------------------------------------*/
.blog-pagination {
    padding-top: 0;
    color: color-mix(in srgb, #333333, transparent 40%);
}

.blog-pagination ul {
    display: flex;
    padding: 0;
    margin: 0;
    list-style: none;
}

.blog-pagination li {
    margin: 0 5px;
    transition: 0.3s;
}

.blog-pagination li a {
    color: color-mix(in srgb, #333333, transparent 40%);
    padding: 7px 16px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.blog-pagination li a.active,
.blog-pagination li a:hover {
    background: #0e72b4;
    color: #ffffff;
}

.blog-pagination li a.active a,
.blog-pagination li a:hover a {
    color: #0e72b4;
}

/*--------------------------------------------------------------
# Blog Details Section
--------------------------------------------------------------*/
.blog-details {
    padding-bottom: 30px;
}

.blog-details .article {
    background-color: #ffffff;
    padding: 30px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}

.blog-details .post-img {
    margin: -30px -30px 20px -30px;
    overflow: hidden;
}

.blog-details .title {
    color: var(--heading-color);
    font-size: 28px;
    font-weight: 700;
    padding: 0;
    margin: 30px 0;
}

.blog-details .content {
    margin-top: 20px;
}

.blog-details .content h3 {
    font-size: 22px;
    margin-top: 30px;
    font-weight: bold;
}

.blog-details .content blockquote {
    overflow: hidden;
    background-color: color-mix(in srgb, #333333, transparent 95%);
    padding: 60px;
    position: relative;
    text-align: center;
    margin: 20px 0;
}

.blog-details .content blockquote p {
    color: #333333;
    line-height: 1.6;
    margin-bottom: 0;
    font-style: italic;
    font-weight: 500;
    font-size: 22px;
}

.blog-details .content blockquote:after {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 3px;
    background-color: var(--accent-color);
    margin-top: 20px;
    margin-bottom: 20px;
}

.blog-details .meta-top {
    margin-top: 20px;
    color: color-mix(in srgb, #333333, transparent 40%);
}

.blog-details .meta-top ul {
    display: flex;
    flex-wrap: wrap;
    list-style: none;
    align-items: center;
    padding: 0;
    margin: 0;
}

.blog-details .meta-top ul li+li {
    padding-left: 20px;
}

.blog-details .meta-top i {
    font-size: 16px;
    margin-right: 8px;
    line-height: 0;
    color: color-mix(in srgb, #333333, transparent 40%);
}

.blog-details .meta-top a {
    color: color-mix(in srgb, #333333, transparent 40%);
    font-size: 14px;
    display: inline-block;
    line-height: 1;
}

.blog-details .meta-bottom {
    padding-top: 10px;
    border-top: 1px solid color-mix(in srgb, #333333, transparent 90%);
}

.blog-details .meta-bottom i {
    color: color-mix(in srgb, #333333, transparent 40%);
    display: inline;
}

.blog-details .meta-bottom a {
    color: color-mix(in srgb, #333333, transparent 40%);
    transition: 0.3s;
}

.blog-details .meta-bottom a:hover {
    color: var(--accent-color);
}

.blog-details .meta-bottom .cats {
    list-style: none;
    display: inline;
    padding: 0 20px 0 0;
    font-size: 14px;
}

.blog-details .meta-bottom .cats li {
    display: inline-block;
}

.blog-details .meta-bottom .tags {
    list-style: none;
    display: inline;
    padding: 0;
    font-size: 14px;
}

.blog-details .meta-bottom .tags li {
    display: inline-block;
}

.blog-details .meta-bottom .tags li+li::before {
    padding-right: 6px;
    color: #333333;
    content: ",";
}

.blog-details .meta-bottom .share {
    font-size: 16px;
}

.blog-details .meta-bottom .share i {
    padding-left: 5px;
}

/*--------------------------------------------------------------
# Blog Author Section
--------------------------------------------------------------*/
.blog-author {
    padding: 10px 0 40px 0;
}

.blog-author .author-container {
    background-color: #ffffff;
    padding: 20px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}

.blog-author img {
    max-width: 120px;
    margin-right: 20px;
}

.blog-author h4 {
    font-weight: 600;
    font-size: 20px;
    margin-bottom: 0px;
    padding: 0;
    color: color-mix(in srgb, #333333, transparent 20%);
}

.blog-author .social-links {
    margin: 0 10px 10px 0;
}

.blog-author .social-links a {
    color: color-mix(in srgb, #333333, transparent 60%);
    margin-right: 5px;
}

.blog-author p {
    font-style: italic;
    color: color-mix(in srgb, #333333, transparent 30%);
    margin-bottom: 0;
}

/*--------------------------------------------------------------
# Blog Comments Section
--------------------------------------------------------------*/
.blog-comments {
    padding: 10px 0;
}

.blog-comments .comments-count {
    font-weight: bold;
}

.blog-comments .comment {
    margin-top: 30px;
    position: relative;
}

.blog-comments .comment .comment-img {
    margin-right: 14px;
}

.blog-comments .comment .comment-img img {
    width: 60px;
}

.blog-comments .comment h5 {
    font-size: 16px;
    margin-bottom: 2px;
}

.blog-comments .comment h5 a {
    font-weight: bold;
    color: var(--default-color);
    transition: 0.3s;
}

.blog-comments .comment h5 a:hover {
    color: var(--accent-color);
}

.blog-comments .comment h5 .reply {
    padding-left: 10px;
    color: color-mix(in srgb, var(--default-color), transparent 20%);
}

.blog-comments .comment h5 .reply i {
    font-size: 20px;
}

.blog-comments .comment time {
    display: block;
    font-size: 14px;
    color: color-mix(in srgb, var(--default-color), transparent 40%);
    margin-bottom: 5px;
}

.blog-comments .comment.comment-reply {
    padding-left: 40px;
}

/*--------------------------------------------------------------
# Comment Form Section
--------------------------------------------------------------*/
.comment-form {
    padding-top: 10px;
}

.comment-form form {
    background-color: #ffffff;
    margin-top: 30px;
    padding: 30px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}

.comment-form form h4 {
    font-weight: bold;
    font-size: 22px;
}

.comment-form form p {
    font-size: 14px;
}

.comment-form form input {
    background-color: #f8f8f8;
    color: #333333;
    border: 1px solid color-mix(in srgb, #333333, transparent 70%);
    font-size: 14px;
    border-radius: 4px;
    padding: 10px 10px;
}

.comment-form form input:focus {
    color: #333333;
    background-color: #f8f8f8;
    box-shadow: none;
    border-color: #0d4472;
}

.comment-form form input::placeholder {
    color: color-mix(in srgb, #333333, transparent 50%);
}

.comment-form form textarea {
    background-color: #f8f8f8;
    color: #333333;
    border: 1px solid color-mix(in srgb, #333333, transparent 70%);
    border-radius: 4px;
    padding: 10px 10px;
    font-size: 14px;
    height: 120px;
}

.comment-form form textarea:focus {
    color: #333333;
    box-shadow: none;
    border-color: #0d4472;
    background-color: #f8f8f8;
}

.comment-form form textarea::placeholder {
    color: color-mix(in srgb, #333333, transparent 50%);
}

.comment-form form .form-group {
    margin-bottom: 25px;
}

.comment-form form .btn-primary {
    border-radius: 4px;
    padding: 10px 20px;
    border: 0;
    background-color: #0d4472;
    color: #ffffff;
}

.comment-form form .btn-primary:hover {
    color: #ffffff;
    background-color: color-mix(in srgb, #0d4472, transparent 20%);
}

/*--------------------------------------------------------------
# Widgets
--------------------------------------------------------------*/
.widgets-container {
    background-color: #ffffff;
    padding: 30px;
    margin: 60px 0 30px 0;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}

.widget-title {
    color: #111111;
    font-size: 20px;
    font-weight: 700;
    padding: 0;
    margin: 0 0 20px 0;
}

.widget-item {
    margin-bottom: 40px;
}

.widget-item:last-child {
    margin-bottom: 0;
}

.search-widget form {
    background: #ffffff;
    border: 1px solid color-mix(in srgb, #333333, transparent 70%);
    padding: 3px 10px;
    position: relative;
    transition: 0.3s;
}

.search-widget form input[type="text"] {
    border: 0;
    padding: 4px;
    border-radius: 4px;
    width: calc(100% - 40px);
    background-color: #ffffff;
    color: #333333;
}

.search-widget form input[type="text"]:focus {
    outline: none;
}

.search-widget form button {
    background: #0d4472;
    color: #ffffff;
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    border: 0;
    font-size: 16px;
    padding: 0 15px;
    margin: -1px;
    transition: 0.3s;
    border-radius: 0 4px 4px 0;
    line-height: 0;
}

.search-widget form button i {
    line-height: 0;
}

.search-widget form button:hover {
    background: color-mix(in srgb, #0d4472, transparent 20%);
}

.search-widget form:is(:focus-within) {
    border-color: #0d4472;
}

.categories-widget ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.categories-widget ul li {
    padding-bottom: 10px;
}

.categories-widget ul li:last-child {
    padding-bottom: 0;
}

.categories-widget ul a {
    color: color-mix(in srgb, #333333, transparent 20%);
    transition: 0.3s;
}

.categories-widget ul a:hover {
    color: #0e72b4;
}

.categories-widget ul a span {
    padding-left: 5px;
    color: color-mix(in srgb, #333333, transparent 50%);
    font-size: 14px;
}

.recent-posts-widget .post-item {
    display: flex;
    margin-bottom: 15px;
}

.recent-posts-widget .post-item:last-child {
    margin-bottom: 0;
}

.recent-posts-widget .post-item img {
    width: 80px;
    margin-right: 15px;
}

.recent-posts-widget .post-item h4 {
    font-size: 15px;
    font-weight: bold;
    margin-bottom: 5px;
}

.recent-posts-widget .post-item h4 a {
    color: #333333;
    transition: 0.3s;
}

.recent-posts-widget .post-item h4 a:hover {
    color: #0e72b4;
}

.recent-posts-widget .post-item time {
    display: block;
    font-style: italic;
    font-size: 14px;
    color: color-mix(in srgb, #333333, transparent 50%);
}

.tags-widget {
    margin-bottom: -10px;
}

.tags-widget ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.tags-widget ul li {
    display: inline-block;
}

.tags-widget ul a {
    color: color-mix(in srgb, #333333, transparent 30%);
    font-size: 14px;
    padding: 6px 14px;
    margin: 0 6px 8px 0;
    border: 1px solid color-mix(in srgb, #333333, transparent 60%);
    display: inline-block;
    transition: 0.3s;
}

.tags-widget ul a:hover {
    background: #0e72b4;
    color: #ffffff;
    border: 1px solid #0e72b4;
}

.tags-widget ul a span {
    padding-left: 5px;
    color: color-mix(in srgb, #333333, transparent 60%);
    font-size: 14px;
}

/*--------------------------------------------------------------
# How We Work Section
--------------------------------------------------------------*/
.how-we-work {
    padding-top: 60px;
    padding-bottom: 40px;
}

.how-we-work .step-item {
    text-align: center;
    padding: 20px;
    position: relative;
    margin-bottom: 30px;
}

.how-we-work .step-item::after {
    content: "";
    position: absolute;
    top: 45px;
    right: -50%;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg,
            color-mix(in srgb, #5c99ee, transparent 70%) 0%,
            color-mix(in srgb, #5c99ee, transparent 90%) 100%);
    z-index: 0;
}

.how-we-work .step-item:last-child::after {
    display: none;
}

.how-we-work .step-circle {
    width: 70px;
    height: 70px;
    background-color: #ffffff;
    border: 2px solid color-mix(in srgb, #5c99ee, transparent 70%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    position: relative;
    z-index: 1;
    transition: all 0.3s ease-in-out;
}

.how-we-work .step-circle span {
    font-family: #344761;
    font-size: 1.5rem;
    font-weight: 600;
    color: #5c99ee;
    transition: all 0.3s ease-in-out;
}

.how-we-work .step-item:hover .step-circle {
    background-color: #5c99ee;
    border-color: #5c99ee;
    transform: scale(1.1);
}

.how-we-work .step-item:hover .step-circle span {
    color: #ffffff;
}

.how-we-work h3 {
    font-size: 1.3rem;
    margin-bottom: 15px;
    font-weight: 600;
    color: #344761;
}

.how-we-work p {
    color: color-mix(in srgb, #535d6b, transparent 20%);
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 0;
}

@media (max-width: 991px) {
    .how-we-work .step-item::after {
        display: none;
    }

    .how-we-work .step-circle {
        width: 60px;
        height: 60px;
    }

    .how-we-work .step-circle span {
        font-size: 1.3rem;
    }

    .how-we-work h3 {
        font-size: 1.2rem;
    }
}

@media (max-width: 767px) {
    .how-we-work .step-circle {
        width: 50px;
        height: 50px;
    }

    .how-we-work .step-circle span {
        font-size: 1.1rem;
    }

    .how-we-work h3 {
        font-size: 1.1rem;
    }

    .how-we-work p {
        font-size: 0.9rem;
    }
}

/*--------------------------------------------------------------
# About Section
--------------------------------------------------------------*/


.custom-primary-btn {
    background-color: #1C5C93 !important;
    color: #fff !important;
    border: none;
    padding: 10px 25px;
    font-weight: 500;
    text-align: left;
    text-transform: capitalize;
    border-radius: 5px;
    transition: 0.3s;
}

.custom-primary-btn:hover {
    background-color: #154872 !important;
}





/*--------------------------------------------------------------
# service new section
--------------------------------------------------------------*/

/* Service Section Wrapper */
.rts-service-main-wrapper-10 {
    display: flex;
    flex-wrap: wrap;
    border: 1px solid #E3E0E6;
}

/* Single Service Box */
.rts-service-main-wrapper-10 .signle-service-style-10 {
    flex-basis: 50%;
    display: flex;
    align-items: center;
}

/* Tablet and below: full width per service */
@media only screen and (max-width: 991px) {
    .rts-service-main-wrapper-10 .signle-service-style-10 {
        flex-basis: 100%;
    }

    .rts-service-main-wrapper-10 .signle-service-style-10 .thumbnail,
    .rts-service-main-wrapper-10 .signle-service-style-10 .content-area-wrapper {
        flex-basis: 50%;
        max-width: 50%;
    }
}

/* Mobile: stack vertically (image on top, text below) */
@media only screen and (max-width: 767px) {
    .rts-service-main-wrapper-10 .signle-service-style-10 {
        flex-direction: column;
        align-items: flex-start;
    }

    .rts-service-main-wrapper-10 .signle-service-style-10 .thumbnail,
    .rts-service-main-wrapper-10 .signle-service-style-10 .content-area-wrapper {
        flex-basis: 100%;
        max-width: 100%;
    }
}

/* Thumbnail (Image Area) */
.rts-service-main-wrapper-10 .signle-service-style-10 .thumbnail {
    flex-basis: 50%;
    max-width: 50%;
    overflow: hidden;
    display: block;
    width: 100%;
}

.rts-service-main-wrapper-10 .signle-service-style-10 .thumbnail img {
    width: 100%;
    height: auto;
    object-fit: cover;
    display: block;
    transition: 0.5s;
}

/* Hover Effect */
.rts-service-main-wrapper-10 .signle-service-style-10:hover .thumbnail img {
    transform: scale(1.1);
}

/* Content Area */
.rts-service-main-wrapper-10 .signle-service-style-10 .content-area-wrapper {
    padding: 30px 50px;
    flex-basis: 50%;
    min-width: 50%;
    max-width: 50%;
}

/* Mobile: tighter padding */
@media only screen and (max-width: 575px) {
    .rts-service-main-wrapper-10 .signle-service-style-10 .content-area-wrapper {
        padding: 22px;
    }
}

/* Title & Button */
.rts-service-main-wrapper-10 .signle-service-style-10 .content-area-wrapper .title {
    margin-bottom: 12px;
}

.rts-service-main-wrapper-10 .signle-service-style-10 .content-area-wrapper .arrow-right-btn {
    display: flex;
    align-items: center;
    gap: 7px;
    transition: 0.3s;
}




/*--------------------------------------------------------------*/



.rts-call-to-action-area-two {
    background-image: url(../img/02.webp);
    background-size: cover;
    background-position: center;
    height: 280px;
    display: flex;
    align-items: center;
    position: relative;
}

@media only screen and (max-width: 767px) {
    .rts-call-to-action-area-two {
        height: auto;
        padding: 40px 0;
    }
}

.cta-style-two-area {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    gap: 30px;
}

@media only screen and (max-width: 991px) {
    .cta-style-two-area {
        flex-direction: column;
        align-items: flex-start;
        padding: 25px 0;
        gap: 20px;
    }
}

.cta-style-two-area .title {
    font-size: 40px;
    line-height: 1.4;
    font-weight: 600;
    margin: 0;
    flex: 1;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .cta-style-two-area .title {
        font-size: 30px;
    }
}

@media only screen and (max-width: 767px) {
    .cta-style-two-area .title {
        font-size: 26px;
    }

    .cta-style-two-area .title br {
        display: none;
    }
}

.cta-style-two-area * {
    color: #fff;
}

.cta-style-two-area .btn {
    white-space: nowrap;
    flex-shrink: 0;
    padding: 15px 35px;
    border-radius: 5px;
    font-weight: 500;
    font-size: 16px;
    transition: all 0.3s ease;
}

@media only screen and (max-width: 991px) {
    .cta-style-two-area .btn {
        align-self: flex-start;
    }
}




/*--------------------------------------------------------------*/

.single-case-studies-four {
    position: relative;
    overflow: hidden;
}

.single-case-studies-four .eye {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%) scale(0);
    transition: 0.5s;
}

.single-case-studies-four .inner {
    position: absolute;
    left: 40px;
    right: 40px;
    bottom: -150px;
    padding: 27px 40px;
    border-left: 8px solid #fff;
    background: var(--color-primary);
    border-radius: 5px;
    transition: 0.5s;
}

.single-case-studies-four .inner * {
    color: #fff;
}

.single-case-studies-four .inner .title {
    margin-bottom: 10px;
    font-size: 24px;
}

@media only screen and (max-width: 991px) {
    .single-case-studies-four .inner .title {
        font-size: 18px;
        line-height: 1.3;
    }
}

.single-case-studies-four:hover .eye {
    transform: translate(-50%, -50%) scale(1);
    pointer-events: none;
}

.single-case-studies-four:hover .inner {
    bottom: 40px;
}




/*--------------------------------------------------------------*/


[dir=rtl] .footer-six .rts-cta-wrapper .background-cta .cta-left-wrapepr {
    margin-left: 0;
    margin-right: 80px;
    padding: 45px 0;
}

[dir=rtl] .rts-about-area-start-six .pr--40 {
    padding-left: 40px;
    padding-right: 0;
}

[dir=rtl] .single-testimonials-6 {
    direction: rtl;
}

[dir=rtl] .rts-client-reviews-h2 {
    direction: rtl;
}

[dir=rtl] .rts-client-reviews-h2 .disc {
    text-align: right !important;
}

[dir=rtl] .single-case-studies-four,
[dir=rtl] .single-testimonials-style-five,
[dir=rtl] .testimonails-area-seven,
[dir=rtl] .single-blog-area-one .without-radious,
[dir=rtl] .single-testimonials-style-five,
[dir=rtl] .testimonials-main-wrapper-two {
    direction: rtl;
}

[dir=rtl] .education-skill-wrapper .number-area {
    right: -4%;
    left: auto;
}

[dir=rtl].page-wrapper-business-coach .thumbnail-working-procss-one img {
    margin-right: 0;
    padding-right: 0;
    padding-left: 30px;
}

[dir=rtl].page-wrapper-business-coach .header-transparent.header--sticky.sticky {
    width: calc(100% - 99px);
    transform: translateX(50%);
    right: 50%;
    left: auto;
}

[dir=rtl] .single-blog-area-four .inner-content {
    right: 30px;
    left: auto;
}

[dir=rtl] .banner-area-seo-agency .bottom-right-image {
    right: auto;
    left: 0;
}

[dir=rtl] .rts-counter-area.investment .right-content {
    margin-left: 0;
    margin-right: 70px;
}

[dir=rtl] .testimonials-wrapper-investment .content {
    left: unset;
    right: 36px;
    text-align: end;
}




/*--------------------------------------------------------------*/


.single-case-studies-four {
    position: relative;
    overflow: hidden;
}

.single-case-studies-four .eye {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%) scale(0);
    transition: 0.5s;
}

.single-case-studies-four .inner {
    position: absolute;
    left: 40px;
    right: 40px;
    bottom: -150px;
    padding: 27px 40px;
    border-left: 8px solid #fff;
    background: #0d4472;
    /* final override */
    border-radius: 5px;
    transition: 0.5s;
}

.single-case-studies-four .inner * {
    color: #fff;
}

.single-case-studies-four .inner .title {
    margin-bottom: 10px;
    font-size: 24px;
}

@media only screen and (max-width: 991px) {
    .single-case-studies-four .inner .title {
        font-size: 18px;
        line-height: 1.3;
    }
}

.single-case-studies-four:hover .eye {
    transform: translate(-50%, -50%) scale(1);
    pointer-events: none;
}

.single-case-studies-four:hover .inner {
    bottom: 40px;
}

.mySwiper-case-studies-5 {
    padding-bottom: 90px;
    position: relative;
}

.mySwiper-case-studies-5 .swiper-button-next,
.mySwiper-case-studies-5 .swiper-button-prev {
    width: 40px;
    height: 35px;
    background: #FFFFFF;
    box-shadow: 0px 10px 20px rgba(24, 16, 16, 0.06);
    border-radius: 8px;
    position: absolute;
    bottom: 20px;
    top: auto;
}

.mySwiper-case-studies-5 .swiper-button-next i,
.mySwiper-case-studies-5 .swiper-button-prev i {
    color: var(--color-primary);
}

.mySwiper-case-studies-5 .swiper-button-next::after,
.mySwiper-case-studies-5 .swiper-button-prev::after {
    display: none;
}

.mySwiper-case-studies-5 .swiper-button-next {
    right: calc(50% - 100px);
}

.mySwiper-case-studies-5 .swiper-button-prev {
    left: calc(50% - 100px);
}

.mySwiper-case-studies-5 .swiper-pagination-fraction {
    left: 50%;
    transform: translateX(-50%);
    position: absolute;
    bottom: 20px;
    right: auto;
    max-width: max-content;
}

.mySwiper-case-studies-5 .swiper-pagination-fraction span {
    font-weight: 700;
}

.mySwiper-case-studies-5 .swiper-pagination-fraction span.swiper-pagination-current {
    color: var(--color-primary);
}

.mySwiper-case-studies-5 .swiper-pagination-fraction span.swiper-pagination-total {
    color: #5D666F;
}

.bg_project-5 {
    background-image: url(../images/project/10.webp);
}

.bg_project-5 .title-style-five * {
    color: #fff !important;
}

.project-content-left-5 {
    background: #fff;
    border-radius: 15px;
    padding: 102px 50px 63px 50px;
}

@media only screen and (max-width: 767px) {
    .project-content-left-5 {
        padding: 35px;
    }
}

@media only screen and (max-width: 575px) {
    .project-content-left-5 {
        padding: 25px;
    }
}

.project-content-left-5 .title-area {
    margin-bottom: 30px;
    margin-top: 25px;
}

.project-content-left-5 .title-area .title {
    margin-bottom: 7px;
    font-size: 30px;
    font-weight: 700;
    color: #1C2539;
}

.project-content-left-5 p.disc {
    margin-bottom: 35px;
}

.project-content-left-5 .rts-btn {
    border-radius: 15px;
}

.mySwiper-project-five {
    padding-bottom: 90px;
    position: relative;
}

.mySwiper-project-five .swiper-button-next,
.mySwiper-project-five .swiper-button-prev {
    width: 40px;
    height: 35px;
    background: transparent;
    box-shadow: 0px 10px 20px rgba(24, 16, 16, 0.06);
    border-radius: 8px;
    position: absolute;
    bottom: 20px;
    top: auto;
    border: 1px solid rgb(93, 102, 111);
}

.mySwiper-project-five .swiper-button-next i,
.mySwiper-project-five .swiper-button-prev i {
    color: rgb(93, 102, 111);
}

.mySwiper-project-five .swiper-button-next::after,
.mySwiper-project-five .swiper-button-prev::after {
    display: none;
}

.mySwiper-project-five .swiper-button-next {
    right: calc(50% - 100px);
}

.mySwiper-project-five .swiper-button-prev {
    left: calc(50% - 100px);
}

.mySwiper-project-five .swiper-pagination-fraction {
    left: 50%;
    transform: translateX(-50%);
    position: absolute;
    bottom: 20px;
    right: auto;
    max-width: max-content;
}

.mySwiper-project-five .swiper-pagination-fraction span {
    font-weight: 700;
}

.mySwiper-project-five .swiper-pagination-fraction span.swiper-pagination-current {
    color: #fff;
}

.mySwiper-project-five .swiper-pagination-fraction span.swiper-pagination-total {
    color: #5D666F;
}

/* Global resets */
img {
    -ms-interpolation-mode: bicubic;
    border: 0;
    vertical-align: middle;
    max-width: 100%;
    height: auto;
}

svg:not(:root) {
    overflow: hidden;
}

/* Section spacing */
.rts-section-gapBottom {
    padding-bottom: 120px;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .rts-section-gapBottom {
        padding-bottom: 80px;
    }
}

@media only screen and (max-width: 767px) {
    .rts-section-gapBottom {
        padding-bottom: 60px;
    }
}

.rts-section-gapTop {
    padding-top: 120px;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .rts-section-gapTop {
        padding-top: 70px;
    }
}

@media only screen and (max-width: 767px) {
    .rts-section-gapTop {
        padding-top: 60px;
    }
}

.container {
    padding: 0 15px;
}

.grow {
    transform: scale(1.25);
}

/* Title styles */
.title-style-four .pre {
    font-weight: 700;
    font-size: 16px;
    line-height: 21px;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: #5D666F;
}

.title-style-four .title {
    font-weight: 700;
    font-size: 48px;
    line-height: 65px;
    text-transform: uppercase;
    color: #1C2539;
    -webkit-text-stroke-color: #1C2539;
    -webkit-text-stroke: 1px;
    margin-top: 20px;
}

@media only screen and (max-width: 1199px) {
    .title-style-four .title {
        font-size: 42px;
    }
}

@media only screen and (max-width: 991px) {
    .title-style-four .title {
        font-size: 32px;
        line-height: 1.3;
    }
}

@media only screen and (max-width: 767px) {
    .title-style-four .title {
        font-size: 28px;
        line-height: 1.3;
    }
}

.title-style-four .title span {
    font-size: 48px;
    -webkit-text-fill-color: transparent;
    letter-spacing: 3px;
}

@media only screen and (max-width: 1199px) {
    .title-style-four .title span {
        font-size: 42px;
    }
}

@media only screen and (max-width: 991px) {
    .title-style-four .title span {
        font-size: 32px;
        line-height: 1.3;
    }
}

@media only screen and (max-width: 991px) {
    .title-style-four .title span {
        font-size: 28px;
        line-height: 1.3;
    }
}

.title-style-four.center {
    text-align: center;
}

.title-style-four.center span {
    font-size: unset;
}







/* case study */

.row {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}

.fixed-card {
    display: flex;
    flex-direction: column;
    height: 100%;
    border: 0px solid #ddd !important;
    border-radius: 0 !important;
    /* Force remove rounding */
    overflow: hidden;
    background-color: #fff;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.12);
    /* lighter shadow */
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    will-change: transform;
    /* hint browser to optimize */
}

.fixed-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
}

.clickable-card {
    cursor: pointer;
}

.card-img-top {
    width: 100%;
    height: 300px;
    /* adjust height as needed */
    object-fit: contain;
    /* makes image cover the area */
    padding: 10px;
    /* remove padding so it touches edges */
    display: block;
}

.card-block {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 15px;
}

.card-title {
    min-height: 50px;
    font-size: 16px;
    font-weight: bold;
    text-align: center;
    color: #666 !important;

}

.card-text-excerpt {
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    font-size: 14px;
    min-height: 4.5em;
    color: #444 !important;
}

.card .btn {
    width: 100%;
    background-color: #0E72B4;
    color: white;
    padding: 10px;
    border-radius: 0 !important;
    /* Force remove rounding */
    text-align: center;
    margin-top: auto;
    transition: background-color 0.3s ease, color 0.3s ease;
}

.card .btn:hover {
    background-color: #0D4472;
    color: #fff;
    transition: background-color 0.3s ease, color 0.3s ease;
}


/* case study end */



/* Timeline Styles */

.subtitle {
    font-size: 2rem;
    color: #89a7e0;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.2);
}

.timeline {
    position: relative;
    padding-top: 20px;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    width: 100px;
    height: 100%;
    /* background: repeating-linear-gradient(0deg,
                rgba(0, 0, 0, 0.2) 0px,
                rgba(0, 0, 0, 0.2) 2px,
                transparent 2px,
                transparent 20px); */
    transform: translateX(-50%);
}

.timeline-item {
    display: flex;
    margin-bottom: 30px;
    position: relative;
    min-height: 150px;
}

.timeline-content {
    width: 45%;
    padding: 15px;
}

.timeline-image {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: 300px;
    height: 170px;
    background: #000;
    border: 3px solid #7fc0eb;
    border-radius: 4px;
    overflow: hidden;
}

.timeline-image::before,
.timeline-image::after {
    content: '';
    position: absolute;
    top: -8px;
    bottom: -8px;
    width: 24px;

}

.timeline-image::before {
    left: -24px;
}

.timeline-image::after {
    right: -24px;
}

.timeline-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.year {
    font-size: 1.8rem;
    font-weight: bold;
    margin-bottom: 10px;
    color: #000000;
}

.description {
    font-size: 1rem;
    line-height: 1.4;
    color: #000000;
}

/* Left side content */
.timeline-item:nth-child(odd) .timeline-content {
    margin-right: auto;
    text-align: right;
    padding-right: 120px;
}

/* Right side content */
.timeline-item:nth-child(even) .timeline-content {
    margin-left: auto;
    text-align: left;
    padding-left: 120px;
}


@media (max-width: 768px) {
    .timeline {
        padding-top: 10px;
    }

    .timeline-item {
        flex-direction: column;
        align-items: center;
        text-align: center;
        min-height: auto;
        margin-bottom: 40px;
    }

    .timeline-content {
        width: 90%;
        text-align: center !important;
        padding: 10px;
    }

    .timeline-item:nth-child(odd) .timeline-content,
    .timeline-item:nth-child(even) .timeline-content {
        padding: 0;
    }

    .timeline-image {
        position: static;
        width: 80%;
        /* Adjust width for mobile */
        height: auto;
        margin: 15px auto 0;
        /* Centers the image */
        display: contents;
        justify-content: center;
        align-items: center;
    }

    .timeline-image img {
        width: 100%;
        height: auto;
        object-fit: contain;
    }

    h4 {
        font-size: 30px;
    }

    .timeline-content p {
        font-size: 16px;
    }
}



/* Service Showcase */

/* Service Showcase Section Styles */
.service-showcase {
    position: relative;
    padding: 50px 0;
    background: #F5F9FC;
}

.service-showcase::before {
    content: '';
    position: absolute;
    top: 120px;
    left: 50%;
    width: 4px;
    height: 100%;
    background: rgb(162, 206, 232);
    /* Keep for desktop view */
    transform: translateX(-50%);
}

.service-showcase .showcase-item {
    position: relative;
    width: 50%;
    padding: 20px;
    box-sizing: border-box;
}

.service-showcase .showcase-item img {
    width: 350px;
    height: 200px;
    border-radius: 5px;
    margin-top: 10px;
}

.service-showcase .showcase-item h4 {
    color: gray;
    font-size: 30px;
    font-weight: bold;
}

.service-showcase .showcase-item p {
    color: gray;
    font-size: 18px;
}

.service-showcase .left {
    left: 0;
    text-align: right;
}

.service-showcase .right {
    left: 50%;
    text-align: left;
}

.service-showcase .dot {
    position: absolute;
    top: 20px;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    left: calc(50% - 10px);
}

/* Responsive Styles */
@media (max-width: 768px) {
    .service-showcase {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .service-showcase::before {
        background: none !important;
        /* Remove background only in mobile view */
    }

    .service-showcase .showcase-item {
        width: 90%;
        text-align: center !important;
        left: 0 !important;
        padding: 15px;
    }

    .service-showcase .showcase-item img {
        width: 100%;
        height: auto;
    }

    .service-showcase .dot {
        left: 50%;
        transform: translateX(-50%);
    }
}




/* Service Showcase End */



/*--------------------------------------------------------------
# Testimonials Section
--------------------------------------------------------------*/

/* .color-yellow-demo .testimonails-8-mian-wrapper {
    background: #20282D;
}

.title-style-five.center {
    text-align: center;
}

.bg_testimonials-6 {
    background-image: url(../images/testimonials/05.webp);
}

.bg_testimonials-6 .title-style-five * {
    color: #fff !important;
}

.single-testimonials-6 {
    padding: 40px 50px;
    background: #FFFFFF;
    border-radius: 15px;
}

@media only screen and (max-width: 575px) {
    .single-testimonials-6 {
        padding: 25px;
    }
}

.single-testimonials-6 .top .title {
    font-size: 22px;
    margin-bottom: 15px;
}

.single-testimonials-6 .top p.disc {
    margin-bottom: 25px;
    padding-bottom: 25px;
    border-bottom: 1px solid #ECECF2;
    max-width: 95%;
    color: #6F737B;
    font-size: 18px;
}

.single-testimonials-6 .botton-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

@media only screen and (max-width: 991px) {
    .single-testimonials-6 .botton-content {
        flex-wrap: wrap;
        gap: 15px;
    }
}

.single-testimonials-6 .botton-content .avatar-area {
    display: flex;
    align-items: center;
    gap: 20px;
}

.single-testimonials-6 .botton-content .avatar-area .thumbnail {
    max-width: 46px;
    height: auto;
}

.single-testimonials-6 .botton-content .avatar-area .inner .title {
    margin-bottom: 2px;
    font-size: 20px;
}

.single-testimonials-6 .botton-content .avatar-area .inner p {
    font-size: 14px;
    color: #6F737B;
    margin: 0;
}

.single-testimonials-6 .botton-content .avatar-area .inner p span {
    font-weight: 600;
    color: #20282D;
}

.mySwiper-testimoanils-6 {
    padding-bottom: 70px;
}

.mySwiper-testimoanils-6 .swiper-pagination-bullet {
    background: #fff;
}

.mySwiper-testimoanils-6 .swiper-pagination-bullet-active {
    background-image: url(../images/testimonials/icons/01.svg);
    background-color: transparent;
} */



/*--------------------------------------------------------------

--------------------------------------------------------------*/
.mb_dec--25 {
    margin-bottom: -25px;
}

.mb_dec--30 {
    margin-bottom: -30px;
}

.m--0 {
    margin: 0;
}


@media only screen and (min-width: 768px) and (max-width: 991px) {
    .rts-section-gap {
        padding: 80px 0;
    }
}

@media only screen and (max-width: 767px) {
    .rts-section-gap {
        padding: 60px 0;
    }
}

.rts-section-gapBottom {
    padding-bottom: 120px;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .rts-section-gapBottom {
        padding-bottom: 80px;
    }
}

@media only screen and (max-width: 767px) {
    .rts-section-gapBottom {
        padding-bottom: 60px;
    }
}

.rts-section-gapTop {
    padding-top: 120px;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .rts-section-gapTop {
        padding-top: 70px;
    }
}

@media only screen and (max-width: 767px) {
    .rts-section-gapTop {
        padding-top: 60px;
    }
}

.rts-section-gap2 {
    padding: 100px 0;
}



.mySwiper-testimoanils-6 .swiper-wrapper {
    display: flex;
    align-items: stretch;
    /* ensures equal height */
}

.mySwiper-testimoanils-6 .swiper-slide {
    height: auto !important;
    /* override Swiper's inline height */
    display: flex;
    /* make slide a flexbox */
}

.single-testimonials-6 {
    flex: 1;
    /* fill available height */
    display: flex;
    flex-direction: column;
    /* keeps layout inside vertical */
    justify-content: space-between;
}



/*--------------------------------------------------------------
    FAQ Section
--------------------------------------------------------------*/



.faq-bg-one {
    background-image: url(../images/faq/bg.webp);
}

.faq-one-thumbnail-wrapper-right {
    display: flex;
    align-items: center;
    justify-content: center;
}

.faq-one-thumbnail-wrapper-right .thumbnail {
    max-width: 520px;
    clip-path: polygon(48.93% 0.356%, 48.93% 0.356%, 49.136% 0.264%, 49.349% 0.194%, 49.568% 0.143%, 49.791% 0.113%, 50.015% 0.103%, 50.24% 0.113%, 50.463% 0.143%, 50.681% 0.194%, 50.895% 0.264%, 51.101% 0.356%, 98.912% 24.359%, 98.912% 24.359%, 99.106% 24.469%, 99.283% 24.594%, 99.444% 24.734%, 99.586% 24.887%, 99.708% 25.052%, 99.811% 25.227%, 99.892% 25.411%, 99.951% 25.602%, 99.988% 25.798%, 100% 26%, 100% 74%, 100% 74%, 99.988% 74.202%, 99.951% 74.398%, 99.892% 74.589%, 99.811% 74.773%, 99.708% 74.948%, 99.586% 75.113%, 99.444% 75.266%, 99.283% 75.406%, 99.106% 75.531%, 98.912% 75.641%, 51.101% 99.645%, 51.101% 99.645%, 50.895% 99.736%, 50.681% 99.806%, 50.463% 99.857%, 50.24% 99.887%, 50.015% 99.897%, 49.791% 99.887%, 49.568% 99.857%, 49.349% 99.806%, 49.136% 99.736%, 48.93% 99.645%, 1.119% 75.641%, 1.119% 75.641%, 0.925% 75.531%, 0.747% 75.406%, 0.587% 75.266%, 0.445% 75.113%, 0.322% 74.948%, 0.22% 74.773%, 0.138% 74.589%, 0.079% 74.398%, 0.043% 74.202%, 0.031% 74%, 0.031% 26%, 0.031% 26%, 0.043% 25.798%, 0.079% 25.602%, 0.138% 25.411%, 0.22% 25.227%, 0.322% 25.052%, 0.445% 24.887%, 0.587% 24.734%, 0.747% 24.594%, 0.925% 24.469%, 1.119% 24.359%, 48.93% 0.356%);
}

.faq-main-wrapper-content-inner-four .title-style-four {
    margin-right: -50px;
}

.faq-main-wrapper-content-inner-four .title-style-four * {
    color: #fff;
}

.faq-main-wrapper-content-inner-four .accordion .accordion-item {
    margin-bottom: 30px;
    background: transparent;
    border: 1px solid rgb(65, 72, 87);
    border-radius: 5px;
}

.faq-main-wrapper-content-inner-four .accordion .accordion-item .accordion-button {
    background: transparent;
    font-size: 18px;
    color: #fff;
    padding: 18px 35px;
    font-weight: 700;
    border-bottom: none;
    box-shadow: none !important;
}

.faq-main-wrapper-content-inner-four .accordion .accordion-item .accordion-button::after {
    filter: brightness(0) saturate(100%) invert(100%) sepia(66%) saturate(49%) hue-rotate(182deg) brightness(119%) contrast(100%);
}

.faq-main-wrapper-content-inner-four .accordion .accordion-item .accordion-button:focus {
    box-shadow: none;
}

.faq-main-wrapper-content-inner-four .accordion .accordion-item .accordion-button[aria-expanded=true] {
    background: #fff;
    color: #1C2539;
}

.faq-main-wrapper-content-inner-four .accordion .accordion-item .accordion-button[aria-expanded=true]::after {
    filter: brightness(0) saturate(100%) invert(0%) sepia(0%) saturate(7500%) hue-rotate(242deg) brightness(109%) contrast(108%);
}

.faq-main-wrapper-content-inner-four .accordion .accordion-item .accordion-collapse .accordion-body {
    transition: 0s;
    transition-delay: 0s;
    padding: 25px 30px 30px 30px;
    font-size: 16px;
    color: #5D666F;
}

.faq-main-wrapper-content-inner-four .accordion .accordion-item .accordion-collapse.show .accordion-body {
    background: #fff;
}

.faq-main-wrapper-content-inner-four .accordion .accordion-item .accordion-collapse.collapsing .accordion-body {
    background: #fff;
}

.faq-wrapper-inner-page .accordion-item {
    margin-bottom: 30px;
    background: #F2F2F2;
    border: 1px solid #E3E0E6;
    box-shadow: 0px 7px 18px rgba(24, 16, 16, 0.05);
    border-radius: 6px;
}

@media only screen and (max-width: 575px) {
    .faq-wrapper-inner-page .accordion-item {
        margin: 0 15px;
        margin-bottom: 30px;
    }
}

.faq-wrapper-inner-page .accordion-item .accordion-header {
    border: none;
    box-shadow: none;
}

.faq-wrapper-inner-page .accordion-item .accordion-header button {
    padding: 24px 40px;
    border: none;
    box-shadow: none;
    font-size: 18px;
    color: #1C2539;
    background: transparent;
    font-weight: 700;
}

@media only screen and (max-width: 767px) {
    .faq-wrapper-inner-page .accordion-item .accordion-header button {
        padding: 24px 15px;
    }
}

.faq-wrapper-inner-page .accordion-item .accordion-header button::after {
    content: "\f078";
    font-family: var(--font-3);
    background-image: none;
    transform: none;
    margin-top: -5px;
}

.faq-wrapper-inner-page .accordion-item .accordion-header button[aria-expanded=true]::after {
    content: "\f077";
}

.faq-wrapper-inner-page .accordion-item .accordion-body {
    padding: 0 20px 20px 40px;
}

@media only screen and (max-width: 767px) {
    .faq-wrapper-inner-page .accordion-item .accordion-body {
        padding: 0 20px 20px 20px;
    }
}




/*--------------------------------------------------------------
    Working Process Section
--------------------------------------------------------------*/


/* .working-process-bg {
    background-image: url(../images/wokring-process/bg-01.jpg);
    max-width: 1920px;
    margin: 0 auto;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    clip-path: polygon(6.399% 10.697%, 11.726% 0%, 100% 0%, 100% 50%, 100% 81.841%, 95.268% 90.112%, 89.702% 100%, 0% 100%, 0% 22.948%, 6.399% 10.697%);
}

@media only screen and (max-width: 767px) {
    .working-process-bg {
        clip-path: none;
    }
}

.working-process-area-three .title-style-three .bg-title::after {
    position: absolute;
    content: "";
    left: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(0deg, rgb(246, 246, 246) 0%, rgba(246, 246, 246, 0.73) 35%, rgba(255, 255, 255, 0) 100%);
}

.working-process-area-three .title-style-three {
    z-index: 1;
}

.working-process-area-three .title-style-three .bg-title {
    z-index: -1;
}

@media only screen and (max-width: 1199px) {
    .working-process-one.bg-main.rts-section-gap {
        overflow: hidden;
    }
}

.rts-working-process-1 {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.rts-working-process-1 .inner {
    width: 192px;
    height: 192px;
    border: 2px dashed rgba(32, 40, 45, 0.18);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    margin-bottom: 33px;
    transition: 0.3s;
    position: relative;
}

.rts-working-process-1 .inner.two::after {
    content: "02";
}

.rts-working-process-1 .inner.three::after {
    content: "03";
}

.rts-working-process-1 .inner.four::after {
    content: "04";
}

.rts-working-process-1 .inner::after {
    position: absolute;
    right: 5px;
    top: 7px;
    content: "01";
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: #20282D;
    color: #fff;
    transform: scale(0);
    transition: 0.3s;
}

.rts-working-process-1 .inner .icon {
    height: 144px;
    width: 144px;
    background: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.rts-working-process-1 .content .title {
    margin-bottom: 7px;
}

.rts-working-process-1.process-lg .inner {
    width: 245px;
    height: 245px;
}

.rts-working-process-1.process-lg .inner::after {
    width: 60px;
    height: 60px;
}

.rts-working-process-1.process-lg .inner .icon {
    width: 193.03px;
    height: 193.03px;
}

.rts-working-process-1:hover .inner {
    border: 2px dashed #20282D;
}

.rts-working-process-1:hover .inner::after {
    transform: scale(1);
}


.thumbnail-area-wrapper-inner-6 {
    padding-left: -150px;
}

.demo-technology .thumbnail-working-procss-one img {
    margin-left: 0;
} */






.single-testimonials-style-five {
    display: flex;
    align-items: center;
    gap: 36px;
    padding: 23px;
    border: 1px solid rgb(233, 236, 241);
    border-radius: 20px;
}

@media only screen and (max-width: 1199px) {
    .single-testimonials-style-five {
        flex-direction: column;
        align-items: flex-start;
    }
}

@media only screen and (max-width: 991px) {
    .single-testimonials-style-five {
        flex-direction: column;
        align-items: flex-start;
    }
}

.single-testimonials-style-five .thumbnail img {
    min-width: 200px;
}

.single-testimonials-style-five .inner-content .name-area {
    margin-bottom: 20px;
}

.single-testimonials-style-five .inner-content .name-area .title {
    font-size: 22px;
    color: #1C2539;
    margin-bottom: 13px;
}

.single-testimonials-style-five .inner-content .name-area span {
    color: #5D666F;
    font-size: 16px;
}

.single-testimonials-style-five .inner-content p.disc {
    font-size: 16px;
    color: #5D666F;
}

.single-testimonials-style-five .inner-content .body-end {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.single-testimonials-style-five .inner-content .body-end .star-icon {
    color: #FFB800;
}

.title-between-area {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

@media only screen and (max-width: 575px) {
    .title-between-area {
        flex-direction: column;
        align-items: flex-start;
    }
}








@media only screen and (min-width: 768px) and (max-width: 991px) {
    .rts-section-gap {
        padding: 80px 0;
    }
}

@media only screen and (max-width: 767px) {
    .rts-section-gap {
        padding: 60px 0;
    }
}

.rts-section-gapBottom {
    padding-bottom: 120px;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .rts-section-gapBottom {
        padding-bottom: 80px;
    }
}

@media only screen and (max-width: 767px) {
    .rts-section-gapBottom {
        padding-bottom: 60px;
    }
}

.rts-section-gapTop {
    padding-top: 120px;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .rts-section-gapTop {
        padding-top: 70px;
    }
}

@media only screen and (max-width: 767px) {
    .rts-section-gapTop {
        padding-top: 60px;
    }
}









.rts-testimonials-area-five .pagination-wrapper {
    display: flex;
    align-items: center;
    gap: 15px;
}

.rts-testimonials-area-five .swiper-button-nexts,
.rts-testimonials-area-five .swiper-button-prevs {
    width: 40px;
    height: 35px;
    background: #F2F2F2;
    border-radius: 8px;
    border: 1px solid transparent;
    display: flex;
    align-items: center;
    justify-content: center;
}

.rts-testimonials-area-five .swiper-button-nexts i,
.rts-testimonials-area-five .swiper-button-prevs i {
    color: #1C2539;
}

.rts-testimonials-area-five .swiper-button-nexts::after,
.rts-testimonials-area-five .swiper-button-prevs::after {
    display: none;
}

.rts-testimonials-area-five .swiper-button-nexts {
    right: calc(50% - 100px);
}

.rts-testimonials-area-five .swiper-button-prevs {
    left: calc(50% - 100px);
}

.rts-testimonials-area-five .swiper-pagination-fractions {
    max-width: max-content;
}

.rts-testimonials-area-five .swiper-pagination-fractions span {
    font-weight: 700;
}

.rts-testimonials-area-five .swiper-pagination-fractions span.swiper-pagination-current {
    color: #1b1b1b;
}

.rts-testimonials-area-five .swiper-pagination-fractions span.swiper-pagination-total {
    color: #5D666F;
}

.g-75 {
    --bs-gutter-x: 75px;
    --bs-gutter-y: 75px;
}

@media only screen and (max-width: 991px) {
    .g-75 {
        --bs-gutter-x: 25px;
        --bs-gutter-y: 25px;
    }
}
