@import url('https://fonts.googleapis.com/css2?family=Stack+Sans+Text:wght@200..700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=TikTok+Sans:opsz,wght@12..36,300..900&display=swap');

* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    font-family: 'Stack Sans Text', sans-serif;
}

:root {
    --theme_primary: #ef3f06;
    --theme_secondary: #068bbb;
    --theme_dark: #001126;
    --theme_light: #fff;
    --theme_bg: #55c5b2;
}

.color_blue {
    color: var(--theme_secondary);
}

.color_orange {
    color: var(--theme_primary);
}

.text_darkblue {
    color: var(--theme_dark);
}


html {
    font-size: 62.5%;
    scroll-behavior: smooth;
}

body {
    font-size: 2rem;
}

a {
    text-decoration: none;
    font-size: 2rem;
}

ul {
    list-style: none;
}

h1 {
    font-size: 5rem;
    font-weight: 600;
}

h2 {
    font-size: 4rem;
    font-weight: 600;
}

h3 {
    font-size: 3.2rem;
    font-weight: 600;
}

h4 {
    font-size: 2.4rem;
    font-weight: 600;
}

h5 {
    font-size: 2.2rem;
    font-weight: 600;
}

h6 {
    font-size: 2rem;
}

.py-8 {
    padding: 8rem 0;
}

.bg-theme {
    background-color: #55c5b2 !important;
}

/* %%%%%%%% Button css */
.cssbuttons-io-button {
    /* background: linear-gradient(90deg, rgba(230, 61, 5, 1) 0%, rgba(212, 93, 53, 1) 30%, rgba(21, 131, 171, 1) 70%, rgba(2, 53, 71, 1) 100%); */
    background: var(--theme_secondary);
    color: var(--theme_light);
    font-family: inherit;
    padding: 0.35em;
    padding-left: 1.2em;
    font-size: 17px;
    font-weight: 500;
    border-radius: 0.9em;
    border: none;
    letter-spacing: 0.05em;
    display: flex;
    align-items: center;
    /* box-shadow: inset 0 0 1.6em -0.6em var(--theme_secondary); */
    overflow: hidden;
    position: relative;
    height: 2.8em;
    padding-right: 3.3em;
    cursor: pointer;
    white-space: nowrap;
}

.cssbuttons-io-button .icon {
    background: var(--theme_primary);
    margin-left: 1em;
    position: absolute;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 2.5em;
    width: 2.5em;
    border-radius: 0.7em;
    box-shadow: 0.1em 0.1em 0.6em 0.2em #ffffff;
    right: 0.3em;
    transition: all 0.3s;
}

.cssbuttons-io-button:hover .icon {
    width: calc(100% - 0.6em);
}

.cssbuttons-io-button .icon svg {
    width: 1.1em;
    transition: transform 0.3s;
    color: var(--theme_light);
}

.cssbuttons-io-button:hover .icon svg {
    transform: translateX(0.1em);
}

.cssbuttons-io-button:active .icon {
    transform: scale(1.1);
}


/* %%%%%%%% navigation bar */
.top_nav {
    /* background-color: var(--theme_primary); */
}

.top_nav .nav-item a,
.social_list h6 {
    color: var(--theme_secondary);
    font-size: 17px;
    font-weight: 500;
}

.top_nav .nav-item a .top_icon_box,
.top_nav .nav-item .top_icon_box {
    width: 180px;
    /* aspect-ratio: 1/1; */
    background-color: #fdbe30;
    padding: 5px;
    color: var();
    padding: 15px;
    /* border: 1px solid var(--theme_primary);
    border: 1px solid var(--theme_primary); */
    /* border-radius: 5px; */
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 3px;

}

.top_nav .nav-item:not(:last-child) {
    /* border-right: 2px solid var(--theme_primary); */
}

.top_nav .nav-item a .top_icon_box i,
.top_nav .nav-item .top_icon_box i {
    color: var(--theme_dark);
    font-size: 20px;
    transition: all 0.5s ease-in-out;
}

.top_nav .nav-item:hover a .top_icon_box i,
.top_nav .nav-item:hover .top_icon_box i {
    transform: scale(.9);
    color: var(--theme_light);
}

.top_nav .nav-item a span {
    display: inline-block;
    /* width: calc(100% - 30px); */
    font-family: "TikTok Sans", sans-serif;
}

.top_nav .nav-item a span strong {
    font-family: "TikTok Sans", sans-serif;
}

.top_nav .navbar-nav {
    background-color: var(--theme_bg);
    /* border: 2px solid var(--theme_primary); */
}

.brand_logo {
    width: 100%;
    height: 100%;
}

.social_list ul li a i {
    font-size: 22px;
    color: var(--theme_dark);
    transition: all 0.4s ease-in-out;
}

.social_list ul li a:hover i {
    color: var(--theme_light);
    transform: scale(.8);
}

.bottom_nav .nav-item .nav-link {
    color: var(--theme_light);
    position: relative;
    font-size: 17px;
}

.bottom_nav .nav-item .nav-link::before {
    content: "";
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    bottom: 0;
    width: 0;
    height: 2px;
    background-color: var(--theme_secondary);
    transition: width 0.4s ease-in-out;
}

.bottom_nav .nav-item .nav-link:hover::before,
.bottom_nav .nav-item.active .nav-link::before {
    width: 100% !important;
}

.bottom_nav .nav-item .nav-link:hover,
.bottom_nav .nav-item.active .nav-link {
    color: var(--theme_primary);
}

.fixed_nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 9999;
    animation: slideDown 0.5s ease forwards;
}

.scrolled_nav {
    background-color: var(--color--white);
    box-shadow: 0 1px 3px rgba(226, 160, 53, 0.082);
}

.top_nav .social_list {
    width: 180px;
}

/* %%%%%%%%%%Hero banner */
.hero_banner {
    margin-bottom: -120px;
}

.hero_banner .carousel-item {
    height: 75vh;
}

.hero_banner .carousel-item figure {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.hero_banner .carousel-item figure img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero_banner .carousel-item figure::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /* background: linear-gradient(90deg, rgba(230, 61, 5, 0.75) 0%, rgba(212, 93, 53, 0.54) 30%, rgba(21, 131, 171, 0.5) 70%, rgba(2, 53, 71, 0.71) 100%); */
    background: linear-gradient(90deg, rgba(70, 18, 1, 0.75) 0%, rgba(167, 88, 62, 0.795) 30%, rgba(18, 94, 122, 0.733) 70%, rgba(1, 24, 31, 0.726) 100%);
    z-index: 1;
}

.hero_banner .carousel-caption {
    position: absolute;
    width: 70%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 2;
}

.hero_banner h1 span {
    font-size: 50px;
    font-weight: 900;
    color: var(--theme_light);
}

.carousel-indicators .active {
    opacity: 1;
    background-color: #ef3f06;
}

/* country */
.services.country_cater {
    position: relative;
    z-index: 99;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    top: -120px;
}

/* .container.country_container {
   
    border-radius: 20px;
    padding: 20px 50px;
} */

.services.country_cater .service_fig,
.news_card_fig {
    width: 100%;
    height: 140px;
    overflow: hidden;
    border-radius: 12px 12px 0 0;
}

.services.country_cater .service_details {
    text-align: left;
}

.services.country_cater .service_details ul li a {
    color: var(--theme_light);
    margin-bottom: 8px;
    padding-left: 15px;
    font-size: 1.8rem;
    position: relative;
}

/* add fontawesome icon before tick */
.services.country_cater .service_details ul li a::before {
    content: "\f00c";
    position: absolute;
    left: -8px;
    top: 0;
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    color: var(--theme_light);
    font-size: 15px;
    padding-right: 10px;
    color: var(--theme_bg);
}

.services.country_cater .service_details ul li a:hover {
    opacity: 0.8;
    text-decoration: underline;
    text-decoration-color: var(--theme_bg);
}

/* %%%%%%%%%%%% usp section */
.usp_card1 .usp_card1_fig {
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    position: absolute;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.usp_card1 .usp_card1_fig img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: right;
}

.usp_card1::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #411000b2;
    z-index: 1;
}

.usp_card1 .row {
    z-index: 2;
    position: relative;
}

.usp_card1_main {
    background: var(--theme_light);
}

.usp_icon {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    border: 6px double var(--theme_light);
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--theme_primary);
}

.usp_icon img {
    width: 60%;
    height: 60%;
    filter: brightness(0) saturate(100%) invert(96%) sepia(74%) saturate(1%) hue-rotate(83deg) brightness(110%) contrast(100%);
}

.main_heading_wrap .sub_heading {
    border-radius: 50px;
    border-radius: 10px;
    background: var(--theme_light);
    box-shadow: 5px 5px 7px #cecece,
        -5px -5px 7px #f2f2f2;
    padding: 8px 10px;
}

.usp_card {
    background: #411000b2;
}

.usp_card1_main h4,
.usp_card_main h4 {
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center
}

/* %%%%%%%%%%%% About section */
.about_img_wrap figure img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.5s ease-in-out;
}

.about_img_wrap figure:hover img {
    transform: scale(1.1);
}

.aboutUs .sub_heading {
    background: var(--theme_bg);
    width: max-content;
}

.usp_card1 {
    place-content: center;
}

/* %%%%%%%%%%% service section */
.services .item,
.news_card {
    padding: 8px;
}

.service_fig,
.news_card_fig {
    width: 100%;
    height: 300px;
    overflow: hidden;
    border-radius: 12px 12px 0 0;
}

.service_fig img,
.news_card_fig img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.5s ease-in-out;
}

.services .owl-carousel .owl-item {
    border-radius: 18px;
    padding-top: 10px;
}

.services .owl-carousel .owl-item .item {
    transform: scale(.92) translateY(0);
    /* border-radius: 18px; */
    /* opacity: 0.7; */
    /* transform: translateY(0); */
    transition: transform 0.3s ease, opacity 0.3s ease, translateY 0.3s ease;
}

.services .owl-carousel .owl-item.center .item {
    transform: scale(1);
    border: 5px solid var(--theme_primary);
    transition: transform 0.3s ease, border 0.3s ease;
    border-radius: 16px;
    opacity: 1;
}

.services .owl-carousel .owl-item .item:hover {
    transform: translateY(-5px);
}

.services .owl-carousel .owl-item.center .service_details {
    background-color: var(--theme_primary);
}

.services .service_details,
.news_card_content {
    color: var(--theme_light);
    background-color: var(--theme_dark);
    text-align: center;
    padding: 15px;
    border-radius: 0 0 16px 16px
}

.services .container .services_carousel {
    background: #39515a;
    padding-top: 30px;
    height: 80vh;
    border-radius: 20px;
    overflow: hidden;
}

.services .owl-theme .owl-dots .owl-dot.active span,
.services .owl-theme .owl-dots .owl-dot:hover span {
    background: var(--theme_primary);
}

.services .sub_heading,
.news .sub_heading {
    background: var(--theme_bg);
    width: max-content;
}

/* %%%%%%%%%%% testimonials */
.testimonial_bg {
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    position: fixed;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.testimonial_bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.testimonial::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #411000b2;
    z-index: 1;
}

.testimonial .container {
    z-index: 2;
    position: relative;
}

.testimonial .sub_heading {
    background: var(--theme_bg);
    width: max-content;
}

#carouselTestimonial {
    background-color: var(--theme_dark);
    padding: 25px 30px;
    border-radius: 15px;
    box-shadow: 3px 3px 5px #cecece8a,
        -3px -3px 5px #f2f2f293;
}

.testimonial .carousel-control-prev:hover,
.testimonial .carousel-control-next:hover {
    fill: var(--theme_primary) !important;
}

.lc-block figure img {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid var(--theme_primary);

}

/* %%%%%%%%%%% news */
.news_card {
    background: var(--theme_secondary);
    transition: all 0.3s ease;
    border-radius: 15px;
}

.news_card:hover .news_card_fig img {
    scale: 1.2;
}

.news_card:hover {
    transform: translateY(-10px);
}

/* %%%%%%%%%%% footer */
.footer .footer_fig {
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    z-index: -1;
}

.footer .footer_fig img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.footer::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, rgba(26, 6, 0, 0.959) 0%, rgba(104, 50, 32, 0.808) 30%, rgba(35, 74, 88, 0.781) 70%, rgba(3, 22, 29, 0.911) 100%);
    z-index: 1;
}

.footer .container {
    position: relative;
    z-index: 2;
}

.footer .widget .widget-title {
    margin-bottom: 18px;
}

.footer .widget .widget-title {
    font-weight: 700;
    font-size: 25px;
    line-height: normal;
    display: inline-block;
    position: relative;

}

.footer-widget__contact-list {
    position: relative;
    display: block;
}

.footer-widget__contact-list li {
    position: relative;
    display: flex;
    align-items: flex-start;
}

.footer-widget__contact-list li+li {
    margin-top: 8px;
}

.footer-widget__contact-list li .icon {
    position: relative;
    display: inline-block;
    top: 9px;
}

.footer-widget__contact-list li .icon i {
    position: relative;
    display: inline-block;
    font-size: 24px;
    color: var(--theme_primary);
}

.footer-widget__contact-list li .content span {
    position: relative;
    display: block;
    font-weight: 700;
    font-size: 16px;
    color: var(--theme_light);
    margin-bottom: 3px;
}

.footer-widget__contact-list li .content,
.footer-widget__contact-list li .content a {
    position: relative;
    display: block;
    margin-left: 20px;
    color: var(--theme_bg);
}

.footer-widget__contact-list li .content:hover,
.footer-widget__contact-list li .content a:hover {
    color: var(--theme_primary);
}

.menu-footer-quick-service-links li a,
.menu-footer-quick-links li a {
    color: var(--theme_light);
}

.menu-footer-quick-service-links li a:hover,
.menu-footer-quick-links li a:hover {
    color: var(--theme_primary);
}

/* footer-list*/
.footer .widget ul {
    margin: 0;
    padding: 0;
    list-style: none;
}



.footer .widget .social-icons li>a {
    width: 25px;
    height: 35px;
    text-align: center;
    display: block;
    font-size: 28px;
    line-height: 33px;
    background-color: transparent;
    color: var(--theme_light);
}

.footer .widget .social-icons li>a:hover {
    color: var(--theme_primary);
}

/* first-footer */
.first-footer {
    padding: 55px 15px 30px;
    position: relative;
    border-bottom: 1px solid #aca9a9;
}

.first-footer .widget {
    display: table-cell;
    vertical-align: middle;
}

/* newsletter */
.newsletter_widget {
    padding-right: 15px;
}

.first-footer .newsletter_widget h3 {
    font-family: "Bricolage Grotesque", sans-serif;
    font-weight: 700;
    font-size: 22px;
    line-height: 32px;
}

.first-footer .newsletter-form {
    border-radius: 6px;
    position: relative;
    display: inline-block;
    width: 100%;
    background-color: transparent;
}

.first-footer .newsletter-form p {
    margin: 0;
}

.first-footer .newsletter-form input[type="email"] {
    background-color: transparent;
    border: 1px solid rgba(255, 255, 255, .8);
    font-size: 14px;
    width: 100%;
    height: 60px;
    outline: none;
    text-overflow: ellipsis;
    overflow: hidden;
    white-space: nowrap;
    padding-right: 220px;
    color: #fff;
    border-radius: 3px;
}

.first-footer .newsletter-form input[type="email"]::-webkit-input-placeholder {
    color: #fff;
}

.first-footer .newsletter-form button[type="submit"] {
    position: absolute;
    top: 10px;
    height: 40px;
    width: 190px;
    z-index: 2;
    padding: 0;
    right: 10px;
    box-shadow: 0 0;
    font-weight: 600;
    font-size: 17px;
    border-radius: 3px;
    border: 1px solid transparent;
    font-family: "Bricolage Grotesque", sans-serif;
}

.first-footer .newsletter-form button i {
    font-size: 16px;
    position: relative;
}

.first-footer .featured-box .featured-title,
.first-footer .featured-box .featured-icon {
    display: table-cell;
    vertical-align: middle;
    font-family: "Bricolage Grotesque", sans-serif;
}

.first-footer .featured-box .featured-icon .ttm-icon i {
    font-size: 40px;
    line-height: 40px;
    width: 65px;
    height: 40px;
    color: #fff;
}

.first-footer .featured-box .featured-title h3 {
    font-size: 18px;
    line-height: 23px;
    font-weight: 600;
    margin-bottom: 0;
}

.first-footer .featured-box .featured-title p {
    font-size: 24px;
    line-height: 30px;
    font-weight: 600;
}

.first-footer .newsletter-form input[type="email"]:focus {
    border: 1px solid #3d923d;
}

.mailchimp-inputbox {
    position: relative;
}

.footer .theme_btn.footer-btn {
    position: absolute;
    top: 50%;
    right: 5px;
    transform: translateY(-50%);
    width: 210px;
}

.footer-logo img {
    width: 270px;
}

.bottom-footer-text p {
    color: var(--theme_bg);
}

.bottom-footer-text p a {
    color: var(--theme_light);
}

.bottom-footer-text p a:hover {
    color: var(--theme_primary);
}

/* call banner */

.banner_call {
    background-attachment: fixed;
    padding-top: 60px;
    padding-bottom: 60px;
    position: relative;
    z-index: 1;
    overflow: hidden;
}

.banner_call::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: -1;
}

.contact_wrapper {
    height: 150px;
    overflow: hidden;
    position: relative;
}

.contact_slider {
    display: flex;
    flex-direction: column;
    animation: slideLoop 6s ease-in-out infinite;
    cursor: pointer;
}

.contact_slider:hover {
    animation-play-state: paused;
}

.slide_item {
    height: 150px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: center;
}

@keyframes slideLoop {
    0% {
        transform: translateY(0);
    }

    20% {
        transform: translateY(0);
    }


    40% {
        transform: translateY(-150px);
    }

    60% {
        transform: translateY(-150px);
    }


    80% {
        transform: translateY(-300px);
    }

    100% {
        transform: translateY(-300px);
    }

}

.contact_wrapper h2 span,
.banner_call_left h2 span {
    display: block;
    color: var(--theme_primary);
    font-size: 50px;
    font-weight: 900;
    filter: drop-shadow(2px 2px 4px rgba(0, 0, 0, 0.726));
}

.banner_call .blob-btn {
    width: 500px;
}

/* home contact form */
.home_contact_form input.form-control,
.home_contact_form textarea.form-control {
    background-color: #8a726b48;
    border: none;
    border-bottom: 3px solid var(--theme_primary);
    border-left: 3px solid var(--theme_primary);
    border-radius: 5px;
    color: var(--theme_light);
    font-size: 15px;
    font-size: 20px;
}

.home_contact_form .sub_heading {
    background-color: var(--theme_bg);
    width: max-content;
}

.home_contact_form .main_heading_wrap {
    background-color: #8a726b48;
    padding: 50px 20px 30px;
    border-radius: 15px;
}

/* common breadcrumb */
.page_breadcrumb h1 {
    /* -webkit-text-stroke: 2px var(--theme_primary); */
    /* color: transparent !important; */
}

.breadcrumb_title span {
    display: inline-block;
    background: linear-gradient(90deg,
            rgba(230, 61, 5, 1) 0%,
            rgba(212, 93, 53, 1) 25%,
            rgba(21, 131, 171, 1) 50%,
            rgba(2, 53, 71, 1) 75%,
            rgba(230, 61, 5, 1) 100%);
    background-size: 200% 100%;
    /* make it repeatable */
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    animation: gradientMove 6s linear infinite;
    -webkit-text-stroke: .3px var(--theme_bg);
    filter: drop-shadow(2px 2px 4px rgba(219, 219, 219, 0.397));
}

@keyframes gradientMove {
    0% {
        background-position: 0% 0%;
    }

    100% {
        background-position: -200% 0%;
        /* move in negative direction for seamless loop */
    }
}

.page_breadcrumb {
    padding: 150px 0 120px;
    background-position: 100% 100%;
    background-size: cover;
    background-repeat: no-repeat;
}

.breadcrumb .breadcrumb-item a {
    color: var(--color--white);
    font-size: 16px;
    font-weight: 400;
}

.breadcrumb .breadcrumb-item a:hover,
.breadcrumb .breadcrumb-item.active {
    color: var(--theme_light);
    font-weight: 500;
}

.page_breadcrumb::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    z-index: 0;
    background-color: rgba(0, 0, 0, 0.6);
}

.breadcrumb_wrapper {
    position: relative;
    z-index: 2;
}

.breadcrumb {
    background: linear-gradient(90deg, rgba(230, 61, 5, 1) 0%, rgba(212, 93, 53, 1) 30%, rgba(21, 131, 171, 1) 70%, rgba(2, 53, 71, 1) 100%);
    padding: 10px 20px;
    border-radius: 15px;
}

/* %%%%%%% About section %%%%*/
.page_about_img_wrap {
    background: #8a726b48;
}

.why-choose-us {
    display: flex;
    flex-wrap: wrap;
    list-style: disc;
    /* padding-left: 20px; */
    gap: 15px;
    background: #cecece8a;
}

.why-choose-us li {
    width: calc(50% - 10px);
    list-style-position: inside;
}

.why-choose-us li::marker {
    color: var(--theme_primary);
    margin-left: 0 !important;
}

/* %%%%%%%%%%% Blogs %%%%%%% */
@keyframes slideDown {
    from {
        transform: translateY(-100%);
    }

    to {
        transform: translateY(0);
    }
}

/* =======================================================
   BLOG DETAILS PAGE — Modern & Optimized CSS
   ======================================================= */

/* ---------- GLOBAL WRAPPER ---------- */
.blog-details-area {
    position: relative;
}

/* ---------- MAIN BLOG CONTAINER ---------- */
.blog-details-item {
    margin-bottom: 30px;
}

/* ---------- FEATURED IMAGE SECTION ---------- */
.blog-details-img {
    position: relative;
    margin-bottom: 18px;
    height: 300px;
    width: 100%;
    overflow: hidden;
    margin-bottom: 25px;

}

.blog-details-img .date {
    display: inline-block;
    text-align: center;
    background-color: #800000;
    padding: 8px 18px;
    position: absolute;
    top: 30px;
    left: 30px;
}

.blog-details-img .date p,
.blog-details-img .date span {
    color: #fff;
    font-weight: 600;
    font-size: 18px;
    margin: 0;
}

.blog-details-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.blog-details-img ul {
    margin: 0;
    padding: 0;
}

.blog-details-img ul li {
    list-style: none;
    display: inline-block;
    color: #800000;
    font-weight: 500;
    font-size: 14px;
    margin-right: 22px;
}

.blog-details-img ul li:last-child {
    margin-right: 0;
}

.blog-details-img ul li i {
    color: #800000;
    font-size: 18px;
    margin-right: 4px;
    position: relative;
    top: 3px;
}

.blog-details-img ul li a {
    color: #800000;
}

.blog-details-img ul li a:hover {
    color: #333;
}

/* ---------- BLOG HEADER (TITLE + CONTENT) ---------- */
.blog-details-head {
    margin-bottom: 30px;
}

.blog-details-head h2 {
    font-weight: 600;
    margin-bottom: 18px;
}

.blog-details-head p {
    margin-bottom: 12px;
}

.blog-details-head p:last-child {
    margin-bottom: 0;
}

.blog-details-head .row {
    margin: 20px 0;
}

.blog-details-head .row img {
    width: 100%;
}

/* ---------- BLOG TAGS (AT THE END OF CONTENT) ---------- */
.blog-details-head ul {
    margin: 20px auto 0;
    padding: 20px 0 0;
    text-align: center;
    border-top: 1px solid #ebebeb;
    max-width: 445px;
}

.blog-details-head ul li {
    list-style: none;
    display: inline-block;
    margin: 0 8px;
    font-size: 14px;
}

.blog-details-head ul li a {
    color: #858584;
}

.blog-details-head ul li a:hover {
    color: #800000;
}

.blog-details-head ul li a i {
    font-size: 17px;
    position: relative;
    top: 1px;
}

/* ---------- PREV / NEXT NAVIGATION ---------- */

.blog-details-nav ul {
    display: flex;
    margin: 0;
    padding: 0;
}

.blog-details-nav ul li {
    list-style: none;
    flex: 0 0 50%;
}

.blog-details-nav ul li:last-child {
    text-align: right;
}

.blog-details-nav a {
    color: #333;
    font-size: 15px;
    padding: 8px 18px;
    border: 1px solid #800000;
    border-radius: 8px;
    display: inline-block;
    transition: 0.3s ease;
}

.blog-details-nav a:hover {
    background-color: #800000;
    color: #fff;
}

/* ---------- COMMENT FORM ---------- */
.blog-details-form {
    padding: 45px 60px 50px;
    box-shadow: 0 0 25px rgba(221, 221, 221, 0.48);
}

.blog-details-form h3 {
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 30px;
}

.blog-details-form .form-group {
    margin-bottom: 30px;
}

.blog-details-form .form-control {
    height: 50px;
    border-radius: 0;
    border: 1px solid #800000;
    padding-left: 25px;
    font-size: 14px;
}

.blog-details-form .form-control:focus {
    border-color: #800000;
    box-shadow: none;
}

.blog-details-form textarea {
    padding-top: 10px;
    height: auto !important;
}

.blog-details-form ::placeholder {
    color: #ababab;
}

.blog-details-form-btn {
    padding: 13px 40px;
    font-size: 15px;
    font-weight: 600;
    background-color: #800000;
    color: #fff;
    border-radius: 0;
    transition: 0.3s ease;
}

.blog-details-form-btn:hover {
    background-color: #333;
}

/* ---------- SEARCH SECTION ---------- */
.blog-details-search {
    margin-bottom: 50px;
}

.blog-details-search form {
    position: relative;
}

.blog-details-search .form-control {
    height: 50px;
    border-radius: 0;
    border: 1px solid #800000;
    padding-left: 25px;
}

.blog-details-search .search-btn {
    width: 50px;
    height: 50px;
    color: #fff;
    background: #800000;
    position: absolute;
    right: 0;
    top: 0;
    font-size: 20px;
    border-radius: 0;
    transition: 0.3s ease;
    line-height: 50px;
    text-align: center;
}

.blog-details-search .search-btn:hover {
    background: #333;
}

/* ---------- RECENT POSTS ---------- */
.service_more {
    position: sticky;
    top: 100px;
}

.blog-details-recent {
    margin-bottom: 50px;
    background-color: #8a726b48;

}

.blog-details-recent h3 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 20px;
}

.blog-details-inner {
    position: relative;
    margin-bottom: 20px;
    overflow: hidden;
    transition: all 0.5s ease-in-out;
    height: 100px;
}

.blog-details-inner::after {
    content: "";
    position: absolute;
    inset: 0;

    background: var(--theme_primary);
    width: 0%;
    transition: width 0.3s ease;
    z-index: -1;
}

.blog-details-inner:hover::after {
    width: 100%;
}

.blog-details-inner figure {
    width: 110px;
    height: 100px;
    overflow: hidden;
}

.blog-details-inner img {
    width: 100%;
    height: 100%;
    transition: all 0.5s ease-in-out;
}

.blog-details-inner:hover img {
    transform: scale(1.1);
}

.blog-details-inner .more_blogs_details {
    width: calc(100% - 110px);
    place-content: center;
}

.blog-details-inner .more_blogs_details p {
    font-weight: 600;
    color: #111;
    transition: color 0.3s ease, transform 0.3s ease;
    padding-inline: 10px;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
    overflow: hidden;
    text-overflow: ellipsis;
}

.blog-details-inner .more_blogs_details:hover p {
    color: var(--theme_light);
}

.blog-details-inner ul {
    display: flex;
    margin-top: 12px;
    padding: 0;
}

.blog-details-inner ul li {
    flex: 0 0 50%;
    font-size: 14px;
    color: #800000;
    list-style: none;
}

.blog-details-inner ul li:last-child {
    text-align: right;
}

/* ---------- CATEGORY LIST ---------- */
.blog-details-category,
.blog-details-gallery,
.blog-details-tag {
    margin-bottom: 50px;
}

.blog-details-category h3,
.blog-details-gallery h3,
.blog-details-tag h3 {
    font-weight: 600;
    font-size: 20px;
    margin-bottom: 20px;
}

.blog-details-category ul {
    padding: 0;
}

.blog-details-category ul li {
    list-style: none;
    margin-bottom: 15px;
}

.blog-details-category ul li:last-child {
    margin-bottom: 0;
}

.blog-details-category a {
    display: block;
    font-size: 16px;
    color: #333;
    padding-bottom: 15px;
    border-bottom: 1px solid #dfdfdf;
}

.blog-details-category a:hover {
    color: #800000;
}

/* ---------- GALLERY ---------- */
.blog-details-gallery ul {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    padding: 0;
}

.blog-details-gallery li {
    flex: 0 0 22%;
    list-style: none;
}

.blog-details-gallery img {
    width: 100%;
    border-radius: 4px;
}

/* ---------- TAGS ---------- */
.blog-details-tag ul {
    padding: 0;
}

.blog-details-tag li {
    list-style: none;
    display: inline-block;
    margin-right: 6px;
    margin-bottom: 10px;
}

.blog-details-tag a {
    display: block;
    background: #e5e5e5;
    color: #333;
    font-size: 15px;
    padding: 10px 20px;
    border-radius: 8px;
    transition: 0.3s ease;
}

.blog-details-tag a:hover {
    background: #800000;
    color: #fff;
}

/* ---------- EXTRA SPACING ---------- */
.blog-area-three {
    padding-bottom: 100px;
}

/* contact page */
#site_map {
    line-height: 0.7;
}

.card_details {
    background-color: var(--theme_dark);
    /* padding: 15px 20px; */
    border-right: 10px solid var(--theme_primary);
    border-radius: 15px;
    overflow: hidden;
}

.card_details i {
    font-size: 30px;
    color: var(--theme_dark);
    transition: animation 0.5s ease-in-out;
}

.card_details a:hover i {
    color: var(--theme_light);
    animation: beat 0.5s infinite alternate;
}

.card_details h4 {
    color: var(--color--white);
}

.page_contact_icon {
    top: 0;
    left: 0;
    background-color: var(--theme_primary);
    width: 80px;
    height: 80px;
    display: flex;
    padding-top: 15px;
    padding-left: 15px;
    /* align-items: center; */
    /* justify-content: center; */
    border-radius: 0 0 100% 0;
}

.card_details .card_content p {
    color: var(--theme_primary);
}

.contact__info {
    background: url(./../images/contact/formbg.png) rgba(216, 151, 11, 0.6) no-repeat;
    background-size: cover;
    background-position: center;
    background-blend-mode: multiply;
}

.page_contact_form {
    background-color: var(--bg-color);
}

.contact_form {
    background-color: var(--color_black);
    padding: 50px 30px;
    border-right: 10px solid var(--theme_primary);
    border-bottom: 10px solid var(--theme_primary);
    border-radius: 30px;
}

.contact__info {
    border-radius: 0 30px 30px 0;
    border-left: 10px solid var(--theme_primary);
    border-top: 10px solid var(--theme_primary);
}

.page_contact_form input::placeholder,
.page_contact_form textarea::placeholder,
.page_contact_form select::placeholder,
.page_contact_form select,
#career_form .careerform input::placeholder,
#career_form .careerform textarea::placeholder,
#career_form .careerform select::placeholder,
#career_form .careerform select {
    color: var(--theme_primary);
}

.page_contact_form input,
.page_contact_form textarea,
.page_contact_form select,
#career_form .careerform input,
#career_form .careerform textarea,
#career_form .careerform select {
    border: none;
    border-left: 5px solid var(--theme_primary);
    box-shadow: none;
    color: var(--theme_primary) !important;
}

.page_contact_form label {
    font-weight: 700;
    font-size: 18px;
    color: var(--theme_secondary);
}

.page_contact_form input:focus,
.page_contact_form textarea:focus,
.page_contact_form select:focus {
    border: none;
    border-left: 5px solid var(--theme_primary);
    box-shadow: none;
}

.contact__info_wrap h2,
.contact_form h2 {
    color: var(--theme_primary);
}

.contact__info_wrap p {
    color: var(--theme_primary);
}

.contact_logo {
    mix-blend-mode: lighten;
    display: inline-block;
}

#site_map .form-control {
    font-size: 20px !important;
}

.theme_map iframe {
    width: 100%;
    height: 400px;
}

.page_contact_icon .img {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    border: 3px solid #fff;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.page_contact_icon img {
    width: 100%;
    height: 150%;
    object-fit: cover;
}

.card_details:hover {
    transform: translateY(-5px);
}

/* service details page  */
.blog-details-recent.servive_details .blog-details-inner {
    background: linear-gradient(90deg, rgba(230, 61, 5, 1) 0%, rgba(212, 93, 53, 1) 25%, rgba(21, 131, 171, 1) 50%, rgba(2, 53, 71, 1) 75%, rgba(230, 61, 5, 1) 100%);
    background-size: 200% 100%;
    transition: background-position 0.5s ease-in-out;
}

.blog-details-recent.servive_details .blog-details-inner:hover,
.blog-details-recent.servive_details .owl-item.center .blog-details-inner {
    animation: gradientMove 6s linear infinite;
}

.blog-details-recent.servive_details .blog-details-inner .more_blogs_details h6 {
    color: var(--theme_bg);
}

.blog-details-recent.servive_details .blog-details-inner .more_blogs_details p {
    color: var(--theme_dark);
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    overflow: hidden;
    text-overflow: ellipsis;
    line-height: 1.1;
}

.blog-details-recent.servive_details .blog-details-inner:hover .more_blogs_details p,
.blog-details-recent.servive_details .owl-item.center .blog-details-inner .more_blogs_details p {
    color: var(--theme_light);

}

.blog-details-recent.servive_details .owl-theme .owl-dots .owl-dot span {
    background: var(--theme_bg);
}

.blog-details-recent.servive_details .owl-theme .owl-dots .owl-dot.active span,
.blog-details-recent.servive_details .owl-theme .owl-dots .owl-dot:hover span {
    background: var(--theme_primary) !important;
}