/* Global Styles */
:root {
    --primary-color: #ff3c00;
    --primary-light: #fff1ed;
    --secondary-color: #2c3e50;
    --text-color: #333333;
    --text-light: #6c757d;
    --bg-light: #f8f9fa;
    --bg-white: #ffffff;
    --border-color: #e9ecef;
    --border-radius: 6px;
    --box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    --transition: all 0.3s ease;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    color: var(--text-color);
    line-height: 1.6;
    background-color: var(--bg-white);
}

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

p {
    color: var(--text-light);
}

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

section {
    padding: 80px 0;
}

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

/* Navbar Styles */
.liggle_s_h_navbar {
    padding: 20px 0;
    background-color: var(--bg-white);
    box-shadow: var(--box-shadow);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.liggle_s_h_navbar_container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

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

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

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

.liggle_s_h_menu {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    margin-right: 30px;
}

.liggle_s_h_menu li {
    margin: 0 15px;
}

.liggle_s_h_menu a {
    color: var(--text-color);
    font-weight: 500;
    font-size: 16px;
    position: relative;
    padding: 5px 0;
}

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

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

.liggle_s_h_menu a:hover:after,
.liggle_s_h_menu a.active:after {
    width: 100%;
}

.liggle_s_h_btn {
    display: inline-block;
    padding: 10px 25px;
    background-color: var(--primary-color);
    color: white;
    border-radius: 4px;
    font-weight: 500;
    border: 1px solid var(--primary-color);
    transition: var(--transition);
}

.liggle_s_h_btn:hover {
    background-color: transparent;
    color: var(--primary-color);
}

.liggle_s_h_btn_outline {
    background-color: transparent;
    color: var(--primary-color);
}

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

.liggle_s_h_hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.liggle_s_h_hamburger span {
    width: 25px;
    height: 2px;
    background-color: var(--secondary-color);
    margin: 4px 0;
    transition: var(--transition);
}

/* Hero Section */
.liggle_s_h_hero {
    padding: 80px 0;
    background-color: var(--bg-light);
}

.liggle_s_h_hero_content {
    padding-right: 30px;
}

.liggle_s_h_hero_content h1 {
    font-size: 42px;
    margin-bottom: 20px;
    color: var(--secondary-color);
}

.liggle_s_h_hero_content p {
    font-size: 18px;
    margin-bottom: 30px;
    color: var(--text-light);
}

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

.liggle_s_h_hero_image img {
    width: 100%;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
}

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

.liggle_s_h_section_header h2 {
    font-size: 32px;
    margin-bottom: 15px;
    color: var(--secondary-color);
}

.liggle_s_h_section_header p {
    font-size: 16px;
    color: var(--text-light);
    max-width: 600px;
    margin: 0 auto;
}

/* Services Section */
.liggle_s_h_services {
    background-color: var(--bg-white);
}

.liggle_s_h_service_card {
    background-color: var(--bg-white);
    border-radius: var(--border-radius);
    padding: 30px;
    box-shadow: var(--box-shadow);
    transition: var(--transition);
    height: 100%;
    border-top: 3px solid transparent;
}

.liggle_s_h_service_card:hover {
    transform: translateY(-5px);
    border-top: 3px solid var(--primary-color);
}

.liggle_s_h_service_icon {
    width: 60px;
    height: 60px;
    background-color: var(--primary-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

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

.liggle_s_h_service_card h3 {
    font-size: 20px;
    margin-bottom: 15px;
    color: var(--secondary-color);
}

.liggle_s_h_service_card p {
    margin-bottom: 20px;
    color: var(--text-light);
}

.liggle_s_h_service_link {
    color: var(--primary-color);
    font-weight: 500;
    display: inline-flex;
    align-items: center;
}

.liggle_s_h_service_link i {
    margin-left: 8px;
    transition: var(--transition);
}

.liggle_s_h_service_link:hover i {
    transform: translateX(5px);
}

/* Why Choose Us Section */
.liggle_s_h_why_choose {
    background-color: var(--bg-light);
}

.liggle_s_h_why_choose_img img {
    width: 100%;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
}

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

.liggle_s_h_why_choose_item:hover {
    transform: translateX(5px);
}

.liggle_s_h_why_choose_icon {
    width: 50px;
    height: 50px;
    background-color: var(--primary-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 20px;
    flex-shrink: 0;
}

.liggle_s_h_why_choose_icon i {
    font-size: 20px;
    color: var(--primary-color);
}

.liggle_s_h_why_choose_text h3 {
    font-size: 18px;
    margin-bottom: 10px;
    color: var(--secondary-color);
}

.liggle_s_h_why_choose_text p {
    margin: 0;
    color: var(--text-light);
}

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

.liggle_s_h_faq_container {
    background-color: var(--bg-white);
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    overflow: hidden;
}

.liggle_s_h_faq_item {
    border-bottom: 1px solid var(--border-color);
}

.liggle_s_h_faq_item:last-child {
    border-bottom: none;
}

.liggle_s_h_faq_header {
    padding: 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    cursor: pointer;
    transition: var(--transition);
}

.liggle_s_h_faq_header h3 {
    font-size: 18px;
    font-weight: 600;
    margin: 0;
    color: var(--secondary-color);
}

.liggle_s_h_faq_item.active .liggle_s_h_faq_header h3 {
    color: var(--primary-color);
}

.liggle_s_h_faq_icon {
    position: relative;
    width: 20px;
    height: 20px;
}

.liggle_s_h_faq_icon i {
    position: absolute;
    top: 0;
    left: 0;
    font-size: 14px;
    transition: var(--transition);
}

.liggle_s_h_faq_icon .fa-plus {
    opacity: 1;
}

.liggle_s_h_faq_icon .fa-minus {
    opacity: 0;
}

.liggle_s_h_faq_item.active .liggle_s_h_faq_icon .fa-plus {
    opacity: 0;
}

.liggle_s_h_faq_item.active .liggle_s_h_faq_icon .fa-minus {
    opacity: 1;
    color: var(--primary-color);
}

.liggle_s_h_faq_body {
    padding: 0 20px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.liggle_s_h_faq_item.active .liggle_s_h_faq_body {
    max-height: 200px;
    padding-bottom: 20px;
}

.liggle_s_h_faq_body p {
    margin: 0;
    color: var(--text-light);
}

/* Contact Section */
.liggle_s_h_contact {
    background-color: var(--bg-light);
}

.liggle_s_h_contact_form_container {
    background-color: var(--bg-white);
    border-radius: var(--border-radius);
    padding: 40px;
    box-shadow: var(--box-shadow);
}

.liggle_s_h_form_group {
    margin-bottom: 20px;
}

.liggle_s_h_form_control {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid var(--border-color);
    border-radius: 4px;
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    transition: var(--transition);
}

.liggle_s_h_form_control:focus {
    outline: none;
    border-color: var(--primary-color);
}

.liggle_s_h_form_control::placeholder {
    color: #adb5bd;
}

/* Responsive Styles */
@media (max-width: 991px) {
    .liggle_s_h_menu {
        position: fixed;
        top: 80px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 80px);
        background-color: var(--bg-white);
        flex-direction: column;
        align-items: center;
        justify-content: center;
        transition: var(--transition);
        margin: 0;
        z-index: 999;
    }
    
    .liggle_s_h_menu.active {
        left: 0;
    }
    
    .liggle_s_h_menu li {
        margin: 15px 0;
    }
    
    .liggle_s_h_hamburger {
        display: flex;
    }
    
    .liggle_s_h_hero_content {
        padding-right: 0;
        margin-bottom: 40px;
    }
    
    .liggle_s_h_hero_content h1 {
        font-size: 36px;
    }
    
    .liggle_s_h_section_header h2 {
        font-size: 28px;
    }
    
    .liggle_s_h_why_choose_img {
        margin-bottom: 40px;
    }
}

@media (max-width: 767px) {
    section {
        padding: 60px 0;
    }
    
    .liggle_s_h_hero_content h1 {
        font-size: 30px;
    }
    
    .liggle_s_h_hero_content p {
        font-size: 16px;
    }
    
    .liggle_s_h_hero_buttons {
        flex-direction: column;
    }
    
    .liggle_s_h_hero_buttons .liggle_s_h_btn {
        width: 100%;
        text-align: center;
        margin-bottom: 10px;
    }
    
    .liggle_s_h_section_header h2 {
        font-size: 24px;
    }
    
    .liggle_s_h_contact_form_container {
        padding: 30px 20px;
    }
}

.liggle_s_h_services{
   padding: 75px 0px !important
}


/* 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;
  }