@import url('https://fonts.googleapis.com/css2?family=Nunito+Sans:ital,opsz,wght@0,6..12,200..1000;1,6..12,200..1000&family=Tajawal:wght@200;300;400;500;700;800;900&display=swap');

@import url('https://fonts.googleapis.com/css2?family=Noto+Naskh+Arabic:wght@400..700&display=swap'); 
@import url('https://fonts.googleapis.com/css2?family=Amiri:ital,wght@0,400;0,700;1,400;1,700&display=swap'); 
@import url('https://fonts.googleapis.com/css2?family=Scheherazade+New:wght@400;500;600;700&display=swap');

@font-face {
    font-family: 'times';
    src: url('../fonts/times.ttf') format('truetype');
}

:root {
    --primary_color: #41a277;
    --accent_color: #17163d;
    --bg_primary: #e9f8f4;
    --dark_color: #000000;
    --white_color: #ffffff;
    --border_color: #eee;
    --En_font: "Nunito Sans", sans-serif;
    /*--Ar_font: "Scheherazade New", serif;*/
    --Ar_font: "Amiri", serif;
 /*   --Ar_font: "Noto Naskh Arabic", serif;
    --Ar_font: "Tajawal", sans-serif;
    --Ar_font: "times", sans-serif;*/
    --transition: 0.4s ease-in-out;
}
body, html {
    direction: rtl;
    scroll-behavior: smooth;
}

* {
    font-family: var(--Ar_font);
}

a {
    text-decoration: none !important;
}

.link_abs {
    position: absolute;
    inset: 0;
    z-index: 1;
}

ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.container {
    padding: 0;
}

.btn_up {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 1000;
    background: var(--primary_color);
    color: var(--white_color);
    border: 1px solid var(--accent_color);
    border-radius: 10px;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition);
    opacity: 0;
    visibility: hidden;
    z-index: 9999999;
    box-shadow: none !important;
}

    .btn_up.show {
        opacity: 1;
        visibility: visible;
    }

.btn_whatsApp_chat {
    position: fixed;
    bottom: 20px;
    left: 20px;
    z-index: 1000;
    background: #25d366;
    color: var(--white_color);
    border: none;
    border-radius: 10px;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition);
    font-size: 30px;
    box-shadow: none !important;
}

    .btn_whatsApp_chat:hover {
        color: var(--white_color);
    }

    .btn_whatsApp_chat:active {
        background: var(--accent_color);
    }

.btn_default {
    border-radius: 5px;
    padding: 15px 25px;
    position: relative;
    outline: 0;
    border: 1px solid var(--primary_color);
    color: var(--white_color);
    background: var(--primary_color);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
    z-index: 1;
    overflow: hidden;
    font-size: 17px;
    line-height: 1;
    box-shadow: none !important;
}

.btn_second {
    background: var(--bg_primary);
    color: var(--accent_color);
}

.btn_default:hover {
    color: var(--primary_color);
}

.btn_default::before {
    content: "";
    position: absolute;
    -webkit-transition-duration: 800ms;
    transition-duration: 800ms;
    width: 200%;
    height: 200%;
    top: 110%;
    left: 50%;
    background: var(--accent_color);
    -webkit-transform: translateX(-50%);
    -moz-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    -o-transform: translateX(-50%);
    transform: translateX(-50%);
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -o-border-radius: 50%;
    -ms-border-radius: 50%;
    border-radius: 50%;
    z-index: -1;
}

.btn_default:hover::before {
    top: -40%;
}

.topbar {
    padding: 10px 5px;
    background: var(--accent_color);
}

.topbarTitle {
    color: var(--white_color);
    font-size: 15px;
    font-weight: 400;
    margin: 0;
}

    .topbarTitle span {
        color: var(--primary_color);
        font-size: 17px;
        font-weight: 600;
        margin: 0 4px;
        display: inline-block;
        font-family: var(--En_font);
    }

.listed_contactInfo_Item {
    display: inline-block;
    color: var(--white_color);
    font-size: 15px;
    margin-left: 10px;
    letter-spacing: 1px;
    transition: var(--transition);
    font-family: var(--En_font);
    font-weight: 600;
}

    .listed_contactInfo_Item i {
        margin-left: 5px;
        font-size: 18px;
        color: var(--primary_color);
    }

    .listed_contactInfo_Item:hover {
        color: var(--primary_color);
    }

.listed_socialMedia_Item {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    color: var(--white_color);
    border: 1px solid var(--white_color);
    transition: var(--transition);
    font-size: 17px;
    border-radius: 8px;
    color: var(--primary_color);
    background: var(--white_color);
}

    .listed_socialMedia_Item:hover {
        color: var(--white_color);
        background: var(--primary_color);
    }

#nav {
    background: var(--bg_primary);
    padding: 0 10px;
    border-bottom: 1px solid var(--accent_color);
}

.collapse:not(.show) {
    display: none;
}

#navbar_content.collapse_content_shadow {
    display: none !important;
}

#logo img {
    width: 80px;
    transition: var(--transition);
}

#logo_footer {
    max-width: 150px;
    width: 100%;
    padding: 10px;
    border-radius: 10px;
    background: var(--bg_primary);
}

    #logo_footer img {
        width: 100%;
    }

#nav_item {
    color: var(--accent_color);
    font-size: 17px;
    font-weight: 500;
    transition: var(--transition);
}

    #nav_item:hover {
        color: var(--primary_color);
    }

    #nav_item i {
        color: var(--primary_color);
        font-size: 14px;
    }

.dropdownMenu_Nav {
    padding: 0;
    border-radius: 8px;
    border: 1px solid var(--border_color);
    overflow: hidden;
    text-align: right;
    transition: var(--transition);
    left: auto;
    right: 0;
    min-width: 200px;
}

.dropdown_itemNav {
    color: var(--accent_color);
    font-size: 16px;
    font-weight: 500;
    padding: 8px 5px;
    transition: var(--transition);
}

    .dropdown_itemNav:not(:last-child) {
        border-bottom: 1px solid var(--border_color);
    }

    .dropdown_itemNav:hover {
        background: var(--accent_color);
        color: var(--primary_color);
    }

.listedSocialTitle {
    color: var(--accent_color);
    font-size: 17px;
    font-weight: 500;
    transition: var(--transition);
}

.home_banner {
    min-height: 100vh;
    padding: 80px 0 100px;
    align-content: center;
    position: relative;
    margin-top: 100px;
    background: url(../img/banner_gb.jpg) left top/contain no-repeat;
}

    .home_banner::before {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background-color: transparent;
        background-image: linear-gradient(106deg, #1b1b1b67 0%, #17163d 70%);
    }

.banner-image-shape-two {
    position: absolute;
    right: 0;
    bottom: 0;
}


.title_banner {
    color: var(--white_color);
    font-size: 50px;
    font-weight: 600;
    transition: var(--transition);
}

.subtitle_banner {
    font-family: var(--En_font);
    color: var(--primary_color);
    text-transform: uppercase;
    /* display: block; */
    transition: var(--transition);
    font-weight: 800;
    margin-bottom: 10px;
}

.description_banner {
    color: var(--bg_primary);
    font-size: 20px;
    transition: var(--transition);
    font-weight: 400;
}





.over_view {
    padding: 50px 0;
    position: relative;
    background: var(--bg_primary);
}

.card_overViewText {
    padding: 20px 15px;
    border-radius: 10px;
    border: 1px solid var(--primary_color);
    margin-bottom: 20px;
    background: linear-gradient(90deg, var(--bg_primary), var(--white_color));
    transition: var(--transition);
}

.mission_vision .card_overViewText {
    background: linear-gradient(90deg, var(--white_color), var(--bg_primary));
}

.card_overViewText:hover {
    transform: translateY(-10px);
    /* background: linear-gradient(90deg , var(--bg_primary) , var(--white_color)); */
}

.overViewTitle {
    font-size: 22px;
    font-weight: 500;
    color: var(--accent_color);
    position: relative;
}

.description {
    color: var(--dark_color);
    font-size: 16px;
    font-weight: 500;
}

.card_overViewText .description {
    margin: 0;
}

.description strong, .description span {
    color: var(--primary_color);
    font-weight: 500;
}


.overView_image {
    max-width: 100%;
    height: 100%;
    overflow: hidden;
    border-radius: 10px;
}

    .overView_image img {
        width: 100%;
        height: 100%;
        transition: var(--transition);
    }

    .overView_image:hover img {
        transform: scale(1.2) rotate(4deg);
    }

.mission_vision {
    position: relative;
    padding: 40px 0;
    background: var(--white_color);
}













/*------------------------*/
/*----features_section----*/
/*------------------------*/
.work_steps {
    background: var(--white_color);
    position: relative;
    padding: 30px 0;
}

.step_block {
    background: var(--white_color);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

    .step_block ul {
        max-width: 1080px;
        width: 100%;
        display: inline-block;
        margin: 0 auto;
        padding: 10px;
    }


        .step_block ul li {
            display: flex;
            align-items: center;
            justify-content: space-between;
            position: relative;
            margin-bottom: 50px;
            position: relative;
        }

            .step_block ul li:before {
                top: 50px;
                width: 4px;
                height: calc(100% + 100px);
            }

            .step_block ul li:before, .step_block ul li:first-child:after {
                content: "";
                position: absolute;
                left: 50%;
                transform: translateX(-50%);
                background-color: var(--primary_color);
            }

            .step_block ul li:first-child:after {
                top: 0;
                width: 14px;
                height: 14px;
                border-radius: 15px;
            }

            .step_block ul li:first-child:before {
                top: 0;
            }

            .step_block ul li .step_img, .step_block ul li .step_text {
                width: 360px;
                text-align: right;
            }

.title_steps {
    font-size: 20px;
    font-weight: 600;
    color: var(--primary_color);
    letter-spacing: 0.8px;
}

.description a {
    color: var(--primary_color);
    transition: var(--transition);
}

.step_block ul li .step_number {
    background-image: url(../img/iconNumber.png);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: 50%;
    width: 110px;
    height: 110px;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

    .step_block ul li .step_number h3 {
        font-size: 30px;
        font-weight: 600;
    }

.step_block ul li:nth-child(even) {
    flex-direction: row-reverse;
}

.title_sec {
    font-size: 20px;
    font-weight: 500;
    color: var(--accent_color);
}

/*-----------------------*/
/*-------servises--------*/
/*-----------------------*/
.servises {
    position: relative;
    padding: 30px 0 30px;
    background: var(--primary_color);
}

    .servises::before {
        content: "";
        position: absolute;
        top: -68px;
        left: 0;
        width: 100%;
        height: 68px;
        background-image: url(../img/subtractPri.png);
        background-size: cover;
        background-position: 50%;
        background-repeat: no-repeat;
    }

    .servises::after {
        content: "";
        position: absolute;
        bottom: -68px;
        left: 0;
        width: 100%;
        height: 68px;
        background-image: url(../img/subtractPri.png);
        transform: rotate(180deg);
        background-size: cover;
        background-position: 50%;
        background-repeat: no-repeat;
        z-index: 1;
    }

.background_Overlay {
    inset: 0;
    position: absolute;
    background-image: url(../img/Group_bg.webp);
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    opacity: 0.1;
    transition: background 0.3s, border-radius 0.3s, opacity 0.3s;
}

.servises .title_sec {
    color: var(--bg_primary);
}

.card_servises {
    padding: 15px;
    overflow: hidden;
}

.top_imageSer {
    position: relative;
    transition: var(--transition);
    overflow: hidden;
    height: 250px;
}

    .top_imageSer img {
        width: 100%;
        height: 100%;
        border-radius: 15px;
        transition: var(--transition);
    }

.card_servises:hover .top_imageSer img {
    transform: scale(1.1) rotate(4deg);
}

.servises_title {
    transition: var(--transition);
    color: var(--primary_color);
}


.testmonial_sec {
    position: relative;
    padding: 30px 0 30px;
    background: var(--bg_primary);
}

.imageTest {
    width: 45px;
    height: 45px;
    border-radius: 50%;
}

.title_name {
    font-size: 16px;
    font-weight: 600;
    color: var(--accent_color);
    margin: 0;
}

.testbody .description {
    font-size: 14px;
}

.swiper_testmonial {
    padding: 30px 0;
}

    .swiper_testmonial .swiper-pagination {
        bottom: 10px !important;
    }

    .swiper_testmonial .swiper-pagination-bullet {
        background: var(--accent_color);
        opacity: 1;
        width: 15px;
        height: 10px;
        margin: 0 4px !important;
        border-radius: 2px;
        transition: var(--transition);
    }

    .swiper_testmonial .swiper-pagination-bullet-active {
        background: var(--primary_color);
        width: 25px;
    }

/*------------------*/
/*-----whyus_sec----*/
/*------------------*/
.whyus_sec {
    position: relative;
    padding: 50px 0;
}

.why_tit {
    font-size: 20px;
    font-weight: 500;
    color: var(--primary_color);
}

.topIconWhy img {
    width: 80px;
}

.cardbody_why .description {
    margin: 0;
}


/*--------------*/
/*-contact_suSe-*/
/*--------------*/
.contact_suSe {
    position: relative;
    padding: 50px 0;
    background: var(--bg_primary);
}

.contactInfo_Icon {
    width: 67px;
    min-width: 67px;
    height: 67px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--bg_primary);
}

    .contactInfo_Icon img {
        max-height: 52px;
    }

.title_con {
    font-size: 20px;
    font-weight: 500;
    color: var(--dark_color);
    -webkit-transition-duration: 800ms;
    transition-duration: 800ms;
}

.contactInfo_Text .description {
    -webkit-transition-duration: 800ms;
    transition-duration: 800ms;
}

    .contactInfo_Text .description a {
        font-size: 15px;
    }

        .contactInfo_Text .description a:hover {
            color: var(--white_color);
        }

.card_contactInfo {
    overflow: hidden;
}

    .card_contactInfo::before {
        content: "";
        position: absolute;
        -webkit-transition-duration: 800ms;
        transition-duration: 800ms;
        width: 200%;
        height: 200%;
        top: 110%;
        left: 50%;
        background: var(--accent_color);
        -webkit-transform: translateX(-50%);
        -moz-transform: translateX(-50%);
        -ms-transform: translateX(-50%);
        -o-transform: translateX(-50%);
        transform: translateX(-50%);
        -webkit-border-radius: 50%;
        -moz-border-radius: 50%;
        -o-border-radius: 50%;
        -ms-border-radius: 50%;
        border-radius: 50%;
        z-index: -1;
    }

    .card_contactInfo:hover::before {
        top: -40%;
    }

    .card_contactInfo:hover .title_con, .card_contactInfo:hover .description {
        color: var(--white_color);
    }


.subtitle_Section {
    color: var(--primary_color);
    display: inline-block;
    padding: 10px 20px;
    border: 1px solid var(--primary_color);
    border-radius: 3px;
    background: var(--accent_color);
    margin-bottom: 20px;
    font-weight: 600;
}

.form_data {
    padding: 20px 15px;
    background: var(--white_color);
    border: 1px solid var(--primary_color);
    border-radius: 12px;
}

    .form_data label {
        color: var(--primary_color);
        font-size: 16px;
        font-weight: 500;
    }

.form_input {
    border: 1px solid var(--accent_color);
    transition: var(--transition);
    font-size: 15px;
    font-weight: 500;
    background: var(--bg_primary);
    height: 45px;
    padding: 10px;
    box-shadow: none !important;
    border-radius: 10px;
    margin-bottom: 20px;
}

    .form_input:focus {
        border-color: var(--primary_color);
        background: var(--white_color);
    }

.custom-select {
    background: var(--bg_primary) url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='4' height='5' viewBox='0 0 4 5'%3e%3cpath fill='%23343a40' d='M2 0L0 2h4zm0 5L0 3h4z'/%3e%3c/svg%3e") left .75rem center/8px 10px no-repeat;
    ;
}

    .custom-select:focus {
        background: var(--white_color) url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='4' height='5' viewBox='0 0 4 5'%3e%3cpath fill='%23343a40' d='M2 0L0 2h4zm0 5L0 3h4z'/%3e%3c/svg%3e") left .75rem center/8px 10px no-repeat;
        ;
    }

.card_mab {
    height: 100%;
    padding: 0;
    border: 0;
}

    .card_mab iframe {
        height: 100%;
        width: 100%;
        border-radius: 12px;
        border: 1px solid var(--primary_color);
    }

/* Footer Styles */
.footer_sec {
    background: var(--accent_color);
    color: var(--white_color);
    padding: 60px 0 30px;
    position: relative;
    overflow: hidden;
}

    .footer_sec::before {
        content: '';
        position: absolute;
        top: 0;
        right: 0;
        width: 400px;
        height: 100%;
        background: linear-gradient(135deg, var(--primary_color) 0%, transparent 100%);
        opacity: 0.08;
        border-radius: 50% 0 0 50%;
        transform: translateX(50%);
    }

/* Footer Logo Section */
.footer-logo-section {
    text-align: right;
}

.footer-description {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.8;
    margin: 20px 0;
    font-size: 16px;
    font-weight: 400;
}



/* Newsletter Section */
.newsletter-section {
    text-align: right;
}

.newsletter-title {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 10px;
    color: var(--white_color);
}

.newsletter-desc {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 25px;
    font-size: 16px;
}

.newsletter-form {
    display: flex;
    align-items: center;
    gap: 12px;
    max-width: 400px;
}

.newsletter-input {
    flex: 1;
    padding: 15px 20px;
    border: 2px solid rgba(255, 255, 255, 0.1);
    border-radius: 25px;
    background: rgba(255, 255, 255, 0.05);
    color: var(--white_color);
    font-size: 16px;
    transition: var(--transition);
}

    .newsletter-input::placeholder {
        color: rgba(255, 255, 255, 0.5);
    }

    .newsletter-input:focus {
        outline: none;
        border-color: var(--primary_color);
        background: rgba(255, 255, 255, 0.1);
    }

.newsletter-btn {
    width: 50px;
    height: 50px;
    border: none;
    border-radius: 50%;
    background: var(--primary_color);
    color: var(--white_color);
    font-size: 18px;
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

    .newsletter-btn::before {
        content: "";
        position: absolute;
        width: 200%;
        height: 200%;
        top: 110%;
        left: 50%;
        background: var(--accent_color);
        transform: translateX(-50%);
        border-radius: 50%;
        z-index: -1;
        transition: var(--transition);
    }

    .newsletter-btn:hover::before {
        top: -40%;
    }

    .newsletter-btn:hover {
        transform: scale(1.1);
    }

/* Footer Sections */
.footer-section-title {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 25px;
    color: var(--white_color);
    position: relative;
    padding-bottom: 10px;
}

    .footer-section-title::after {
        content: '';
        position: absolute;
        bottom: 0;
        right: 0;
        width: 40px;
        height: 3px;
        background: var(--primary_color);
        border-radius: 2px;
    }

.footer-links {
    list-style: none;
    padding: 0;
}

    .footer-links li {
        margin-bottom: 15px;
    }

    .footer-links a {
        color: rgba(255, 255, 255, 0.8);
        transition: var(--transition);
        font-size: 16px;
        display: block;
        padding: 8px 0;
        position: relative;
        padding-right: 20px;
    }

        .footer-links a::before {
            content: '→';
            position: absolute;
            right: 0;
            top: 8px;
            color: var(--primary_color);
            transition: var(--transition);
        }

        .footer-links a:hover {
            color: var(--primary_color);
            transform: translateX(-5px);
        }

            .footer-links a:hover::before {
                transform: translateX(-5px);
            }

/* Contact Info */
.contact-info {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
}

.contact-icon {
    width: 40px;
    height: 40px;
    background: var(--primary_color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white_color);
    font-size: 16px;
    flex-shrink: 0;
    margin-top: 2px;
}

.contact-text {
    display: flex;
    flex-direction: column;
    gap: 3px;
}

.contact-label {
    color: var(--primary_color);
    font-size: 14px;
    font-weight: 600;
}

.contact-value {
    color: rgba(255, 255, 255, 0.9);
    font-size: 16px;
    line-height: 1.4;
}

/* Footer Bottom */
.footer-divider {
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    margin: 30px 0;
}

.copyright-section {
    text-align: center;
}

.copyright-text {
    color: rgba(255, 255, 255, 0.7);
    margin: 0;
    font-size: 15px;
}

.footer-badges {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
}

.badge-item {
    background: var(--primary_color);
    color: var(--white_color);
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 600;
    transition: var(--transition);
}

    .badge-item:hover {
        background: var(--accent_color);
        transform: translateY(-2px);
    }

/* Responsive Footer */
@media (max-width: 768px) {
    .footer_sec {
        padding: 40px 0 20px;
    }

    .footer-logo-section {
        margin-bottom: 30px;
    }

    .newsletter-section {
    }

    .newsletter-form {
        max-width: 100%;
    }


    .footer-section {
        margin-bottom: 30px;
    }


    .contact-item {
    }

    .footer-badges {
    }
}

@media (max-width: 576px) {
    .newsletter-form {
        gap: 15px;
    }

    .newsletter-input {
        width: 100%;
    }


    .footer-badges {
        gap: 10px;
    }

    .badge-item {
        padding: 6px 12px;
        font-size: 12px;
    }

    .step_item::after {
        display: none;
    }

    .process_steps {
        gap: 15px;
    }
}

/* End Service Details Page Styles */

/*------------------------*/
/*----Services Page Header----*/
/*------------------------*/
.services_page_header {
    padding: 150px 0 30px;
    position: relative;
    background: linear-gradient(135deg, var(--bg_primary) 0%, var(--accent_color) 100%);
    overflow: hidden;
    display: flex;
    align-items: center;
}


    .services_page_header .container {
        position: relative;
        z-index: 2;
    }

/* Breadcrumb Styles */
.services_breadcrumb {
    margin-bottom: 40px;
}

.breadcrumb_list {
    display: flex;
    align-items: center;
    justify-content: center;
    list-style: none;
    padding: 15px 25px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    margin: 0 auto;
    width: fit-content;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

.breadcrumb_item {
    display: flex;
    align-items: center;
}

.breadcrumb_link {
    color: var(--white_color);
    text-decoration: none;
    font-size: 16px;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: var(--transition);
    padding: 5px 10px;
    border-radius: 25px;
}

    .breadcrumb_link:hover {
        color: var(--bg_primary);
        background: rgba(255, 255, 255, 0.1);
        text-decoration: none;
    }

.breadcrumb_separator {
    margin: 0 15px;
    color: var(--bg_primary);
    font-size: 14px;
}

.breadcrumb_current {
    color: var(--bg_primary);
    font-weight: 600;
    font-size: 16px;
}

/* Services Title Section */
.services_title_section {
    color: var(--white_color);
}

.services_icon_wrapper {
    margin-bottom: 30px;
    position: relative;
    display: inline-block;
}

.services_icon_bg {
    width: 120px;
    height: 120px;
    /* background: linear-gradient(45deg, var(--bg_primary), var(--white_color)); */
    background: var(--white_color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    position: relative;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
    animation: float 3s ease-in-out infinite;
}

    .services_icon_bg::before {
        content: "";
        position: absolute;
        top: -10px;
        left: -10px;
        right: -10px;
        bottom: -10px;
        border-radius: 50%;
        z-index: -1;
        animation: rotate 8s linear infinite;
    }

    .services_icon_bg img {
        width: 50%;
        font-size: 50px;
        color: var(--accent_color);
        z-index: 2;
    }

.services_main_title {
    font-size: 40px;
    font-weight: 600;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    line-height: 1.2;
}

.services_subtitle {
    font-size: 25px;
    font-weight: 400;
    opacity: 0.9;
}

.company_highlight {
    color: var(--bg_primary);
    /* font-family: var(--En_font); */
    font-weight: 800;
    text-transform: uppercase;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.services_description {
    font-size: 20px;
    line-height: 1.6;
    opacity: 0.9;
    margin-left: auto;
    margin-right: auto;
}

/* Decorative Elements */
.services_decoration {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}

.decoration_circle {
    position: absolute;
    border-radius: 50%;
    background: linear-gradient(45deg, rgba(233, 248, 244, 0.1), rgba(65, 162, 119, 0.1));
    animation: float 6s ease-in-out infinite;
}

.decoration_circle_1 {
    width: 200px;
    height: 200px;
    top: 10%;
    right: 5%;
    animation-delay: 0s;
}

.decoration_circle_2 {
    width: 150px;
    height: 150px;
    bottom: 20%;
    left: 8%;
    animation-delay: 2s;
}

.decoration_circle_3 {
    width: 100px;
    height: 100px;
    top: 60%;
    right: 15%;
    animation-delay: 4s;
}

/* Animations */
@keyframes float {
    0%, 100% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-20px);
    }
}

@keyframes rotate {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .services_page_header {
        padding: 150px 0 0px;
    }

    .services_main_title {
        font-size: 32px;
    }

    .services_subtitle {
        font-size: 22px;
    }

    .services_description {
        font-size: 18px;
        margin-bottom: 40px;
    }

    .services_icon_bg {
        width: 100px;
        height: 100px;
    }

        .services_icon_bg i {
            font-size: 40px;
        }

    .stat_number {
        font-size: 28px;
    }

    .stat_label {
        font-size: 14px;
    }

    .breadcrumb_list {
        padding: 12px 20px;
        flex-wrap: wrap;
    }

    .breadcrumb_link {
        font-size: 14px;
    }

    .decoration_circle_1 {
        width: 120px;
        height: 120px;
    }

    .decoration_circle_2 {
        width: 100px;
        height: 100px;
    }

    .decoration_circle_3 {
        width: 80px;
        height: 80px;
    }
}

@media (max-width: 576px) {
    .services_main_title {
        font-size: 22px;
    }

    .services_subtitle {
        font-size: 20px;
    }

    .services_description {
        font-size: 16px;
    }

    .stat_item {
        padding: 20px 10px;
    }

    .services_stats .col-6 {
        margin-bottom: 15px;
    }
}

/* Service Details Page Styles */
.services_page_header.servicesdetails {
    padding: 150px 0 30px;
    position: relative;
    background: linear-gradient(135deg, var(--primary_color) 0%, var(--accent_color) 100%);
    overflow: hidden;
    display: flex;
    align-items: center;
}

.service_details_content {
    padding: 60px 0;
    background: linear-gradient(135deg, #f8fffe 0%, #e9f8f4 100%);
}

.service_list {
    list-style: none;
    padding: 0;
    margin: 0;
}

    .service_list li {
        padding: 8px 0;
        display: flex;
        align-items: center;
        gap: 10px;
        font-size: 16px;
        color: var(--accent);
    }

        .service_list li i {
            color: var(--accent_color);
            font-size: 14px;
            width: 16px;
        }

.feature_item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    padding: 20px;
    background: white;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(65, 162, 119, 0.1);
    transition: all 0.3s ease;
    height: 100%;
}

    .feature_item:hover {
        transform: translateY(-5px);
        box-shadow: 0 8px 25px rgba(65, 162, 119, 0.15);
    }

.feature_icon {
    background: linear-gradient(135deg, var(--accent_color), #5cb85c);
    color: white;
    width: 50px;
    height: 50px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    flex-shrink: 0;
}

.feature_content h4 {
    color: var(--accent);
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 8px;
}

.feature_content p {
    color: #666;
    font-size: 14px;
    margin: 0;
    line-height: 1.5;
}

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

.step_item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    padding: 20px;
    background: white;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(65, 162, 119, 0.1);
    position: relative;
}

    .step_item:not(:last-child)::after {
        content: '';
        position: absolute;
        left: 35px;
        bottom: -20px;
        width: 2px;
        height: 20px;
        background: linear-gradient(to bottom, var(--accent_color), transparent);
    }

.step_number {
    background: linear-gradient(135deg, var(--accent_color), #5cb85c);
    color: var(--primary_color);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 18px;
    flex-shrink: 0;
}

.step_content h4 {
    color: var(--accent);
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 8px;
}

.step_content p {
    color: #666;
    font-size: 14px;
    margin: 0;
    line-height: 1.5;
}

.contact_card {
    background: linear-gradient(135deg, var(--accent_color), var(--accent_color));
    color: white;
    border: none;
    position: sticky;
    top: 160px;
}

    .contact_card .overViewTitle {
        color: white;
        margin-bottom: 25px;
    }

.contact_buttons {
    margin-bottom: 25px;
}


.contact_info_sidebar {
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    padding-top: 20px;
}

.info_item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 8px 0;
    color: rgba(255, 255, 255, 0.9);
    font-size: 14px;
}

    .info_item i {
        color: rgba(255, 255, 255, 0.8);
        width: 16px;
    }

.related_services {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.related_service_item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 15px;
    background: white;
    border: 1px solid #e9ecef;
    border-radius: 8px;
    text-decoration: none;
    color: var(--accent);
    transition: all 0.3s ease;
}

    .related_service_item:hover {
        background: var(--bg_primary);
        border-color: var(--accent_color);
        color: var(--accent_color);
        text-decoration: none;
        transform: translateX(-5px);
    }

    .related_service_item i {
        color: var(--accent_color);
        font-size: 16px;
        width: 20px;
    }

    .related_service_item span {
        font-weight: 600;
        font-size: 14px;
    }

/* Responsive Design for Service Details */
@media (max-width: 992px) {
    .service_details_content {
        padding: 40px 0;
    }

    .contact_card {
        position: static;
        margin-top: 30px;
    }

    .feature_item {
        margin-bottom: 20px;
    }
}

@media (max-width: 768px) {
    .feature_item {
        flex-direction: column;
        text-align: center;
        gap: 10px;
    }

    .feature_icon {
        margin: auto;
    }

    .step_item {
        flex-direction: column;
        text-align: center;
        gap: 15px;
        align-items: center;
    }

        .step_item::after {
            display: none;
        }

    .process_steps {
        gap: 15px;
    }
}

/* End Service Details Page Styles */



/* About Us Page Styles */
.about_content {
    background: linear-gradient(135deg, #f8fffe 0%, #e9f8f4 100%);
    overflow: hidden;
}

.about_section {
    padding: 40px 0;
}

.about_image {
    position: relative;
    overflow: hidden;
    border-radius: 20px;
    box-shadow: 0 15px 35px rgba(65, 162, 119, 0.15);
    transition: all 0.4s ease;
}

    .about_image:hover {
        transform: translateY(-10px);
        box-shadow: 0 25px 50px rgba(65, 162, 119, 0.2);
    }

    .about_image img {
        width: 100%;
        height: auto;
        object-fit: cover;
        transition: all 0.4s ease;
    }

    .about_image:hover img {
        transform: scale(1.05);
    }




.overlay_icon {
    background: white;
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    color: var(--accent_color);
    transform: scale(0.8);
    transition: all 0.4s ease;
}



.about_content_text {
    padding: 20px 0;
}

.about_title {
    font-size: 36px;
    font-weight: 700;
    color: var(--accent);
    margin-bottom: 25px;
    position: relative;
}

    .about_title::after {
        content: '';
        position: absolute;
        bottom: -10px;
        right: 0;
        width: 60px;
        height: 4px;
        background: linear-gradient(135deg, var(--accent_color), #5cb85c);
        border-radius: 2px;
    }

    .about_title.why::after {
        content: '';
        position: absolute;
        bottom: -10px;
        right: 50%;
        transform: translateX(50%);
        width: 60px;
        height: 4px;
        background: linear-gradient(135deg, var(--accent_color), #5cb85c);
        border-radius: 2px;
    }

.about_description {
    font-size: 18px;
    line-height: 1.8;
    color: #666;
    margin-bottom: 20px;
    
}

.about_features {
    margin-top: 30px;
}

.feature_point {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
    padding: 15px 20px;
    background: white;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(65, 162, 119, 0.1);
    transition: all 0.3s ease;
}

    .feature_point:hover {
        transform: translateX(-10px);
        box-shadow: 0 8px 25px rgba(65, 162, 119, 0.15);
    }

    .feature_point i {
        color: var(--accent_color);
        font-size: 18px;
        flex-shrink: 0;
    }

    .feature_point span {
        font-size: 16px;
        font-weight: 600;
        color: var(--accent);
    }

.contact_cta {
    margin-top: 30px;
}

    .contact_cta .btn {
        padding: 15px 30px;
        font-size: 16px;
        font-weight: 600;
        border-radius: 12px;
        transition: all 0.3s ease;
    }

        .contact_cta .btn:hover {
            transform: translateY(-3px);
            box-shadow: 0 8px 25px rgba(65, 162, 119, 0.3);
        }

/* Responsive Design for About Page */
@media (max-width: 992px) {


    .about_section {
        padding: 30px 20px;
    }

    .about_title {
        font-size: 28px;
        text-align: center;
    }

        .about_title::after {
            right: 50%;
            transform: translateX(50%);
        }

    .about_description {
        text-align: center;
        font-size: 16px;
    }
}

@media (max-width: 768px) {

    .about_title {
        font-size: 24px;
    }

    .about_description {
        font-size: 15px;
    }

    .feature_point {
        flex-direction: column;
        text-align: center;
        gap: 10px;
    }

    .overlay_icon {
        width: 60px;
        height: 60px;
        font-size: 24px;
    }
}

/* Stats Section Styles */
.stats_card {
    background: white;
    padding: 30px 20px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 8px 25px rgba(65, 162, 119, 0.1);
    transition: all 0.4s ease;
    height: 100%;
    border: 2px solid transparent;
}

    .stats_card:hover {
        transform: translateY(-10px);
        box-shadow: 0 15px 40px rgba(65, 162, 119, 0.2);
        border-color: var(--accent_color);
    }

.stats_icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--accent_color), #5cb85c);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    transition: all 0.4s ease;
}

.stats_card:hover .stats_icon {
    transform: scale(1.1);
}

.stats_icon i {
    font-size: 28px;
    color: white;
}

.stats_number {
    font-size: 30px;
    font-weight: 700;
    color: var(--accent_color);
    margin-bottom: 10px;
    font-family: 'Nunito Sans', sans-serif;
}

.stats_label {
    font-size: 16px;
    font-weight: 600;
    color: #666;
    margin: 0;
}

@media (max-width: 768px) {
    .stats_card {
        padding: 25px 15px;
        margin-bottom: 20px;
    }

    .stats_icon {
        width: 60px;
        height: 60px;
    }

        .stats_icon i {
            font-size: 24px;
        }

    .stats_number {
        font-size: 28px;
    }

    .stats_label {
        font-size: 14px;
    }
}

/* End About Us Page Styles */




/* Blogs Page Styles */
.blogs_content {
    padding: 40px 0;
    background: linear-gradient(135deg, #f8fffe 0%, #e9f8f4 100%);
    overflow: hidden;
}

.blog_card {
    /* background: var(); */
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(65, 162, 119, 0.1);
    transition: all 0.4s ease;
}

    .blog_card:hover {
        box-shadow: 0 20px 40px rgba(65, 162, 119, 0.15);
    }
.blog_image {
    position: relative;
    overflow: hidden;
    height: 220px;
    width: 100%;
    border-radius: 10px;
}

    .blog_image img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: all 0.4s ease;
    }

.blog_card:hover .blog_image img {
    transform: scale(1.1);
}

.blog_date {
    position: absolute;
    top: 15px;
    right: 15px;
    background: linear-gradient(135deg, var(--accent_color), #5cb85c);
    color: white;
    padding: 10px 15px;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 4px 15px rgba(65, 162, 119, 0.3);
}

.date_day {
    display: block;
    font-size: 18px;
    font-weight: 700;
    line-height: 1;
}

.date_month {
    display: block;
    font-size: 12px;
    font-weight: 500;
    margin-top: 2px;
}

.blog_content{
    padding: 20px 20px 0;
}


.blog_meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
    flex-wrap: wrap;
    gap: 10px;
}

.blog_category,
.blog_author {
    font-size: 13px;
    color: #666;
    display: flex;
    align-items: center;
    gap: 5px;
}

    .blog_category i,
    .blog_author i {
        color: var(--primary_color);
    }

.blog_title {
    margin-bottom: 15px;
}

.blog_link {
    color: var(--accent);
    text-decoration: none;
    font-size: 18px;
    font-weight: 600;
    line-height: 1.4;
    transition: all 0.3s ease;
    display: block;
}

    .blog_link:hover {
        color: var(--primary_color);
        text-decoration: none;
    }

.blog_excerpt {
    color: #666;
    font-size: 15px;
    line-height: 1.6;
    margin-bottom: 20px;
    
}

.blog_footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid #f0f0f0;
    padding-top: 15px;
}

.read_more_btn {
    color: var(--primary_color);
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
}

    .read_more_btn:hover {
        color: var(--accent);
        text-decoration: none;
        transform: translateX(-5px);
    }

    .read_more_btn i {
        font-size: 12px;
        transition: all 0.3s ease;
    }

    .read_more_btn:hover i {
        transform: translateX(-3px);
    }

.blog_stats {
    display: flex;
    align-items: center;
    gap: 15px;
}

.blog_views {
    color: #999;
    font-size: 13px;
    display: flex;
    align-items: center;
    gap: 5px;
}

    .blog_views i {
        color: var(--primary_color);
    }

/* Pagination Styles */
.blog_pagination {
    margin-top: 50px;
}

    .blog_pagination .pagination {
        border: none;
    }

    .blog_pagination .page-link {
        border: 2px solid #e9ecef;
        color: var(--accent);
        padding: 12px 18px;
        margin: 0 5px;
        border-radius: 12px;
        font-weight: 600;
        transition: all 0.3s ease;
    }

        .blog_pagination .page-link:hover {
            background: var(--primary_color);
            border-color: var(--primary_color);
            color: white;
            transform: translateY(-2px);
        }

    .blog_pagination .page-item.active .page-link {
        background: var(--primary_color);
        border-color: var(--primary_color);
        color: white;
    }

    .blog_pagination .page-item.disabled .page-link {
        background: #f8f9fa;
        border-color: #e9ecef;
        color: #6c757d;
    }

/* Responsive Design for Blogs */
@media (max-width: 992px) {
    .blogs_content {
        padding: 40px 10px;
    }

    .blog_image {
        height: 200px;
    }

    .blog_content {
        padding: 20px;
    }

    .blog_link {
        font-size: 16px;
    }
}

@media (max-width: 768px) {
    .blogs_content {
        padding: 30px 10px;
    }

    .blog_image {
        height: 180px;
    }

    .blog_content {
        padding: 15px;
    }

    .blog_meta {
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
    }

    .blog_link {
        font-size: 15px;
    }

    .blog_excerpt {
        font-size: 14px;
    }

    .blog_footer {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }

    .date_day {
        font-size: 16px;
    }

    .date_month {
        font-size: 11px;
    }
}

/* End Blogs Page Styles */


/* Blog Article Details Styles */
.blog_article_content {
    padding: 60px 20px;
    background: #f8f9fa;
    overflow: hidden;
}

.blog_article {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    margin-bottom: 30px;
}

.article_header {
    padding: 30px;
    border-bottom: 1px solid #eee;
}

.article_meta {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    align-items: center;
}

.meta_item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    color: #666;
}

    .meta_item i {
        color: var(--primary_color);
    }

.article_image {
    width: 100%;
    height: 300px;
    overflow: hidden;
}

    .article_image img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

.article_content {
    padding: 40px;
}

.content_section {
    margin-bottom: 40px;
}

.lead_paragraph {
    font-size: 18px;
    font-weight: 500;
    line-height: 1.8;
    color: var(--accent_color);
    margin-bottom: 30px;
    padding: 20px;
    background: var(--bg_primary);
    border-radius: 10px;
    border-right: 4px solid var(--primary_color);
}

.section_title {
    font-size: 24px;
    font-weight: 700;
    color: var(--accent_color);
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 10px;
}

    .section_title::after {
        content: '';
        position: absolute;
        bottom: 0;
        right: 0;
        width: 50px;
        height: 3px;
        background: var(--primary_color);
        border-radius: 2px;
    }

.highlight_box {
    background: linear-gradient(135deg, #fff3cd, #ffeaa7);
    border: 1px solid #ffc107;
    border-radius: 10px;
    padding: 20px;
    margin: 20px 0;
    display: flex;
    align-items: flex-start;
    gap: 15px;
}

    .highlight_box i {
        color: #856404;
        font-size: 20px;
        margin-top: 2px;
    }

    .highlight_box p {
        margin: 0;
        color: #856404;
    }

.custom_list {
    list-style: none;
    padding: 0;
}

    .custom_list li {
        display: flex;
        align-items: flex-start;
        gap: 12px;
        margin-bottom: 15px;
        padding: 10px;
        background: #f8f9fa;
        border-radius: 8px;
        transition: background 0.3s ease;
    }

        .custom_list li:hover {
            background: var(--bg_primary);
        }

        .custom_list li i {
            color: var(--primary_color);
            margin-top: 2px;
            font-size: 16px;
        }

.reasons_grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin-top: 30px;
}

.reason_card {
    background: white;
    border: 2px solid #eee;
    border-radius: 15px;
    padding: 25px;
    text-align: center;
    transition: all 0.3s ease;
}

    .reason_card:hover {
        border-color: var(--primary_color);
        transform: translateY(-5px);
        box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    }

.reason_icon {
    width: 60px;
    height: 60px;
    background: var(--bg_primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
}

    .reason_icon i {
        font-size: 24px;
        color: var(--primary_color);
    }

.reason_card h3 {
    font-size: 18px;
    font-weight: 600;
    color: var(--accent_color);
    margin-bottom: 10px;
}

.reason_card p {
    color: #666;
    font-size: 14px;
    margin: 0;
}

.steps_container {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-top: 30px;
}

/* .step_item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    padding: 25px;
    background: white;
    border-radius: 15px;
    border: 2px solid #eee;
    transition: all 0.3s ease;
} */

/* .step_item:hover {
    border-color: var(--primary_color);
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
} */

.step_number {
    width: 50px;
    height: 50px;
    background: var(--primary_color);
    color: var(--primary_color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    font-weight: 700;
    flex-shrink: 0;
}

.step_content h4 {
    font-size: 18px;
    font-weight: 600;
    color: var(--accent_color);
    margin-bottom: 8px;
}

.step_content p {
    color: #666;
    margin: 0;
}

.tips_list {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-top: 20px;
}

.tip_item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    padding: 20px;
    background: white;
    border-radius: 10px;
    border-right: 4px solid var(--primary_color);
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

    .tip_item i {
        color: var(--primary_color);
        margin-top: 2px;
    }

.conclusion_box {
    background: linear-gradient(135deg, var(--bg_primary), #e3f2fd);
    border: 2px solid var(--primary_color);
    border-radius: 15px;
    padding: 30px;
    text-align: center;
    margin-top: 40px;
}

    .conclusion_box h3 {
        color: var(--accent_color);
        font-size: 22px;
        margin-bottom: 20px;
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 10px;
    }

        .conclusion_box h3 i {
            color: var(--primary_color);
        }

.cta_section {
    margin-top: 25px;
    padding-top: 25px;
    border-top: 1px solid rgba(65, 162, 119, 0.3);
}

.cta_button {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--primary_color);
    color: white;
    padding: 15px 30px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    margin-top: 15px;
}

    .cta_button:hover {
        background: var(--accent_color);
        color: white;
        text-decoration: none;
        transform: translateY(-2px);
    }

.article_tags {
    margin-top: 40px;
    padding-top: 30px;
    border-top: 2px solid #eee;
}

    .article_tags h4 {
        font-size: 16px;
        font-weight: 600;
        color: var(--accent_color);
        margin-bottom: 15px;
    }

.tags_list {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.tag {
    background: var(--bg_primary);
    color: var(--primary_color);
    padding: 8px 15px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 500;
    transition: all 0.3s ease;
}

    .tag:hover {
        background: var(--primary_color);
        color: white;
    }

.social_share {
    margin-top: 30px;
    padding-top: 30px;
    border-top: 2px solid #eee;
    text-align: center;
}

    .social_share h4 {
        font-size: 16px;
        font-weight: 600;
        color: var(--accent_color);
        margin-bottom: 20px;
    }

.share_buttons {
    display: flex;
    justify-content: center;
    gap: 15px;
}

.share_btn {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
}

    .share_btn:hover {
        transform: translateY(-3px);
        color: white;
        text-decoration: none;
    }

    .share_btn.facebook {
        background: #3b5998;
    }

    .share_btn.twitter {
        background: #1da1f2;
    }

    .share_btn.whatsapp {
        background: #25d366;
    }

    .share_btn.linkedin {
        background: #0077b5;
    }

/* Blog Sidebar Styles */
.blog_sidebar {
    padding-right: 30px;
}

.sidebar_widget {
    background: white;
    border-radius: 15px;
    padding: 30px;
    margin-bottom: 30px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

.widget_title {
    font-size: 20px;
    font-weight: 700;
    color: var(--accent_color);
    margin-bottom: 25px;
    padding-bottom: 15px;
    border-bottom: 2px solid var(--primary_color);
}

.author_info {
    display: flex;
    align-items: center;
    gap: 20px;
}

.author_avatar {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    overflow: hidden;
    flex-shrink: 0;
}

    .author_avatar img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

.author_details h4 {
    font-size: 18px;
    font-weight: 600;
    color: var(--accent_color);
    margin-bottom: 8px;
}

.author_details p {
    color: #666;
    font-size: 14px;
    margin: 0;
}

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

.related_article {
    display: flex;
    gap: 15px;
    padding-bottom: 20px;
    border-bottom: 1px solid #eee;
}

    .related_article:last-child {
        border-bottom: none;
        padding-bottom: 0;
    }

.article_thumb {
    width: 80px;
    height: 60px;
    border-radius: 8px;
    overflow: hidden;
    flex-shrink: 0;
}

    .article_thumb img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

.article_info h5 {
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 5px;
    line-height: 1.4;
}

    .article_info h5 a {
        color: var(--accent_color);
        text-decoration: none;
        transition: color 0.3s ease;
    }

        .article_info h5 a:hover {
            color: var(--primary_color);
        }

.article_date {
    font-size: 12px;
    color: #666;
}

.contact_widget {
    background: linear-gradient(135deg, var(--bg_primary), #e3f2fd);
    border: 2px solid var(--primary_color);
}

.contact_info p {
    color: #666;
    margin-bottom: 20px;
}

.contact_item {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 15px;
    color: var(--accent_color);
    font-weight: 500;
}

    .contact_item i {
        color: var(--primary_color);
    }

.contact_btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--primary_color);
    color: white;
    padding: 12px 25px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    margin-top: 15px;
}

    .contact_btn:hover {
        background: var(--accent_color);
        color: white;
        text-decoration: none;
        transform: translateY(-2px);
    }

/* Responsive Design for Blog Details */
@media (max-width: 991px) {
    .blog_sidebar {
        padding-right: 0;
        margin-top: 40px;
    }

    .article_content {
        padding: 30px 20px;
    }

    .reasons_grid {
        grid-template-columns: 1fr;
    }

    .author_info {
        flex-direction: column;
        text-align: center;
    }
}

@media (max-width: 767px) {
    .article_meta {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }

    .share_buttons {
        flex-wrap: wrap;
    }


    .tip_item {
        flex-direction: column;
        text-align: center;
    }
}

/* End Blog Article Details Styles */


.blog_contect_det p, .blog_contect_det span {
    font-size: 16px;
    font-weight: 500;
    line-height: 32px;
    transition: var(--transition);
    letter-spacing: 0px;
    color: var(--dark_color);
}

.blog_contect_det span {
    color: var(--primary_color);
}

.blog_contect_det h1,
.blog_contect_det h2,
.blog_contect_det h3,
.blog_contect_det h4,
.blog_contect_det h5,
.blog_contect_det h6 {
    margin-bottom: 15px;
    line-height: 20px;
    font-size: 22px;
    transition: var(--transition);
    font-weight: 600;
    text-transform: capitalize;
    letter-spacing: 0px;
    color: var(--primary_color);
}

.blog_contect_det img {
    max-width: 100%;
    border-radius: 10px;
    width: 100%;
    margin: 10px 0;
}

.blog_contect_det a {
    font-size: 15px;
    font-weight: 400;
    /* line-height: 32px; */
    letter-spacing: 0px;
    color: var(--primary_color);
    transition: var(--transition);
    margin-bottom: 10px;
    display: inline-block;
}

    .blog_contect_det a:hover {
        color: var(--accent_color);
    }




.policy_sec {
    position: relative;
    padding: 180px 0 30px;
    background: var(--white_color);
}

.policy_content {
    padding: 15px;
    border: 1px solid #f7fafd;
    border-radius: 15px;
    background: var(--accent_color);
}

/* Policy Page Styles */
.policy_sec {
    background: var(--bg_primary);
    min-height: 100vh;
}

.policy_content {
    background: var(--white_color);
    border-radius: 20px;
    padding: 3rem;
    box-shadow: 0 10px 30px rgba(38, 96, 99, 0.1);
    margin: 2rem 0;
    border: 1px solid var(--accent_color);
}

    .policy_content #logo {
        display: block;
        text-align: center;
        margin-bottom: 2rem;
        padding: 1rem;
        border-radius: 15px;
        background: var(--bg_primary);
    }

    .policy_content h1 {
        color: var(--primary-color);
        font-size: 2.5rem;
        font-weight: 700;
        text-align: center;
        margin-bottom: 2rem;
        position: relative;
    }

        .policy_content h1::after {
            content: '';
            position: absolute;
            bottom: -10px;
            left: 50%;
            transform: translateX(-50%);
            width: 80px;
            height: 4px;
            background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
            border-radius: 2px;
        }

    .policy_content h3 {
        color: var(--primary-color);
        font-size: 1.4rem;
        font-weight: 500;
        margin-top: 2rem;
        margin-bottom: 1rem;
        padding: 0.5rem 0;
        border-right: 4px solid var(--secondary-color);
        padding-right: 1rem;
    }

    .policy_content p {
        color: var(--text-color);
        font-size: 1.1rem;
        line-height: 1.8;
        margin-bottom: 1.5rem;
    }

    .policy_content ul {
        margin: 1rem 0 1.5rem 0;
    }

    .policy_content li {
        color: var(--text-color);
        font-size: 1rem;
        line-height: 1.7;
        margin-bottom: 0.8rem;
        padding-right: 1.5rem;
        position: relative;
    }

        .policy_content li::before {
            content: '•';
            color: var(--secondary-color);
            font-weight: bold;
            font-size: 1.2rem;
            position: absolute;
            right: 0;
            top: 0;
        }

    .policy_content strong {
        color: var(--primary-color);
        font-weight: 700;
    }

    .policy_content a {
        color: var(--secondary-color);
        font-weight: 500;
        transition: var(--transition);
        text-decoration: underline !important;
    }

        .policy_content a:hover {
            color: var(--primary-color);
            text-decoration: none !important;
        }

/* Responsive Design */
@media (max-width: 768px) {
    .policy_content {
        padding: 2rem 1.5rem;
        margin: 1rem 0;
    }

        .policy_content h1 {
            font-size: 2rem;
        }

        .policy_content h3 {
            font-size: 1.2rem;
        }

        .policy_content p,
        .policy_content li {
            font-size: 1rem;
        }
}

@media (max-width: 480px) {
    .policy_content {
        padding: 1.5rem 1rem;
    }

        .policy_content h1 {
            font-size: 1.8rem;
        }

        .policy_content h3 {
            font-size: 1.1rem;
        }
}






.ModalVid_about .modal-content {
    background: transparent !important;
    border: 0 !important;
}

.ModalVid_about .modal-header {
    border: 0 !important;
    padding: 0;
}

.close.close_modal {
    background: var(--primary_color);
    color: var(--white_color);
    padding: 10px;
    box-shadow: none !important;
    border-radius: 10px 10px 0 10px;
    opacity: 1;
    margin: 0 0 0 auto;
}

.ModalVid_about .modal-body {
    padding: 0;
}

.ModalVid_about video {
    border-radius: 10px 0 10px 10px;
}

.modal-backdrop {
    background: #ffffff;
    opacity: 0.9 !important;
}


.faq_section {
    position: relative;
    padding: 180px 0 30px;
    background: var(--bg_primary);
    text-align: right;
}

.faqAccordion .card {
    padding: 15px;
    margin-bottom: 13px;
    border-radius: 10px !important;
    border: 1px solid var(--primary_color) !important;
}

    .faqAccordion .card:hover {
        transform: none;
        border-color: var(--accent_color);
        background: var(--white_color);
    }

    .faqAccordion .card .card-header {
        border: 0;
        background: transparent;
        padding: 0 !important;
    }

    .faqAccordion .card button {
        box-shadow: none !important;
        text-decoration: none !important;
        font-size: 16px;
        font-weight: 500;
        color: var(--accent_color);
        transition: var(--transition);
        border-radius: 0;
    }

        .faqAccordion .card button:not(.collapsed) {
            color: var(--primary_color);
            padding-bottom: 15px;
            margin-bottom: 15px;
            border-bottom: 1px solid var(--primary_color);
        }

    .faqAccordion .card .card-body {
        padding: 0;
        font-size: 16px;
        font-weight: 500;
        color: var(--dark_color);
    }






/* pricing Section Styles */
.pricing_section {
    padding: 80px 20px;
    background: var(--bg_primary);
    overflow: hidden;
}

.pricing_title {
    font-size: 36px;
    font-weight: 700;
    color: var(--accent_color);
    margin-bottom: 15px;
}

.pricing_description {
    font-size: 18px;
    color: #666;
    margin-bottom: 50px;
}

.pricing_card {
    background: white;
    border-radius: 20px;
    box-shadow: 0 0 15px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    height: 100%;
    padding: 30px;
}

    .pricing_card:hover {
        transform: translateY(-10px);
        box-shadow: 0 0 20px rgba(0,0,0,0.15);
    }

.pricing_header {
    text-align: center;
    margin-bottom: 25px;
}

.pricing_name {
    font-size: 24px;
    font-weight: 700;
    color: var(--accent_color);
    margin-bottom: 15px;
}

.pricing_body p {
    font-size: 16px;
    color: #666;
    line-height: 1.6;
    margin-bottom: 25px;
    text-align: center;
}

.pricing_list {
    list-style: none;
    padding: 0;
    margin-bottom: 30px;
}

    .pricing_list li {
        display: flex;
        align-items: center;
        gap: 12px;
        margin-bottom: 12px;
        font-size: 15px;
        color: #555;
    }

        .pricing_list li i {
            color: var(--primary_color);
            font-size: 16px;
        }

.pricing_icon {
    width: 80px;
    height: 80px;
    background: var(--bg_primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    transition: all 0.3s ease;
}

.pricing_card:hover .pricing_icon {
    background: var(--primary_color);
    transform: scale(1.1);
}

.pricing_icon i {
    font-size: 32px;
    color: var(--primary_color);
    transition: color 0.3s ease;
}

.pricing_card:hover .pricing_icon i {
    color: white;
}

/* Responsive Design */
@media (max-width: 991px) {
    .pricing_card {
        margin-bottom: 30px;
    }
}

@media (max-width: 767px) {
    .pricing_title {
        font-size: 28px;
    }

    .pricing_description {
        font-size: 16px;
    }

    .pricing_section {
        padding: 60px 10px;
    }

    .pricing_header {
        padding: 20px 15px 15px;
    }

    .pricing_body {
        padding: 15px;
    }

    .pricing_list {
        text-align: right;
    }

    .pricing_card {
        padding: 10px;
    }
}