/* Global Styles */
:root {
    --main_color: #ff3c00 !important;
    --main_opacity_l: #ff3c0073 !important;
    --primary-color: #ff3c00;
    --primary-light: #ff7a4d;
    --primary-dark: #d93d00;
    --secondary-color: #2c3e50;
    --light-color: #f8f9fa;
    --dark-color: #343a40;
    --gray-color: #6c757d;
    --light-gray: #e9ecef;
    --white: #ffffff;
    --box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    --transition: all 0.3s ease;
}

body {
    font-family: 'Poppins', sans-serif;
    color: var(--dark-color);
    line-height: 1.6;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-weight: 600;
    color: var(--secondary-color);
}

a {
    text-decoration: none;
    color: var(--primary-color);
    transition: var(--transition);
}

a:hover {
    color: var(--primary-dark);
}

.container {
    max-width: 1200px;
    padding: 0 15px;
    margin: 0 auto;
}

section {
    padding: 80px 0;
}

/* Navbar Styles */
.sell_agree_navbar {
    background-color: var(--white);
    box-shadow: var(--box-shadow);
    padding: 5px 0;
}

.sell_agree_brand {
    font-size: 28px;
    font-weight: 700;
    color: var(--secondary-color);
}

.sell_agree_logo_text {
    color: var(--primary-color);
}

.sell_agree_logo_dot {
    color: var(--secondary-color);
}

.sell_agree_menu_icon {
    color: var(--primary-color);
    font-size: 24px;
}

.sell_agree_nav_list {
    margin-right: 20px;
}

.sell_agree_nav_link {
    color: var(--secondary-color);
    font-weight: 500;
    padding: 8px 15px !important;
    transition: var(--transition);
}

.sell_agree_nav_link:hover, 
.sell_agree_nav_link.active {
    color: var(--primary-color);
}

.sell_agree_nav_buttons {
    display: flex;
    gap: 10px;
}

.sell_agree_btn_primary {
    background-color: var(--primary-color);
    color: var(--white);
    border: 2px solid var(--primary-color);
    padding: 8px 20px;
    border-radius: 5px;
    font-weight: 500;
    transition: var(--transition);
}

.sell_agree_btn_primary:hover {
    background-color: var(--primary-dark);
    border-color: var(--primary-dark);
    color: var(--white);
}

.sell_agree_btn_outline {
    background-color: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
    padding: 8px 20px;
    border-radius: 5px;
    font-weight: 500;
    transition: var(--transition);
}

.sell_agree_btn_outline:hover {
    background-color: var(--primary-color);
    color: var(--white);
}

/* Hero Section */
.rentAgrremnt_hero_first {
    height: 87vh;
    background: linear-gradient(rgba(0, 0, 0, 0.384), rgba(0, 0, 0, 0.361)), 
                url('https://images.unsplash.com/photo-1562564055-71e051d33c19?q=80&w=2070&auto=format&fit=crop&ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D');
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.rentAgrremnt_hero_first::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 30%;
    background: linear-gradient(to top, var(--primary-color), transparent);
}

.pack_n_go_hero {
    height: 80vh;
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), 
                url('https://images.unsplash.com/photo-1681505504714-4ded1bc247e7?q=80&w=2070&auto=format&fit=crop&ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D');
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.pack_n_go_hero::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 30%;
    background: linear-gradient(to top, rgba(255, 47, 0, 0.3), transparent);
}
.sell_agree_hero::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 50%;
    height: 100%;
    background-color: var(--primary-color);
    opacity: 0.05;
    clip-path: polygon(25% 0%, 100% 0%, 100% 100%, 0% 100%);
}

.sell_agree_hero_content {
    padding-right: 30px;
}

.sell_agree_hero_title {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 20px;
    color: #fff;
}

.sell_agree_hero_subtitle {
    font-size: 18px;
    margin-bottom: 30px;
    color: #fff;
}

.sell_agree_hero_buttons {
    display: flex;
    gap: 15px;
    margin-top: 30px;
}

.sell_agree_hero_image {
    position: relative;
    z-index: 1;
}

.sell_agree_hero_image img {
    border-radius: 10px;
    box-shadow: var(--box-shadow);
}

/* Section Header */
.sell_agree_section_header {
    text-align: center;
    margin-bottom: 50px;
}

.sell_agree_section_header h2 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 15px;
    color: var(--secondary-color);
}

.sell_agree_section_header p {
    font-size: 18px;
    color: var(--gray-color);
    max-width: 700px;
    margin: 0 auto;
}

/* Features Section */
.sell_agree_features {
    background-color: var(--white);
}

.sell_agree_feature_card {
    background-color: var(--white);
    border-radius: 10px;
    padding: 30px;
    text-align: center;
    box-shadow: var(--box-shadow);
    transition: var(--transition);
    height: 100%;
    margin-bottom: 30px;
}

.sell_agree_feature_card:hover {
    transform: translateY(-10px);
}

.sell_agree_feature_icon {
    width: 80px;
    height: 80px;
    background-color: rgba(251, 80, 26, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.sell_agree_feature_icon i {
    font-size: 36px;
    color: var(--primary-color);
}

.sell_agree_feature_card h3 {
    font-size: 22px;
    margin-bottom: 15px;
}

.sell_agree_feature_card p {
    color: var(--gray-color);
}

.sell_agree_guarantee {
    background-color: var(--primary-color);
    color: var(--white);
    display: inline-block;
    padding: 8px 20px;
    border-radius: 30px;
    font-weight: 600;
    margin-top: 30px;
    text-align: center;
    width: 100%;
    max-width: 300px;
    margin: 30px auto 0;
    display: block;
}

/* Benefits Section */
.sell_agree_benefits {
    background-color: var(--light-color);
}

.sell_agree_benefit_item {
    display: flex;
    margin-bottom: 30px;
    background-color: var(--white);
    border-radius: 10px;
    padding: 25px;
    box-shadow: var(--box-shadow);
    transition: var(--transition);
}

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

.sell_agree_benefit_icon {
    flex-shrink: 0;
    width: 60px;
    height: 60px;
    background-color: rgba(251, 80, 26, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 20px;
}

.sell_agree_benefit_icon i {
    font-size: 24px;
    color: var(--primary-color);
}

.sell_agree_benefit_content h4 {
    font-size: 20px;
    margin-bottom: 10px;
}

.sell_agree_benefit_content p {
    color: var(--gray-color);
    margin-bottom: 0;
}

/* Packages Section */
.sell_agree_packages {
    background-color: var(--white);
}

.sell_agree_package_card {
    background-color: var(--white);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: var(--box-shadow);
    transition: var(--transition);
    height: 100%;
    position: relative;
    border: 1px solid var(--light-gray);
}

.sell_agree_package_card:hover {
    transform: translateY(-10px);
}

.sell_agree_package_popular {
    border: 2px solid var(--primary-color);
}

.sell_agree_popular_tag {
    position: absolute;
    top: 0;
    right: 0;
    background-color: var(--primary-color);
    color: var(--white);
    padding: 5px 15px;
    font-size: 14px;
    font-weight: 600;
    border-bottom-left-radius: 10px;
}

.sell_agree_package_header {
    background-color: var(--light-color);
    padding: 30px;
    text-align: center;
    border-bottom: 1px solid var(--light-gray);
}

.sell_agree_package_header h3 {
    font-size: 24px;
    margin-bottom: 15px;
}

.sell_agree_package_price {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.sell_agree_price {
    font-size: 36px;
    font-weight: 700;
    color: var(--primary-color);
}

.sell_agree_price_period {
    font-size: 14px;
    color: var(--gray-color);
}

.sell_agree_package_body {
    padding: 30px;
}

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

.sell_agree_package_features li {
    margin-bottom: 15px;
    display: flex;
    align-items: center;
}

.sell_agree_package_features li i {
    color: var(--primary-color);
    margin-right: 10px;
}

.btn-block {
    display: block;
    width: 100%;
}

/* Experts Section */
.sell_agree_experts {
    padding-bottom: 10px;
    background-color: var(--light-color);
}

.sell_agree_expert_card {
    background-color: var(--white);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: var(--box-shadow);
    transition: var(--transition);
    margin-bottom: 30px;
}

.sell_agree_expert_card:hover {
    transform: translateY(-10px);
}

.sell_agree_expert_image img {
    width: 100%;
    height: 250px;
    object-fit: cover;
}

.sell_agree_expert_info {
    padding: 20px;
    text-align: center;
}

.sell_agree_expert_info h4 {
    font-size: 20px;
    margin-bottom: 5px;
}

.sell_agree_expert_info p {
    color: var(--gray-color);
    margin-bottom: 10px;
}

.sell_agree_expert_rating {
    color: #ffc107;
    margin-bottom: 0;
}

.sell_agree_expert_rating span {
    color: var(--gray-color);
    font-size: 14px;
    margin-left: 5px;
}

/* Process Section */
.sell_agree_process {
    background-color: var(--white);
}

.sell_agree_process_steps {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
}

.sell_agree_process_steps::before {
    content: '';
    position: absolute;
    top: 0;
    left: 30px;
    height: 100%;
    width: 2px;
    background-color: var(--light-gray);
    z-index: 0;
}

.sell_agree_process_step {
    display: flex;
    margin-bottom: 40px;
    position: relative;
    z-index: 1;
}

.sell_agree_step_number {
    width: 60px;
    height: 60px;
    background-color: var(--primary-color);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: 700;
    margin-right: 30px;
    flex-shrink: 0;
}

.sell_agree_step_content {
    background-color: var(--white);
    border-radius: 10px;
    padding: 20px 30px;
    box-shadow: var(--box-shadow);
    flex-grow: 1;
}

.sell_agree_step_content h4 {
    font-size: 20px;
    margin-bottom: 10px;
}

.sell_agree_step_content p {
    color: var(--gray-color);
    margin-bottom: 0;
}

/* Testimonials Section */
.sell_agree_testimonials {
    background-color: var(--light-color);
}

.sell_agree_testimonial_card {
    background-color: var(--white);
    border-radius: 10px;
    padding: 30px;
    box-shadow: var(--box-shadow);
    transition: var(--transition);
    height: 100%;
    margin-bottom: 30px;
}

.sell_agree_testimonial_card:hover {
    transform: translateY(-10px);
}

.sell_agree_testimonial_rating {
    color: #ffc107;
    margin-bottom: 20px;
}

.sell_agree_testimonial_text {
    font-style: italic;
    margin-bottom: 20px;
    color: var(--gray-color);
}

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

.sell_agree_testimonial_author img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    margin-right: 15px;
}

.sell_agree_testimonial_author h5 {
    font-size: 18px;
    margin-bottom: 5px;
}

.sell_agree_testimonial_author p {
    color: var(--gray-color);
    margin-bottom: 0;
}

/* FAQ Section */
.sell_agree_faq {
    background-color: var(--white);
}

.sell_agree_accordion_item {
    margin-bottom: 15px;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: var(--box-shadow);
}

.sell_agree_accordion_header {
    margin: 0;
}

.sell_agree_accordion_button {
    background-color: var(--white);
    color: var(--secondary-color);
    font-size: 18px;
    font-weight: 600;
    padding: 20px;
    width: 100%;
    text-align: left;
    border: none;
    position: relative;
    transition: var(--transition);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.sell_agree_accordion_button:hover,
.sell_agree_accordion_button:not(.collapsed) {
    background-color: rgba(251, 80, 26, 0.05);
    color: var(--primary-color);
}

.sell_agree_accordion_button i {
    transition: var(--transition);
}

.sell_agree_accordion_button:not(.collapsed) i {
    transform: rotate(180deg);
}

.sell_agree_accordion_body {
    padding: 20px;
    background-color: var(--white);
    border-top: 1px solid var(--light-gray);
}

/* CTA Section */
.sell_agree_cta {
    background-color: var(--primary-color);
    padding: 80px 0;
}

.sell_agree_cta_content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.sell_agree_cta_content h2 {
    font-size: 36px;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 20px;
}

.sell_agree_cta_content p {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 30px;
}

.sell_agree_cta_buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
}

.sell_agree_cta .sell_agree_btn_primary {
    background-color: var(--white);
    color: var(--primary-color);
    border-color: var(--white);
}

.sell_agree_cta .sell_agree_btn_primary:hover {
    background-color: transparent;
    color: var(--white);
}

.sell_agree_cta .sell_agree_btn_outline {
    border-color: var(--white);
    color: var(--white);
}

.sell_agree_cta .sell_agree_btn_outline:hover {
    background-color: var(--white);
    color: var(--primary-color);
}

/* Footer */
.sell_agree_footer {
    background-color: var(--secondary-color);
    color: var(--light-color);
    padding: 80px 0 0;
}

.sell_agree_footer_about {
    margin-bottom: 30px;
}

.sell_agree_footer_logo {
    font-size: 28px;
    font-weight: 700;
    display: inline-block;
    margin-bottom: 20px;
}

.sell_agree_footer p {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 20px;
}

.sell_agree_social_links {
    display: flex;
    gap: 15px;
}

.sell_agree_social_links a {
    width: 40px;
    height: 40px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    transition: var(--transition);
}

.sell_agree_social_links a:hover {
    background-color: var(--primary-color);
    color: var(--white);
}

.sell_agree_footer_links {
    margin-bottom: 30px;
}

.sell_agree_footer_links h4 {
    color: var(--white);
    font-size: 20px;
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 10px;
}

.sell_agree_footer_links h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 2px;
    background-color: var(--primary-color);
}

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

.sell_agree_footer_links ul li {
    margin-bottom: 12px;
}

.sell_agree_footer_links ul li a {
    color: rgba(255, 255, 255, 0.7);
    transition: var(--transition);
}

.sell_agree_footer_links ul li a:hover {
    color: var(--primary-color);
    padding-left: 5px;
}

.sell_agree_footer_contact {
    margin-bottom: 30px;
}

.sell_agree_footer_contact h4 {
    color: var(--white);
    font-size: 20px;
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 10px;
}

.sell_agree_footer_contact h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 2px;
    background-color: var(--primary-color);
}

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

.sell_agree_footer_contact ul li {
    margin-bottom: 15px;
    display: flex;
    align-items: flex-start;
    color: rgba(255, 255, 255, 0.7);
}

.sell_agree_footer_contact ul li i {
    color: var(--primary-color);
    margin-right: 15px;
    margin-top: 5px;
}

.sell_agree_footer_bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 20px 0;
    margin-top: 50px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

.sell_agree_copyright {
    color: rgba(255, 255, 255, 0.7);
}

.sell_agree_footer_bottom_links {
    display: flex;
    gap: 20px;
}

.sell_agree_footer_bottom_links a {
    color: rgba(255, 255, 255, 0.7);
    transition: var(--transition);
}

.sell_agree_footer_bottom_links a:hover {
    color: var(--primary-color);
}

/* Responsive Styles */
@media (max-width: 991px) {
    .sell_agree_nav_buttons {
        margin-top: 15px;
    }
    
    .sell_agree_hero {
        padding: 80px 0;
    }
    
    .sell_agree_hero_content {
        padding-right: 0;
        margin-bottom: 40px;
    }
    
    .sell_agree_hero_title {
        font-size: 36px;
    }
    
    .sell_agree_cta_buttons {
        flex-direction: column;
        gap: 15px;
    }
    
    .sell_agree_footer_bottom {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }
    
    .sell_agree_footer_bottom_links {
        justify-content: center;
    }
}

@media (max-width: 767px) {
    section {
        padding: 60px 0;
    }
    
    .sell_agree_section_header h2 {
        font-size: 30px;
    }
    
    .sell_agree_hero_title {
        font-size: 32px;
    }
    
    .sell_agree_hero_buttons {
        flex-direction: column;
        gap: 15px;
    }
    
    .sell_agree_process_steps::before {
        display: none;
    }
    
    .sell_agree_process_step {
        flex-direction: column;
    }
    
    .sell_agree_step_number {
        margin-right: 0;
        margin-bottom: 15px;
    }
    
    .sell_agree_cta_content h2 {
        font-size: 30px;
    }
}

@media (max-width: 575px) {
    .sell_agree_section_header h2 {
        font-size: 26px;
    }
    
    .sell_agree_hero_title {
        font-size: 28px;
    }
    
    .sell_agree_feature_card,
    .sell_agree_benefit_item,
    .sell_agree_package_card,
    .sell_agree_testimonial_card {
        padding: 20px;
    }
    
    .sell_agree_package_header {
        padding: 20px;
    }
    
    .sell_agree_package_body {
        padding: 20px;
    }
    
    .sell_agree_cta_content h2 {
        font-size: 26px;
    }
    
    .sell_agree_footer_bottom_links {
        flex-wrap: wrap;
        gap: 10px;
    }
}





/* all packeges page css  */

/* Custom CSS with sale_agree_ prefix */
.sale_agree_container {
    display: flex;
    min-height: 100vh;
    background-color: #f8f9fa;
}

.sale_agree_sidebar {
    display: none !important;
    width: 300px;
    background-color: var(--primary-color);
    color: white;
    padding: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.sale_agree_sidebar .logo {
    font-size: 1.5rem;
    font-weight: bold;
    margin-bottom: 20px;
}

.sale_agree_sidebar .text {
    font-size: 0.9rem;
    text-align: center;
    margin-bottom: 20px;
}

.sale_agree_content {
    flex-grow: 1;
    padding: 20px;
    min-height: 110vh;
}

.sale_agree_header {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}

.sale_agree_header .back {
    font-size: 1.2rem;
    margin-right: 10px;
    color: #6c757d;
}

.sale_agree_header .title {
    font-size: 1.5rem;
    font-weight: bold;
    color: #333;
}

.sale_agree_tabs {
    display: flex;
    border-bottom: 2px solid #dee2e6;
    margin-bottom: 20px;
}

.sale_agree_tab {
    padding: 10px 20px;
    font-weight: bold;
    color: #6c757d;
    cursor: pointer;
    transition: color 0.3s;
}

.sale_agree_tab.active {
    color: #000;
    border-bottom: 2px solid var(--primary-color);
}

.sale_agree_cards, .individualSercicesCads {
    display: flex;
    gap: 20px;
}

.sale_agree_card {
    border: 1px solid #e0e0e0;
    border-radius: 10px;
    padding: 20px;
    /* width: 25%; */
    background-color: white;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.sale_agree_card .title {
    font-size: 1.1rem;
    font-weight: bold;
    margin-bottom: 10px;
    color: #333;
}

.sale_agree_card .price {
    font-size: 1rem;
    color: #666;
    margin-bottom: 10px;
}

.sale_agree_card .price .original {
    text-decoration: line-through;
    color: #999;
}

.sale_agree_card .price .discounted {
    color: #000;
    font-weight: bold;
    margin-left: 5px;
}

.sale_agree_card .list {
    list-style: none;
    padding: 0;
    margin-bottom: 20px;
}

.sale_agree_card .list li {
    font-size: 0.9rem;
    color: #333;
    margin-bottom: 8px;
    position: relative;
    padding-left: 25px;
}

.sale_agree_card .list li::before {
    content: "✔";
    color: var(--primary-color);
    position: absolute;
    left: 0;
    font-size: 1rem;
}

.sale_agree_card .select-btn {
    background-color: var(--main-color);
    color: var(--primary-color);
    border: 1px solid var(--primary-color);
    border-radius: 5px;
    padding: 10px;
    width: 100%;
    font-weight: bold;
    text-align: center;
    text-decoration: none;
    display: inline-block;
}

.sale_agree_card .remove-btn {
    background-color: var(--primary-color);
    color: white;
    border: none;
    border-radius: 5px;
    padding: 10px;
    width: 100%;
    font-weight: bold;
    text-align: center;
    text-decoration: none;
    display: inline-block;
}

.sale_agree_card .select-btn:hover {
    background-color: var(--primary-color);
    color: var(--white);
}

.sale_agree_card .remove-btn:hover {
    background-color: var(--main-color);
}

.sale_agree_footer {
    position: fixed;
    bottom: 0;
    gap: 20px;
    width: 100%;
    background-color: white;
    padding: 20px;
    display: flex;
    justify-content: end;
    align-items: center;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
    border-top: 1px solid #e0e0e0;
}

.sale_agree_footer .total {
    font-size: 1.2rem;
    font-weight: bold;
    color: #333;
}

.sale_agree_footer .continue-btn {
   
    background-color: var(--primary-color);
    color: white;
    border: none;
    border-radius: 5px;
    padding: 10px 20px;
    font-weight: bold;
}

.sale_agree_footer .continue-btn:hover {
    border: 1px solid var(--primary-color);
    color: var(--primary-color);
    background-color: var(--main-color);
}
.select_btn {
    text-align: center;
    position: relative;
    padding: 7px 24px;
    background: linear-gradient(to right, var(--main_color), var(--main_opacity_l));
    color: white;
    border: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 16px;
    overflow: hidden;
    transition: all 0.3s ease;
}
.select_btn:hover {
    transform: scale(1.05);
    color : #fff;
    background: linear-gradient(to right, var(--main_opacity_l), var(--main_color));
}



/* Shine effect */
.select_btn::after {
    content: '';
    position: absolute;
    top: 0;
    width: 50%;
    height: 100%;
    background: linear-gradient(to right, transparent, rgba(255, 255, 255, 0.2), transparent);
    transform: skewX(-25deg);
    transition: all 0.75s ease;
}

.select_btn:hover::after {
    left: 150%;
}



/* layer card  */
.layser_c_header {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    padding: 3rem 0;
    margin-bottom: 3rem;
    position: relative;
    overflow: hidden;
}

.layser_c_header::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 100%;
    height: 200%;
    background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, rgba(255,255,255,0) 70%);
    transform: rotate(30deg);
}

.layser_c_header h1 {
    color: var(--white);
    font-weight: 700;
    margin-bottom: 0.5rem;
    position: relative;
    z-index: 1;
}

.layser_c_header p {
    color: rgba(255, 255, 255, 0.9);
    max-width: 600px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

/* Card Styles */
.layser_c_card {
    background-color: var(--white);
    border-radius: 16px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
    height: 100%;
    position: relative;
    border: none;
}

.layser_c_card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.layser_c_card:hover .layser_c_card-image img {
    transform: scale(1.05);
}

.layser_c_card:hover .layser_c_card-badge {
    background-color: var(--primary-color);
    color: var(--white);
}

.layser_c_card-image {
    position: relative;
    height: 240px;
    overflow: hidden;
}

.layser_c_card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.layser_c_card-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.8) 0%, rgba(0,0,0,0) 100%);
    padding: 2rem 1.5rem 1.5rem;
}

.layser_c_card-badge {
    position: absolute;
    z-index: 2;
    top: 1rem;
    right: 1rem;
    background-color: var(--white);
    color: var(--primary-color);
    font-weight: 600;
    font-size: 0.75rem;
    padding: 0.25rem 0.75rem;
    border-radius: 50px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
}

.layser_c_card-name {
    color: var(--white);
    font-weight: 600;
    font-size: 1.5rem;
    margin-bottom: 0.25rem;
}

.layser_c_card-title {
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.9rem;
}

.layser_c_card-body {
    padding: 1.5rem;
}

.layser_c_card-info {
    margin-bottom: 1rem;
}

.layser_c_card-label {
    display: block;
    color: var(--text-light);
    font-size: 0.8rem;
    margin-bottom: 0.25rem;
}

.layser_c_card-value {
    font-weight: 500;
    color: var(--text-dark);
}

.layser_c_card-rating {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 1.25rem;
}

.layser_c_stars {
    color: #ffc107;
}

.layser_c_stars .half-star {
    position: relative;
}

.layser_c_stars .half-star::after {
    content: '\f089';
    font-family: 'Font Awesome 6 Free';
    position: absolute;
    top: 0;
    left: 0;
    color: #ffc107;
}

.layser_c_clients {
    font-size: 0.85rem;
    color: var(--text-light);
}

.layser_c_view-profile-btn {
    background-color: var(--primary-color);
    color: var(--white);
    border: none;
    border-radius: 8px;
    padding: 0.75rem 1.5rem;
    font-weight: 500;
    transition: all 0.3s ease;
    width: 100%;
}

.layser_c_view-profile-btn:hover {
    background-color: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(255, 60, 0, 0.3);
}

/* Modal Styles */
.layser_c_modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1050;
    overflow-x: hidden;
    overflow-y: auto;
    background-color: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(5px);
    animation: layser_c_fadeIn 0.3s ease;
}

.layser_c_modal-dialog {
    max-width: 900px;
    margin: 1.75rem auto;
    animation: layser_c_slideUp 0.3s ease;
}

.layser_c_modal-content {
    border: none;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.layser_c_modal-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background-color: rgba(255, 255, 255, 0.2);
    color: var(--white);
    border: none;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    z-index: 10;
}

.layser_c_modal-close:hover {
    background-color: rgba(255, 255, 255, 0.3);
    transform: rotate(90deg);
}

.layser_c_modal-sidebar {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    color: var(--white);
    padding: 2.5rem 1.5rem;
    position: relative;
    overflow: hidden;
}

.layser_c_modal-sidebar::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 100%;
    height: 200%;
    background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, rgba(255,255,255,0) 70%);
    transform: rotate(30deg);
}

.layser_c_modal-image-container {
    width: 140px;
    height: 140px;
    margin: 0 auto 1.5rem;
    border-radius: 50%;
    overflow: hidden;
    border: 4px solid rgba(255, 255, 255, 0.2);
    position: relative;
    z-index: 1;
}

.layser_c_modal-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.layser_c_modal-name {
    font-size: 1.75rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 0.25rem;
    position: relative;
    z-index: 1;
}

.layser_c_modal-title {
    color: rgba(255, 255, 255, 0.9);
    text-align: center;
    margin-bottom: 1.5rem;
    position: relative;
    z-index: 1;
}

.layser_c_modal-contact {
    position: relative;
    z-index: 1;
}

.layser_c_modal-contact-item {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
}

.layser_c_modal-icon {
    width: 36px;
    height: 36px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 1rem;
    flex-shrink: 0;
}

.layser_c_modal-contact-text {
    font-size: 0.9rem;
    word-break: break-word;
}

.layser_c_modal-rating {
    margin-top: 2rem;
    position: relative;
    z-index: 1;
}

.layser_c_modal-stars {
    display: flex;
    justify-content: center;
    margin-bottom: 0.5rem;
    color: #ffc107;
}

.layser_c_modal-clients {
    text-align: center;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.9);
}

.layser_c_modal-main {
    padding: 2.5rem;
    background-color: var(--white);
}

.layser_c_modal-section {
    margin-bottom: 2rem;
}

.layser_c_modal-section:last-child {
    margin-bottom: 0;
}

.layser_c_modal-section-title {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--text-dark);
    display: flex;
    align-items: center;
}

.layser_c_modal-section-icon {
    color: var(--primary-color);
    margin-right: 0.75rem;
}

.layser_c_modal-about {
    color: var(--text-light);
    line-height: 1.7;
}

.layser_c_modal-education {
    color: var(--text-light);
}

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

.layser_c_modal-case-item {
    display: flex;
    margin-bottom: 0.75rem;
}

.layser_c_modal-case-bullet {
    width: 8px;
    height: 8px;
    background-color: var(--primary-color);
    border-radius: 50%;
    margin-top: 0.5rem;
    margin-right: 0.75rem;
    flex-shrink: 0;
}

.layser_c_modal-case-text {
    color: var(--text-light);
}

.layser_c_modal-cta {
    margin-top: 2rem;
}

.layser_c_modal-contact-btn {
    background-color: var(--primary-color);
    color: var(--white);
    border: none;
    border-radius: 8px;
    padding: 0.75rem 1.5rem;
    font-weight: 500;
    transition: all 0.3s ease;
    width: 100%;
}

.layser_c_modal-contact-btn:hover {
    background-color: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(255, 60, 0, 0.3);
}

/* Animations */
@keyframes layser_c_fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes layser_c_slideUp {
    from { 
        opacity: 0;
        transform: translateY(20px);
    }
    to { 
        opacity: 1;
        transform: translateY(0);
    }
}

/* Skill Bars */
.layser_c_skill-bars {
    margin-top: 1rem;
}

.layser_c_skill-bar {
    margin-bottom: 0.75rem;
}

.layser_c_skill-info {
    display: flex;
    justify-content: space-between;
    margin-bottom: 0.25rem;
}

.layser_c_skill-name {
    font-size: 0.85rem;
    color: var(--text-dark);
}

.layser_c_skill-percentage {
    font-size: 0.85rem;
    color: var(--primary-color);
    font-weight: 500;
}

.layser_c_skill-progress {
    height: 6px;
    background-color: var(--gray);
    border-radius: 3px;
    overflow: hidden;
}

.layser_c_skill-progress-bar {
    height: 100%;
    background: linear-gradient(90deg, var(--primary-color) 0%, var(--primary-light) 100%);
    border-radius: 3px;
    transition: width 1s ease;
}

/* Testimonial */
.layser_c_testimonial {
    background-color: var(--primary-very-light);
    border-radius: 12px;
    padding: 1.5rem;
    margin-top: 1.5rem;
    position: relative;
}

.layser_c_testimonial::before {
    content: '\f10d';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    position: absolute;
    top: -15px;
    left: 20px;
    font-size: 2rem;
    color: var(--primary-color);
    opacity: 0.2;
}

.layser_c_testimonial-text {
    font-style: italic;
    color: var(--text-light);
    margin-bottom: 1rem;
}

.layser_c_testimonial-author {
    font-weight: 600;
    color: var(--text-dark);
}

/* Achievements */
.layser_c_achievements {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-top: 1rem;
}

.layser_c_achievement {
    background-color: var(--gray-light);
    border-radius: 8px;
    padding: 0.5rem 1rem;
    font-size: 0.85rem;
    color: var(--text-dark);
    display: inline-flex;
    align-items: center;
}

.layser_c_achievement i {
    color: var(--primary-color);
    margin-right: 0.5rem;
}

/* Responsive Adjustments */
@media (max-width: 767.98px) {
    .layser_c_modal-sidebar {
        border-radius: 16px 16px 0 0;
    }
    
    .layser_c_modal-image-container {
        width: 100px;
        height: 100px;
    }
    
    .layser_c_modal-name {
        font-size: 1.5rem;
    }
    
    .layser_c_modal-main {
        padding: 1.5rem;
    }
}




/* / // Footer Start // / */
.footer {
    background-image: url('https://static.vecteezy.com/system/resources/previews/051/895/577/non_2x/law-and-justice-background-with-scales-and-gavel-free-vector.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    color: #fff;
    padding: 20px 0 20px;
    position: relative;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.662); 
}


.footer > .container-fluid {
    position: relative;
    z-index: 1;
}

.footer-logo {
    max-width: 120px;
    margin-bottom: 30px;
}

.footer h4 {
    color: #fb501a;
    font-size: 20px;
    margin-bottom: 20px;
}

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

.footer ul li {
    margin-bottom: 10px;
}

.footer ul li a {
    color: #ffffff;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s ease;
}

.footer ul li a:hover {
    color: #fb501a;
}

.newsletter-section {
    margin-bottom: 40px;
}

.newsletter-section h2 {
    font-size: 28px;
    margin-bottom: 20px;
}
.newsletter-section p{
    color: #ffffff;
}
.newsletter-form {
    position: relative;
    max-width: 400px;
}

.newsletter-input {
    background-color: rgba(255, 255, 255, 0.1);
    border: 1px solid #fb501a;
    color: #fff;
    padding: 10px 40px 10px 15px;
    width: 100%;
}

.newsletter-button {
    background: none;
    border: none;
    color: #fb501a;
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    cursor: pointer;
}

.social-icons {
    margin-top: 20px;
}

.social-icons a {
    color: #fb501a;
    margin-right: 15px;
    font-size: 18px;
    transition: color 0.3s ease;
}
.social-icons a img{
    width: 18px;
    height: 18px;
}

.social-icons a:hover {
    color: #fff;
}

.cities-list {
    columns: 2;
    -webkit-columns: 2;
    -moz-columns: 2;
}

@media (min-width: 768px) {
    .cities-list {
        columns: 3;
        -webkit-columns: 3;
        -moz-columns: 3;
    }
}

@media (min-width: 992px) {
    .cities-list {
        columns: 4;
        -webkit-columns: 4;
        -moz-columns: 4;
    }
}

.copyright {
    border-top: 1px solid rgb(251 80 26);
    margin-top: 40px;
    padding-top: 20px;
    text-align: center;
    color: #999;
    font-size: 14px;
}
/* / Footer End / */


/* social media  */

.new-footer-social-icons {
    margin-top: 15px;
    display: flex;
    gap: 10px;
  }
  
  .new-footer-social-icons a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 35px;
    height: 35px;
    border-radius: 50%;
    background-color: white;
    color: #333333;
    margin-right: 5px;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 3px 10px rgba(0,0,0,0.1);
  }
  
  .new-footer-social-icons a:hover {
    transform: translateY(-5px);
  }
  
  .new-footer-social-icons a.new-footer-facebook:hover {
    background-color: #3b5998;
    color: white;
  }
  
  .new-footer-social-icons a.new-footer-twitter:hover {
    background-color: #000000;
    color: white;
  }
  
  .new-footer-social-icons a.new-footer-instagram:hover {
    background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
    color: white;
  }
  
  .new-footer-social-icons a.new-footer-linkedin:hover {
    background-color: #0077b5;
    color: white;
  }
  
  .new-footer-social-icons a.new-footer-youtube:hover {
    background-color: #ff0000;
    color: white;
  }
  
  .new-footer-social-icons a.new-footer-pinterest:hover {
    background-color: #bd081c;
    color: white;
  }
  .new-footer-social-icons a.new-footer-blogger:hover {
    background-color: #f38d39;
    color: white;
  }
  .new-footer-social-icons a.new-footer-tumblr:hover {
    background-color: #001935;
    color: white;
  }