/* global css */
:root {
    --main_color: #1C995E;
    --secondary_color: #e1e1e159;
    --blur_color: #E6F8F9;
    --font_color: #001630;
    --hover_font: white;
    --line_height: 30px;
    --text-dark: #1f2937;
    --text-light: #6b7280;
    --red_color: #ff6b6b;
}

.bg-primary-green {
    background-color: var(--main_color) !important;
}

.text-primary-green {
    color: var(--main_color) !important;
}

.btn-primary-green {
    background-color: var(--main_color);
    border-color: var(--main_color);
    color: white;
}

.btn-primary-green:hover {
    background-color: var(--main_color);
    border-color: var(--main_color);
    color: white;
}

.btn-outline-primary-green {
    color: var(--main_color);
    border-color: var(--main_color);
}

.btn-outline-primary-green:hover {
    background-color: var(--main_color);
    border-color: var(--main_color);
    color: white;
}

.border-primary-green {
    border-color: var(--main_color) !important;
}

.text_color {
    color: var(--main_color);
}

.border_color {
    border: 1px solid var(--main_color);
}

.section_background2 {
    background-color: var(--secondary_color);
}

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

.sub_heading {
    font-family: Arial, Helvetica, sans-serif;
    font-weight: 700;
    font-size: 1.9rem;
    text-align: center;
}

.border-image {
    border-radius: 10px;
}

body {
    font-family: 'Poppins', sans-serif;
    background-color: #f8f9fa;
}

.custom_button {
    background-color: var(--secondary_color);
    color: var(--font_color);
    border-radius: 19px;
    width: auto;
    text-align: center;
}

.custom_button:hover {
    background-color: var(--main_color);
    color: var(--blur_color);
    transition: all 0.3s ease-in-out;
}

.btn_border {
    border: 1px solid var(--main_color);
    color: var(--main_color);
    border-radius: 19px;
    width: auto;
    text-align: center;
}

.btn_border:hover {
    border: 1px solid var(--secondary_color);
    border-radius: 19px;
    background-color: var(--main_color);
    color: var(--hover_font);
    transition: all 0.3s ease-in-out;
}

.btn_border.active {
    border: 1px solid var(--main_color);
    border-radius: 19px;
    background-color: var(--main_color);
    color: var(--hover_font);
    transition: all 0.3s ease-in-out;
}

.btn_border2 {
    border: 1px solid var(--main_color);
    color: var(--font_color);
    width: auto;
    text-align: center;
}

.btn_border2:hover {
    border: 1px solid var(--main_color);
    background-color: var(--main_color);
    color: var(--hover_font);
    transition: all 0.3s ease-in-out;
}

.btn_border2.active {
    border: 1px solid var(--main_color);
    background-color: var(--main_color);
    color: var(--hover_font);
    transition: all 0.3s ease-in-out;
}

/* end */

/* nav bar */


/* home page */
.home_header_section {
    /* background-image: url('../images/home.png'); */
    background-size: cover;
    background-position: center;
    position: relative;
    color: white;
    margin-top: -9rem;
}

.overlay {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    /* background-color: rgba(0, 28, 79, 0.85); */
    background-color: rgb(0 79 4 / 75%);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
}

.form-box {
    background-color: rgba(0, 0, 0, 0.75);
    padding: 30px;
    border-radius: 10px;
    margin-top: 15rem;
    margin-bottom: 1rem;
}

.badge-icon {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    margin-right: 15px;
}

.left-side-content {
    margin-top: 18rem;
}

.form-group textarea {
    resize: none;
    height: 80px;
    border-radius: 10px;
}

.file-upload {
    border: 2px dashed #ccc;
    padding: 20px;
    text-align: center;
    margin-bottom: 15px;
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.05);
    color: white;
    width: 97%;
}

.pricing_card {
    color: #fff;
    border-radius: 1rem;
    padding: 2rem;
    background: linear-gradient(to bottom right, var(--main_color), var(--font_color));
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    cursor: pointer;
}

.pricing_card h2 {
    font-size: 2rem;
    font-weight: 600;
}

.price {
    font-size: 1.5rem;
    font-weight: bold;
}

.feature-list {
    list-style: none;
    padding-left: 0;
}

.feature-list li {
    margin-bottom: 0.5rem;
    position: relative;
    padding-left: 1.6rem;
}

.feature-list li::before {
    content: "✔";
    position: absolute;
    left: 0;
    color: var(--blur_color);
    font-weight: bold;
}

.language_image_icon {
    height: 100px;
    padding-top: 20px;
    cursor: pointer;
}

.language_service_card {
    border-radius: 1rem;
    border: 1px solid var(--main_color);
}

.language_service_card:hover {
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
    cursor: pointer;
}

.subscription_card {
    border-radius: 1rem;
    border: 1px solid var(--main_color);
    background: linear-gradient(to bottom right, var(--main_color), var(--font_color));
    color: var(--hover_font);
}

.review_card {
    border-radius: 1rem;
    border: 1px solid var(--main_color);
}

/* end home page */

/* services page */
.service_order_demo {
    background-color: var(--secondary_color);
}

.site_title {
    font-family: Arial, Helvetica, sans-serif;
    font-weight: 700;
    font-size: 2rem;
    text-transform: uppercase;
}

.service-card {
    position: relative;
    overflow: hidden;
    border-radius: 1rem;
}

.service-card:hover {
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
    cursor: pointer;
}

.service-card:hover .plus-circle {
    background-color: var(--secondary_color);
}

.service-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 1rem;
}

.plus-circle {
    position: absolute;
    top: 10px;
    left: 10px;
    width: 40px;
    height: 40px;
    background-color: var(--main_color);
    color: var(--font_color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    z-index: 10;
}

.service-label {
    position: absolute;
    bottom: 10px;
    left: 10px;
    right: 10px;
    background-color: rgba(255, 255, 255, 0.9);
    padding: 5px 10px;
    border-radius: 1rem;
    font-weight: 600;
    text-align: center;
}

.content-selection {
    display: none;
}

.content-selection.active {
    display: block;
}

.step-header {
    position: relative;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 40px;
}

.step-circle {
    position: relative;
    z-index: 1;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: #dee2e6;
    text-align: center;
    line-height: 40px;
    font-weight: bold;
    border: 1px solid var(--main_color);
    transition: background-color 0.3s, border-color 0.3s, color 0.3s;
}

.step-circle.active {
    background-color: var(--main_color);
    color: var(--hover_font);
    border-color: var(--main_color);
}

.step-header::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    height: 4px;
    background-color: var(--main_color);
    z-index: 0;
    transform: translateY(-50%);
}

.step-content {
    display: none;
}

.step-content.active {
    display: block;
}

.next_btn {
    background-color: var(--main_color);
    color: var(--hover_font);
    width: 10rem;
}

.next_btn:hover {
    border: 1px solid var(--main_color);
    color: var(--font_color);
}

.back_btn {
    background-color: var(--font_color);
    color: var(--blur_color);
    width: 10rem;
}

.back_btn:hover {
    border: 1px solid var(--main_color);
    color: var(--font_color);
}

.card-option {
    border: 1px solid var(--main_color);
    border-radius: 8px;
    padding: 5px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: center;
    font-size: 11px;
}

.card-option:hover {
    background-color: var(--main_color);
    color: var(--hover_font);
}

.card-option.selected {
    border: 1px solid var(--main_color);
    background-color: var(--main_color);
    color: var(--hover_font);
}

/* .card-icon {
  font-size: 2rem;
  color: #007bff;
  margin-bottom: 1rem;
}
.card-link {
  text-decoration: none;
  font-weight: 500;
  color: #007bff;
}
.card-link:hover {
  text-decoration: underline;
} */
.section-title {
    font-size: 1.8rem;
    font-weight: bold;
    text-align: center;
    margin-bottom: 2rem;
}

.section-title .highlight {
    color: var(--main_color);
}

.feature-icon {
    color: var(--main_color);
    font-size: 1.5rem;
    margin-right: 10px;
}

.feature-box {
    padding: 20px;
    border: 1px solid var(--main_color);
    border-radius: 1rem;
}

.feature-title {
    font-weight: 600;
    font-size: 1.1rem;
}

.contact_us_section {
    color: #fff;
    padding: 2rem;
    background: linear-gradient(to bottom right, var(--main_color), var(--font_color));
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    cursor: pointer;
}

.main-service-image {
    color: #fff;
    padding: 2rem;
    background: linear-gradient(to bottom right, var(--main_color), var(--font_color));
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    cursor: pointer;
    border-radius: 10px;
}

.main-service-card {
    border: 1px solid var(--main_color);
    border-radius: 11px;
}

/* .main-service-card:hover{
  background: linear-gradient(to bottom right, var(--main_color), var(--font_color));
} */
.sub-service-paragraph {
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 4;
    /* number of lines to show */
    line-clamp: 4;
    -webkit-box-orient: vertical;
}

.left-card {
    background-image: url('/frontend/assets/images/img-bg.jpg');
    background-size: cover;
    background-position: center;
    position: relative;
    color: white;
    overflow: hidden;
}

.left-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.6));
    z-index: 1;
}

.left-card>* {
    position: relative;
    z-index: 2;
}

.badge-card {
    background-color: white;
    color: #333;
    border-radius: 9999px;
    padding: 0.5rem 1.25rem;
    font-size: 0.875rem;
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.badge-24hr {
    position: absolute;
    bottom: 2rem;
    left: 2rem;
    background-color: rgba(0, 0, 0, 0.7);
    color: white;
    border-radius: 9999px;
    padding: 0.5rem 1.25rem;
    font-size: 0.875rem;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
}

.right-card {
    background-color: white;
    border: 1px solid #e2e8f0;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
}

.reputable-item {
    padding: 1.5rem;
    border: 1px solid #e2e8f0;
    border-radius: 1rem;
    background-color: #fafafa;
}

.reputable-item:hover {
    background: var(--main_color);
    color: var(--hover_font);
    cursor: pointer;
}

.reputable-item svg {
    width: 2.5rem;
    height: 2.5rem;
    min-width: 2.5rem;
}

.language_option_select {
    background-image: url('/frontend/assets/images/img-bg.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    /* position: relative; */
    color: white;
    overflow: hidden;
}

.select2-container .select2-selection--single {
    height: 40px !important;
}

.select2-container--default .select2-selection--single .select2-selection__rendered {
    line-height: 40px !important;
}

.select2-container--default .select2-selection--single .select2-selection__arrow {
    display: none !important;
}

/* end main service page */

/* sub service page */
.sub_service_header {
    background-image: url('/frontend/assets/images/service_background.png');
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
}

.sub-service-head1 {
    font-size: 2rem;
    font-weight: 900;
}

.sub-service-left-side-content {
    margin-top: 5rem;
}

.sub-service-image {
    height: 350px;
    max-width: 100%;
    margin-top: 3rem;
    border-radius: 28px;
}

.translate-language-over-country {
    position: relative;
    overflow: hidden;
    background-image: url('/frontend/assets/images/language_service/www.jpg');
    background-repeat: no-repeat;
    background-position: right;
    background-size: 48%;
    z-index: 0;
}

.language-badge {
    border: 1px solid var(--main_color);
}

.language-badge:hover {
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
    transform: translateY(-2px);
    cursor: pointer;
    transition: color 0.2s ease-in-out;
}

.steps {
    position: relative;
    padding-top: 60px;
    padding-bottom: 40px;
}

.steps::before {
    content: "";
    position: absolute;
    top: 30px;
    left: 0;
    right: 0;
    height: 3px;
    background-color: var(--main_color);
    z-index: 1;
}

.step {
    text-align: center;
    position: relative;
    z-index: 2;
}

.step .circle {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: #fff;
    border: 3px solid var(--main_color);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    margin: -48px auto 1rem;
}

.step h5 {
    font-weight: 600;
}

@media (max-width: 767.98px) {
    .steps::before {
        display: none;
    }

    .step .circle {
        width: 40px;
        height: 40px;
        border-radius: 50%;
        background-color: #fff;
        border: 3px solid var(--main_color);
        display: flex;
        align-items: center;
        justify-content: center;
        font-weight: bold;
        margin: 0 auto 1rem;
    }
}

/* end sub service page */


/* pricing page */
.pricing_header {
    /* background-image: url('/assets/images/language_service/pricing_background.jpg'); */
    background-repeat: no-repeat;
    background-size: cover;
    background-position: bottom;
}

.pricing_title {
    margin-top: 3rem;
}

.price_circle {
    font-size: 1.5rem;
    color: #28a745;
}

/* end pricing page */

/* country page */
.country_header {
    background-repeat: no-repeat;
    background-size: cover;
    background-position: bottom;
    position: relative;
    z-index: 0;
}

.country_header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.3);
    z-index: 1;
}

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

.country-card {
    display: flex;
    align-items: center;
    border: 1px solid #eee;
    border-radius: 10px;
    transition: background-color 0.2s ease;
    border: 1px solid var(--main_color);
}

.country-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

.flag-container {
    padding: 1rem;
}

.country-flag {
    width: 80px;
    height: 60px;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.language-name {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--main_color);
    margin-bottom: 0.5rem;
}

.native-name {
    font-size: 0.9rem;
    color: #6c757d;
    font-style: italic;
}

/* end country page */

/* carrier page */
.right-side-image {
    height: auto;
    width: 100%;
    margin-top: 4rem;
}

.job-header-section {
    background: linear-gradient(135deg, var(--main_color) 0%, var(--font_color) 100%);
    color: white;
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.job-header-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="1" fill="white" opacity="0.1"/><circle cx="75" cy="75" r="1" fill="white" opacity="0.1"/><circle cx="50" cy="10" r="1" fill="white" opacity="0.1"/><circle cx="10" cy="60" r="1" fill="white" opacity="0.1"/><circle cx="90" cy="40" r="1" fill="white" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
}

.stat-item {
    text-align: center;
    padding: 20px;
    border: 1px solid var(--main_color);
    border-radius: 10px;
}

.stat-number {
    font-size: 3rem;
    font-weight: 700;
    color: var(--main_color);
    display: block;
}

.job-card {
    border: none;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    margin-bottom: 20px;
}

.job-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.job-badge {
    background: var(--accent-color);
    color: white;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
}

.department-badge {
    background: var(--main_color);
    color: white;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
}

.filter-btn {
    background: #e5e7eb;
    border: none;
    padding: 8px 20px;
    border-radius: 20px;
    margin: 5px;
    transition: all 0.3s ease;
    color: var(--font_color);
}

.filter-btn.active,
.filter-btn:hover {
    background: var(--main_color);
    color: white;
}

.culture-card {
    text-align: center;
    padding: 30px 20px;
    border-radius: 15px;
    background: white;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    height: 100%;
}

.culture-card:hover {
    transform: translateY(-5px);
}

.culture-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--main_color), var(--font_color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    color: white;
    font-size: 2rem;
}

.benifit_icon {
    color: var(--main_color);
}

.job_hero_section {
    background: linear-gradient(135deg, var(--main_color), var(--font_color));
    color: white;
    padding: 4rem 0;
}

.job-meta {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 1rem;
}

.requirement-item {
    border-left: 3px solid var(--main_color);
    padding-left: 1rem;
    margin-bottom: 1rem;
}

/* end carrier page */


/* news blog page */
.news_section {
    background: linear-gradient(135deg, var(--main_color), var(--font_color));
    color: white;
    padding: 80px 0;
}

.trending-badge {
    background-color: var(--red_color);
    color: white;
    padding: 2px 8px;
    border-radius: 12px;
    font-size: 0.7rem;
    position: absolute;
    top: 10px;
    right: 10px;
}

.sidebar-widget {
    background-color: white;
    border-left: 4px solid var(--main_color);
    padding: 20px;
    margin-bottom: 30px;
}

.social-links a {
    color: white;
    font-size: 1.5rem;
    margin: 0 10px;
    transition: color 0.3s ease;
}

.category-badge {
    background-color: var(--main_color);
    color: white;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    text-decoration: none;
}

.category-badge:hover {
    background-color: var(--font_color);
    color: white;
}

.social-links a:hover {
    color: var(--main_color);
}

.news-meta {
    color: var(--text-light);
    font-size: 0.9rem;
}

.read-more {
    color: var(--main_color);
    text-decoration: none;
    font-weight: 500;
}

.read-more:hover {
    color: var(--accent-color);
}

.pagination .page-link {
    color: var(--main_color);
    border-color: var(--main_color);
}

.pagination .page-link:hover {
    color: white;
    background-color: var(--main_color);
    border-color: var(--main_color);
}

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

.pagination .page-item.disabled .page-link {
    color: #6c757d;
    border-color: #dee2e6;
}

.blog-details-header {
    background: linear-gradient(135deg, var(--main_color), var(--font_color));
    color: white;
    padding: 4rem 0;
}

.tag {
    background-color: var(--main_color);
    color: white;
    padding: 0.25rem 0.75rem;
    border-radius: 1rem;
    font-size: 0.8rem;
    text-decoration: none;
}

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

.related-post {
    transition: transform 0.3s ease;
}

.related-post:hover {
    transform: translateY(-5px);
}

.share-btn {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    color: white;
    margin: 0 0.25rem;
    transition: transform 0.3s ease;
}

.share-btn:hover {
    transform: scale(1.1);
    color: white;
}

.facebook {
    background-color: #3b5998;
}

.twitter {
    background-color: #1da1f2;
}

.linkedin {
    background-color: #0077b5;
}

.whatsapp {
    background-color: #25d366;
}

/* end news blog */

/* company pages */
.about-us-section {
    background: linear-gradient(135deg, var(--main_color), var(--font_color));
    color: white;
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.about-us-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="20" cy="20" r="2" fill="rgba(255,255,255,0.1)"/><circle cx="80" cy="40" r="1.5" fill="rgba(255,255,255,0.1)"/><circle cx="40" cy="80" r="1" fill="rgba(255,255,255,0.1)"/></svg>');
    opacity: 0.3;
}


.stats-card {
    background: var(--blur_color);
    border-radius: 15px;
    padding: 2rem;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: none;
    height: 100%;
}

.stats-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(28, 153, 94, 0.2);
}

.stats-number {
    font-size: 3rem;
    font-weight: 700;
    color: var(--main_color);
    margin-bottom: 0.5rem;
}


.section-title {
    color: var(--main_color);
    font-weight: 700;
    margin-bottom: 2rem;
    position: relative;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 60px;
    height: 3px;
    background: var(--main_color);
}

.stats-card {
    background: var(--blur_color);
    border-radius: 15px;
    padding: 2rem;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: none;
    height: 100%;
}

.stats-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(28, 153, 94, 0.2);
}

.stats-number {
    font-size: 3rem;
    font-weight: 700;
    color: var(--main_color);
    margin-bottom: 0.5rem;
}

.team-card {
    background: white;
    border-radius: 20px;
    padding: 2rem;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: none;
    height: 100%;
}

.team-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(28, 153, 94, 0.15);
}

.team-avatar {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--main_color), #2db574);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 3rem;
    color: white;
}

.values-card {
    background: white;
    border-radius: 15px;
    padding: 2rem;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border: 2px solid transparent;
    height: 100%;
}

.values-card:hover {
    border-color: var(--main_color);
    transform: translateY(-5px);
}

.values-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: var(--blur_color);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 2rem;
    color: var(--main_color);
}

.timeline {
    position: relative;
    padding-left: 1rem;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 15px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: var(--main_color);
}

.timeline-item {
    position: relative;
    margin-bottom: 2rem;
    padding-left: 2rem;
}

.timeline-item::before {
    content: '';
    position: absolute;
    left: -8px;
    top: 5px;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background: var(--main_color);
}

.timeline-year {
    font-weight: 700;
    color: var(--main_color);
    font-size: 1.2rem;
}

.content-section {
    line-height: 1.8rem;
    text-align: justify;
}

/* end company pages */

/* business section */
.business_section {
    background-color: var(--secondary_color);
}

.goal {
    background-color: var(--secondary_color);
}

.visitor {
    background-color: var(--blur_color);
    border-radius: 10px;
    padding: 20px;
}

.visitor h2 {
    font-weight: 900;
}

.map_body {
    background-image: url('../images/mapimage.webp');
    padding: 72px 64px;
    border-radius: 40px;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    height: auto;
}

.map_body h2 {
    margin-top: 0;
    margin-bottom: 15px;
    font-size: 32px;
    line-height: 150%;
    font-weight: 700;
    color: #FFF;
}

.map_body p {
    margin: 0;
    font-size: 16px;
    line-height: 24px;
    color: #DEDEDE;
}

.expert_service img {
    border-radius: 20px;
    height: auto;
}

.industrial_experience {
    background-color: var(--secondary_color);
}

.service_type_card {
    border-radius: 10px;
}

.service_type_card:hover {
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
    cursor: pointer;
    background-color: var(--blur_color);
    transition: background-color 0.3s, border-color 0.3s, color 0.3s;
}

.service_type_card img {
    background-color: var(--blur_color);
    padding: 4px;
    border-radius: 10px;
    margin: 6px;
}

.service_type_card p {
    text-align: center;
    padding: 4px;
    margin: 10px;
    margin-left: -12%;
}

.support {
    background-color: var(--secondary_color);
}

.support_icon img {
    background-color: var(--blur_color);
    padding: 2px;
    border-radius: 10px;
    margin: 10px;
}

.our_service {
    background-color: var(--secondary_color);
    border: 1px solid var(--main_color);
    cursor: pointer;
    border-radius: 10px;
    padding: 10px;
}

.our_service:hover {
    border: 1px solid var(--main_color);
    border-radius: 10px;
}

.flag {
    background-color: var(--secondary_color);
    border-radius: 10px;
    min-height: 50px;
    border: 1px solid var(--secondary_color);
    cursor: pointer;
}

.flag:hover {
    border: 1px solid var(--main_color);
}

.media {
    background-color: var(--secondary_color);
    border-radius: 20px;
}

.media img {
    width: 10px;
}

.media h2 {
    margin-top: 1rem;
    margin-bottom: 16px;
    font-size: 32px;
    line-height: 150%;
    font-weight: 700;
    color: #121212;
    margin-left: 4rem;
}

.media p {
    margin: 0;
    font-size: 16px;
    line-height: 24px;
    color: #121212;
    margin-left: 4rem;
}

.media button {
    margin-left: 4rem;
    margin-top: 1rem;
    margin-bottom: 1rem;
}

.news_insights {
    background-color: var(--secondary_color);
}

.news_insights .card {
    border-radius: 15px;
    /* border: 1px solid var(--main_color); */
}

.news_image {
    border-radius: 20px;
    height: 220px;
}

.news_title {
    font-size: 16px;
    line-height: 24px;
    font-weight: 700;
    margin-top: 10px;
    margin-bottom: 8px;
    -webkit-transition: .3s ease all;
    transition: .3s ease all;
}

.news_title:hover {
    color: var(--main_color);
    cursor: pointer;
}

.news_peragrap {
    font-size: 14px;
    font-weight: 500;
    overflow: hidden;
}

.accordion-item {
    border: none;
    border-radius: 25px;
    overflow: hidden;
}

.accordion-button {
    box-shadow: none !important;
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    text-align: left;
}

.accordion-button::after {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23212529'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
    /* Custom arrow icon */
    transform: rotate(0deg);
    transition: transform 0.2s ease-in-out;
}

.accordion-button:not(.collapsed)::after {
    transform: rotate(-180deg);
}

.accordion-body {
    border-top: none;
}

.accordion-button {
    background-color: var(--blur_color);
    border-radius: 20px;
}

.footer {
    background-color: var(--secondary_color);
}

.footer ul li a {
    font-size: 14px;
    line-height: 150%;
    font-weight: 400;
    color: #121212 !important;
    text-decoration: none;
    transition: .3s ease all;
}

#backToTopBtn {
    border-radius: 50%;
    width: 45px;
    height: 45px;
    font-size: 18px;
    transition: opacity 0.4s;
}

/* professional service */
.professional_service h1 {
    margin-bottom: 16px;
    font-size: 40px;
    line-height: 130%;
    font-weight: 700;
    color: var(--main_color);
    text-transform: uppercase;
}

.choices {
    background-color: var(--secondary_color);
}

.percent_of_year {
    background-color: var(--blur_color);
    border-radius: 10px;
    padding: 20px;
}

.choices .card {
    border-radius: 10px;
}

.custom_input {
    height: 40px;
    border-radius: 14px;
}

.card-custom {
    border-radius: 20px;
    padding: 20px;
    position: relative;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.05);
    cursor: pointer;
    border: 1.5px solid var(--main_color);
}

.card-custom:hover {
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    cursor: pointer;
}

.arrow-top-right {
    position: absolute;
    top: 10px;
    right: 10px;
    background-color: var(--main_color);
    color: white;
    border-radius: 50%;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.card-custom:hover .arrow-top-right {
    transform: rotate(-40deg);
}

.more-text {
    color: var(--main_color);
    font-weight: 600;
    cursor: pointer;
}

.what_we_do {
    background-color: var(--secondary_color);
}

.professional_language p {
    line-height: 30px;
    font-size: 16px;
}

.rounded_number {
    height: 20px;
    width: 20px;
    border-radius: 50%;
    padding: 2px;
    background-color: var(--font_color);
    color: white;
    font-size: 13px;
}

.pricing {
    background-color: var(--secondary_color);
}

.pricing_card_intro {
    border-radius: 24px;
    background: url('../images/serviceback.webp');
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    padding: 48px 32px;
    height: 760px;
}

.pricing_card_intro p {
    margin: 0;
    font-size: 16px;
    line-height: 24px;
    color: var(--hover_font);
    font-weight: 400;
}

.pricing_card {
    border-radius: 24px;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    padding: 48px 32px;
    height: auto;
}

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

.checklist li {
    display: flex;
    align-items: center;
    font-size: 16px;
    padding: 10px;
}

.check-icon {
    width: 24px;
    height: 24px;
    background-color: var(--main_color);
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: white;
    margin-right: 10px;
    font-size: 14px;
}

.language-card {
    display: flex;
    align-items: center;
    padding: 8px 12px;
    border: 1px solid #eee;
    border-radius: 8px;
    margin-bottom: 10px;
    transition: background-color 0.2s ease;
}

.language-card:hover {
    background-color: #f9f9f9;
}

.language-card img {
    width: 32px;
    height: 22px;
    margin-right: 12px;
    object-fit: cover;
    border-radius: 4px;
}

.fully_certifyed_row {
    border: 1px solid #eee;
    border-radius: 10px;
    padding: 8px 12px;
    margin-bottom: 10px;
    background-color: var(--blur_color);
    transition: background-color 0.2s ease;
}

.fully_certifyed_row .card {
    height: 225px;
    width: 100%;
    object-fit: cover;
    padding: 10px;
    border-radius: 10px;
    padding-top: 30%;
}

.tools {
    border-radius: 10px;
    background-color: var(--blur_color);
    padding: 10px;
}

.tools img {
    height: 70px;
}

.complete_business_translations {
    background: url('../images/girl.webp');
    padding-top: 72px;
    padding-left: 64px;
    padding-bottom: 72px;
    padding-right: 72px;
    position: relative;
    border-radius: 40px;
    background-repeat: no-repeat;
    background-size: contain;
    background-position: right center;
}

.member_ship_card {
    border-radius: 10px;
}

.google_review {
    background-color: var(--secondary_color);
}


/* api intrigation */
/* .hero-section {
  padding: 60px 20px;
  background-color: white;
  border-radius: 15px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
} */
.hero-text h1 {
    font-size: 2.5rem;
    font-weight: bold;
}

.hero-buttons .btn {
    margin-right: 10px;
    margin-top: 20px;
}

.platform-label {
    margin-top: 20px;
    font-weight: bold;
}

.hero-icon img {
    max-width: 100%;
    height: auto;
}

.introducing_kot_cloud {
    background-color: var(--secondary_color);
}

.integraion_service {
    font-size: 14px;
    line-height: 21px;
    font-weight: 400;
    margin: 16px 0;
    cursor: default;
}

.suported_platform {
    background-color: var(--secondary_color);
}


/* industry page */
.hero-section {
    background: linear-gradient(to bottom right, var(--main_color), var(--font_color));
    border-bottom-left-radius: 1rem;
    border-bottom-right-radius: 1rem;
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}

.hero-title {
    font-size: 4rem;
    font-weight: 800;
    line-height: 1.25;
}

.hero-subtitle {
    font-size: 1.2rem;
    opacity: 0.9;
    text-align: justify;
}

.btn-primary-custom {
    background-color: var(--hover_font);
    color: var(--main_color);
    font-weight: 700;
    padding: 1rem 2.5rem;
    border-radius: 9999px;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease-in-out;
}

.btn-primary-custom:hover {
    background-color: var(--secondary_color);
    transform: scale(1.05);
}

.btn-outline-white-custom {
    border: 2px solid #ffffff;
    color: #ffffff;
    font-weight: 700;
    padding: 1rem 2.5rem;
    border-radius: 9999px;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease-in-out;
}

.btn-outline-white-custom:hover {
    background-color: var(--main_color);
    color: var(--hover_font);
    transform: scale(1.05);
}

.section-container {
    margin-left: 1rem;
    margin-right: 1rem;
    border-radius: 0.75rem;
    padding: 5rem 0;
}

.service-card-bs:hover {
    transform: translateY(-8px);
}

.service-card-icon img {
    height: 100px;
    width: 100px;
    border-radius: 50%;
    border: 1px solid var(--main_color);
}

.pricing-card-bs {
    background-color: #ffffff;
    border-radius: 1rem;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease-in-out;
    border: 2px solid transparent;
    padding: 2.5rem;
}

.pricing-card-bs.featured {
    border-color: var(--main_color);
    transform: scale(1.02);
}

.pricing-card-bs:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}

.pricing-title {
    font-size: 16px;
    font-weight: 700;
    color: var(--main_color);
}

.pricing-subtitle {
    text-align: justify;
    font-size: 12px;
}

.pricing-price {
    font-size: 3.75rem;
    font-weight: 800;
    color: var(--font_color);
}

.pricing-feature-item {
    display: flex;
    align-items: center;
    font-size: 1.125rem;
    color: var(--font_color);
}

.pricing-feature-icon {
    width: 1.75rem;
    height: 1.75rem;
    color: #10b981;
    margin-right: 0.5rem;
}

/* service */
.service_hero_section {
    color: #fff;
    padding: 2rem;
    background: linear-gradient(to bottom right, var(--main_color), var(--font_color));
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    cursor: pointer;
}


/* authentication */
.auth-container {
    background: white;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
    overflow: hidden;
    max-width: 900px;
    width: 100%;
    margin: 6rem auto;
}

.auth-left {
    background: linear-gradient(135deg, var(--main_color), var(--font_color));
    color: white;
    padding: 3rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.auth-left::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="20" cy="20" r="2" fill="rgba(255,255,255,0.1)"/><circle cx="80" cy="40" r="1.5" fill="rgba(255,255,255,0.1)"/><circle cx="40" cy="80" r="1" fill="rgba(255,255,255,0.1)"/></svg>');
    opacity: 0.3;
}

.auth-left-content {
    position: relative;
    z-index: 2;
}

.auth-right {
    padding: 3rem;
}

.form-container {
    display: none;
}

.form-container.active {
    display: block;
    animation: fadeIn 0.5s ease-in-out;
}

.social-btn {
    border: 2px solid #e9ecef;
    border-radius: 10px;
    padding: 12px;
    transition: all 0.3s ease;
    text-decoration: none;
    color: var(--text-light);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.social-btn:hover {
    border-color: var(--main_color);
    color: var(--main_color);
    transform: translateY(-2px);
}

.divider {
    position: relative;
    text-align: center;
    margin: 2rem 0;
}

.divider::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    height: 1px;
    background: #e9ecef;
}

.divider span {
    background: white;
    padding: 0 1rem;
    color: var(--text-light);
    font-size: 0.9rem;
}

.toggle-link {
    color: var(--main_color);
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.toggle-link:hover {
    color: #157a4a;
    text-decoration: underline;
}

.brand-logo {
    font-size: 3rem;
    margin-bottom: 1rem;
}



/* solution */
.easy_intrigation_desc {
    background: linear-gradient(135deg, var(--main_color), var(--font_color));
    color: white;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    position: relative;
    overflow: hidden;
    border-radius: 20px;
    padding: 2rem;
}

.company-profile {
    border: 1px solid var(--main_color);
    border-radius: 10px 10px 0px 0px;
    background-color: var(--main_color);
    padding: 4px;
    text-align: center;
    color: white;
    font-weight: 700;
}

.company_profile_border {
    border: 1px solid var(--main_color);
    border-radius: 10px;
    padding: 10px;
}

/* end solution */


/* industry page */
.industry_cat {
    border: 1px solid var(--main_color);
    border-radius: 10px;
    text-align: center;
    text-decoration: none;
    padding: 10px;
}

.industry_cat:hover {
    background: linear-gradient(135deg, var(--main_color), var(--font_color));
    color: var(--hover_font);
}

/* end industry page */

/* contact us section */
.card_contact_us {
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border-radius: 15px;
}

.contactus_section {
    background: linear-gradient(135deg, var(--main_color) 0%, var(--font_color) 100%);
    color: white;
    padding: 100px 0;
}

.contact-icon {
    background-color: var(--main_color);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
}

.contact-social-icon {
    background: linear-gradient(135deg, var(--main_color) 0%, var(--font_color) 100%);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
}

.contact-social-icon:hover {
    transform: translateY(-2px);
}



/* USER DASHBOARD START */

.stat-kpi h3 {
    margin: 0;
    font-weight: 700;
}

.progress-sm {
    height: .5rem;
}

.table-sm td,
.table-sm th {
    padding: .4rem .5rem;
}

.stat-card {
    border-radius: 12px;
    box-shadow: 0 1px 2px #1C995E;
    transition: all 0.3s ease-in-out;
}

.stat-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.12);
}

.icon-box {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    font-size: 24px;
    color: #fff;
}

.icon-enrolled {
    background: var(--main_color);
}

.icon-active {
    background: var(--main_color);
}

.icon-completed {
    background: var(--main_color);
}

.stat-text h6 {
    margin: 0;
    font-size: 14px;
    color: #555;
}

.stat-text h4 {
    margin: 0;
    font-size: 20px;
    font-weight: bold;
}

.order-table {
    border-radius: 12px;
    overflow: hidden;
}

.order-table th {
    background: #f8f9fa;
    font-weight: 600;
}

.status-badge {
    padding: 5px 12px;
    border-radius: 8px;
    font-size: 13px;
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    gap: 5px;
    color: #fff;
}

.status-completed {
    background-color: var(--main_color);
}

.status-pending {
    background-color: #6f42c1;
}

.action-icons i {
    font-size: 16px;
    cursor: pointer;
    margin-right: 10px;
    color: #444;
    transition: 0.2s;
}

.action-icons i:hover {
    color: #000;
}


/* PROFILE PAGE */
.profile-card {
    border-radius: 12px;
    overflow: hidden;
    background: #fff;
    box-shadow: 0 2px 8px rgba(0, 0, 0, .05);
}

.profile-card thead th {
    background: #f6f6f7;
    /* subtle light gray like screenshot */
    font-weight: 600;
}

.profile-card th,
.profile-card td {
    padding: 16px 20px;
    vertical-align: top;
}

.profile-card th {
    width: 260px;
    /* left column width */
    color: var(--text-dark);
    white-space: nowrap;
}

.profile-card tbody tr+tr td,
.profile-card tbody tr+tr th {
    border-top: 1px solid #e9ecef;
}


/* SETTING */
.profile-form .form-control {
    border-radius: .5rem;
    padding: .9rem 1rem;
}

.profile-form textarea.form-control {
    min-height: 160px;
    resize: vertical;
}

.profile-form input.form-check-input:checked {
    background-color: var(--main_color);
    border-color: var(--main_color);
}


/* BILLING PAGE */

/* USER DASHBOARD END */


/* ORDER PAGE DESIGN  */
/* company pages */
.order-section {
    background: linear-gradient(135deg, var(--main_color), var(--font_color));
    color: white;
    padding: 20px 0;
    position: relative;
    overflow: hidden;
}

.order-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="20" cy="20" r="2" fill="rgba(255,255,255,0.1)"/><circle cx="80" cy="40" r="1.5" fill="rgba(255,255,255,0.1)"/><circle cx="40" cy="80" r="1" fill="rgba(255,255,255,0.1)"/></svg>');
    opacity: 0.3;
}



/* mobile responsive */
@media screen and (max-width: 768px) {
    .pricing_card_intro {
        border-radius: 24px;
        background: url('../images/serviceback.webp');
        background-repeat: no-repeat;
        background-size: cover;
        background-position: center;
        padding: 48px 32px;
        height: auto;
    }

    .translate-language-over-country {
        background-image: none;
    }

    .fully_certifyed_row .card {
        height: auto;
        padding-top: 0;
    }

    .hero-title {
        font-size: 2.5rem;
        font-weight: 800;
        line-height: 1.25;
        padding: 0;
    }

    .form-box {
        margin-top: 1rem;
    }

    .left-side-content {
        margin-top: 5rem;
    }

    .home_header_section {
        margin-top: 0;
    }

}

@media (min-width: 768px) {

    .custom-column-widths th:nth-child(1),
    .custom-column-widths td:nth-child(1) {
        width: 40%;
    }

    .custom-column-widths th:nth-child(2),
    .custom-column-widths td:nth-child(2),
    .custom-column-widths th:nth-child(3),
    .custom-column-widths td:nth-child(3) {
        width: 30%;
    }
}