/*
Theme Name: Sunshine Love Care
Theme URI: https://sunshinelovecare.com.au
Author: EG Solutions
Author URI: https://egsolutions.com.au
Description: A custom WordPress theme designed specifically for Sunshine Love Care, featuring a modern, responsive design with Bootstrap integration. Perfect for healthcare and care services websites.
Requires at least: 5.0
Tested up to: 6.8
Requires PHP: 7.4
Version: 1.0.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: sunshine-love-care
Tags: custom-background, custom-logo, custom-menu, featured-images, threaded-comments, translation-ready, healthcare, care-services, responsive, bootstrap
*/

/* Import Bootstrap CSS */
@import url('https://cdn.jsdelivr.net/npm/bootstrap@5.3.2/dist/css/bootstrap.min.css');

/* Custom CSS Variables */
:root {
    --primary-color: #1368be;
    --secondary-color: #cc2217;
    --accent-color: #519f26;
    --success-color: #519f26;
    --light-color: #F8F9FA;
    --dark-color: #212529;
    --text-color: #333333;
    --border-color: #DEE2E6;
    /*--shadow: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.075);*/
    --border-radius: 0.375rem;
}

/* Global Styles */
* {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
    color: var(--text-color);
    background-color: #ffffff;
    font-weight: 400;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Paragraph Typography - Font Size and Color for All Paragraphs */
p, ul li, ol li {
    font-size: 16px;
    line-height: 1.6;
    color: #333333;
    margin: 0 0 20px 0;
    font-weight: 400;
}
.elementor-heading-title {
	line-height:1.2 !important;
}
/* Specific paragraph styles for different contexts */
.hero-section p {
    font-size: 18px;
    line-height: 1.6;
    color: #ffffff;
    margin-bottom: 2rem;
    opacity: 0.9;
    font-weight: 400;
}

.full-width-page .entry-content p {
    font-size: 16px;
    line-height: 1.6;
    color: #333333;
    margin-bottom: 20px;
    font-weight: 400;
}

.footer-widget p {
    font-size: 14px;
    line-height: 1.6;
    color: #adb5bd;
    margin-bottom: 15px;
    font-weight: 400;
}

.header-top-bar .widget p {
    font-size: 14px;
    line-height: 1.4;
    color: #666666;
    margin-bottom: 5px;
    font-weight: 400;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    font-weight: 700;
    color: var(--dark-color);
    line-height: 1.2;
	margin:10px 0px !important;
}

h1 { 
    font-size: 2.5rem; 
    font-weight: 900 !important;
}
h2 { 
    font-size: 2rem; 
    font-weight: 600;
}
h3 { 
    font-size: 1.75rem; 
    font-weight: 600;
}
h4 { 
    font-size: 1.5rem; 
    font-weight: 500;
}
h5 { 
    font-size: 1.25rem; 
    font-weight: 500;
}
h6 { 
    font-size: 1rem; 
    font-weight: 500;
}

/* Links */
a {
    color: var(--primary-color);
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: var(--secondary-color);
    text-decoration: underline;
}

/* Buttons */
.btn-primary {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
}

.btn-primary:hover {
    background-color: var(--secondary-color);
    border-color: var(--secondary-color);
}

.btn-secondary {
    background-color: var(--secondary-color);
    border-color: var(--secondary-color);
}

.btn-accent {
    background-color: var(--accent-color);
    border-color: var(--accent-color);
    color: white;
}

.btn-accent:hover {
    background-color: var(--secondary-color);
    border-color: var(--secondary-color);
    color: white;
}

/* Header Styles */
.site-header {
    background-color: white;
    position: sticky;
    top: 0;
    z-index: 1000;
}


.site-header:before {
	content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 10px;
    background: #cc2217;
	background-image: linear-gradient(90deg, #1368be 30%, #519f26 40%, #519f26 50%, #fcbd1a 10%, #fcbd1a 20%, #cc2217 30%, #cc2217);
}

.navbar-brand {
    font-weight: 700;
    font-size: 1.5rem;
    color: var(--primary-color) !important;
}
.navbar-nav {	
	padding:0px !important;
}
.navbar-nav li {
	margin:0px !important;
	padding: 0px !important;
}
.navbar-nav .nav-link {
    color: var(--dark-color) !important;
    font-weight: 700;
    padding: 0.5rem 1rem !important;
    transition: color 0.3s ease;
}

.navbar-nav .nav-link:hover {
    color: #cc2217 !important;
}

.custom-logo-link img {
    max-width: 120px;
    height: auto;
}

.navbar-nav .dropdown-menu .dropdown-item {
	font-weight: 600 !important;
	white-space: normal !important;
}

@media (min-width: 992px) {
    .navbar-expand-lg .navbar-nav .dropdown-menu {
		width: 330px !important; 
		max-width:330px !important;
	}
}




/* Hero Section */
.hero-section {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: white;
    padding: 4rem 0;
    text-align: center;
}

.hero-section h1 {
    color: white;
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
}

/* Main Content */
.main-content {
    padding: 3rem 0;
}

.slider_txt, .slider_txt p {
	color: #fff !important;
	font-size:20px !important;
	font-weight: 500 !important;
}
/* Cards */
.card {
    border: none;
    box-shadow: var(--shadow);
    border-radius: var(--border-radius);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15);
}

.card-header {
    background-color: var(--primary-color);
    color: white;
    border: none;
    border-radius: var(--border-radius) var(--border-radius) 0 0 !important;
}

/* Footer */
.site-footer {
    background-color: #2e0236;
    color: white;
    padding: 3rem 0 1rem;
	border-top: 10px solid #cc2217;
}

.site-footer .row {
    margin-bottom: 0px;
}

.site-footer .col-lg-4,
.site-footer .col-lg-2,
.site-footer .col-md-6 {
    margin-bottom: 1rem;
}

.site-footer  h4.widget-title{ 
    color: white !important;
    margin-bottom: 1.5rem;
    font-weight: 700;
    position: relative;
    padding-bottom: 0.75rem;
}
.footer-widget h4{
    color: white !important;
    margin-bottom: 1.5rem;
    font-weight: 600;
    position: relative;
    padding-bottom: 0.75rem;
}

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

.footer-widget a {
    color: #adb5bd;
    text-decoration: none;
    transition: color 0.3s ease;
    font-size: 0.9rem;
    line-height: 1.6;
}

.footer-widget a:hover {
    color: white;
    text-decoration: none;
}

/* Footer Menu Styles */
.footer-widget .menu {
    list-style: none;
    margin: 0;
    padding: 0;
}

.footer-widget .menu li {
    margin-bottom: 0.5rem;
    padding: 0;
}

.footer-widget .menu li:last-child {
    margin-bottom: 0;
}

.footer-widget .menu a {
    display: block;
    padding: 0.25rem 0;
    transition: all 0.3s ease;
}

.footer-widget .menu a:hover {
    padding-left: 0.5rem;
}

/* Footer Contact Widget Enhanced */
.footer-contact-info {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.footer-contact-info .contact-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.footer-contact-info .contact-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    background-color:#519f26;
    border-radius: 50%;
    flex-shrink: 0;
    transition: background-color 0.3s ease;
}

.footer-contact-info .contact-item:hover .contact-icon {
    background-color: var(--secondary-color);
}

.footer-contact-info .contact-icon i {
    font-size: 1.1rem;
    color: white;
}

.footer-contact-info .contact-details {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.footer-contact-info .contact-link {
    color: #fff;
    text-decoration: none;
    font-size: 0.95rem;
    line-height: 1.5;
    transition: color 0.3s ease;
    font-weight: 500;
    padding-top: 6px;
}

.footer-contact-info .contact-link:hover {
    color: white;
    text-decoration: none;
}

.footer-contact-info .contact-text {
    color: #fff;
    font-size: 0.95rem;
    line-height: 1.5;
    font-weight: 500;
    padding-top: 6px;
}

.site-footer ul {
    padding:0px;
    margin:0px;
}
.site-footer ul.menu li{
    list-style-type: none;
    color: #ffffff;
	margin: 0px !important;
	padding: 0px 0px 6px !important;
}

.site-footer ul.menu li a{
    color:  var(--light-color) !important;
    display: block;
    padding: 5px 0px !important;
    font-size: 0.95rem;
}
.site-footer ul.menu li a:hover{
    color:  var(--accent-color) !important;

    text-decoration: none;
    
}

.ndis-logo-home {
	margin: -24px 0px 0px;
}


/* Footer Bottom Enhanced */
.footer-bottom {
    border-top: 1px solid #495057;
    padding-top: 1.5rem;
    margin-top: 2rem;
    text-align: center;
    font-size: 14px;
}

.footer-bottom p,
.footer-bottom a,
.footer-bottom .footer-menu,
.footer-bottom .footer-menu li,
.footer-bottom .footer-menu a {
    font-size: 14px;
	color: #fff !important;
}

.footer-bottom a {
    color: var(--primary-color);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-bottom a:hover {
    color: var(--secondary-color);
    text-decoration: none;
}

/* Responsive Footer */
@media (max-width: 768px) {
    .site-footer {
        padding: 2rem 0 1rem;
    }
    
    .site-footer .col-lg-4,
    .site-footer .col-lg-2,
    .site-footer .col-md-6 {
        margin-bottom: 1.5rem;
    }
    
    .footer-widget h5 {
        font-size: 1rem;
        margin-bottom: 1rem;
    }
    
    .footer-contact-info {
        gap: 1rem;
    }
    
    .footer-contact-info .contact-item {
        gap: 0.75rem;
    }
    
    .footer-contact-info .contact-icon {
        width: 32px;
        height: 32px;
    }
    
    .footer-contact-info .contact-icon i {
        font-size: 1rem;
    }
    
    .footer-contact-info .contact-link,
    .footer-contact-info .contact-text {
        font-size: 0.9rem;
    }
    
    .footer-widget .menu a {
        font-size: 0.85rem;
    }
}

/* Sidebar */
.sidebar {
    background-color: var(--light-color);
    padding: 2rem;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
}

.widget {
    margin-bottom: 2rem;
}

.widget-title {
    color: #ffffff;
    font-weight: 600;
    margin-bottom: 1rem;
    padding-bottom: 0.5rem;
    border-bottom: none !important
}

/* Blog Posts */
.post {
    margin-bottom: 3rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid var(--border-color);
}

.post-title {
    color: var(--primary-color);
}

.post-meta {
    color: #6c757d;
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

.post-excerpt {
    margin-bottom: 1rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-section h1 {
        font-size: 2rem;
    }
    
    .hero-section p {
        font-size: 1rem;
    }
    
    h1 { font-size: 2rem; }
    h2 { font-size: 1.75rem; }
    h3 { font-size: 1.5rem; }
}

/* Accessibility */
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

/* Focus styles for accessibility */
:focus {
    outline: 2px solid var(--primary-color);
    outline-offset: 2px;
}

/* Loading animation */
.loading {
    opacity: 0.6;
    pointer-events: none;
}

/* Custom animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in-up {
    animation: fadeInUp 0.6s ease-out;
}

/* Full Width Page Template */
.full-width-page {
    padding: 2rem 0 0px;
}

.full-width-page .entry-header {
    margin-bottom: 2rem;
    text-align: center;
}

.full-width-page .entry-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.full-width-page .entry-content {
    font-size: 1.1rem;
    line-height: 1.8;
}

.full-width-page .entry-content h2,
.full-width-page .entry-content h3,
.full-width-page .entry-content h4 {
    color: var(--primary-color);
    margin-top: 2rem;
    margin-bottom: 1rem;
}

.full-width-page .entry-content p {
    margin-bottom: 1.5rem;
}

.full-width-page .entry-content img {
    max-width: 100%;
    height: auto;
    border-radius: var(--border-radius);
    margin: 1rem 0;
}

.full-width-page .entry-content .wp-block-image {
    margin: 2rem 0;
}

.full-width-page .entry-content .wp-block-image img {
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
}

/* Full width sections for better content display */
.full-width-page .entry-content .wp-block-group {
    margin: 2rem 0;
}

.full-width-page .entry-content .wp-block-columns {
    margin: 2rem 0;
}

.full-width-page .entry-content .wp-block-column {
    padding: 0 1rem;
}

/* Responsive adjustments for full width */
@media (max-width: 768px) {
    .full-width-page .entry-title {
        font-size: 2rem;
    }
    
    .full-width-page .entry-content {
        font-size: 1rem;
    }
    
    .full-width-page .entry-content .wp-block-column {
        padding: 0 0.5rem;
    }
}

/* Custom animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in-up {
    animation: fadeInUp 0.6s ease-out;
}

/* Page Title Section */
.page-title-section {
    position: relative;
    min-height: 300px;
    display: flex;
    align-items: center;
    background-color: var(--primary-color);
    overflow: hidden;
}

.page-title-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
}

.page-title-bg-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.page-title-overlay {
    position: relative;
    z-index: 2;
    width: 100%;
    background: linear-gradient(135deg, rgba(46, 134, 171, 0.8) 0%, rgba(162, 59, 114, 0.8) 100%);
    padding: 4rem 0;
}

.page-title-content {
    text-align: center;
    color: white;
}

.page-title-content .breadcrumb {
    background: transparent;
    padding: 0;
    margin-bottom: 1rem;
}

.page-title-content .breadcrumb-item {
    color: rgba(255, 255, 255, 0.8);
}

.page-title-content .breadcrumb-item a {
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
}

.page-title-content .breadcrumb-item a:hover {
    color: white;
    text-decoration: underline;
}

.page-title-content .breadcrumb-item.active {
    color: white;
}

.page-title-content .breadcrumb-item + .breadcrumb-item::before {
    color: rgba(255, 255, 255, 0.6);
}

.page-title {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: white;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.page-subtitle {
    font-size: 1.25rem;
    font-weight: 400;
    margin-bottom: 0;
    color: rgba(255, 255, 255, 0.9);
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

/* Responsive adjustments for page title */
@media (max-width: 768px) {
    .page-title-section {
        min-height: 200px;
    }
    
    .page-title-overlay {
        padding: 2rem 0;
    }
    
    .page-title {
        font-size: 2rem;
    }
    
    .page-subtitle {
        font-size: 1rem;
    }
	
	/* Home Main Banner */
	
	.home_main_banner div.e-con-inner {
		padding: 100px 10px !important;
	}
	.ndis-logo-home {
		float: left;
		margin: 0px;
    	padding: 0px;
    	text-align: left !important;
	}
}

/* Desktop Hover Submenu */
@media (min-width: 992px) {
    .navbar-nav .dropdown:hover > .dropdown-menu {
        display: block;
        animation: fadeInDown 0.3s ease-out;
    }
    
    .navbar-nav .dropdown-menu {
        margin-top: 0;
        border: none;
        box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15);
        border-radius: var(--border-radius);
    }
	.navbar-nav .dropdown-menu li {
		margin: 0px !important;
		border-bottom: 1px solid #f1f1f1;
	}
    
    .navbar-nav .dropdown-menu .dropdown-item {
        padding: 0.75rem 1.5rem;
        color: var(--dark-color);
        transition: all 0.3s ease;
        text-decoration: none;
    }
    
    .navbar-nav .dropdown-menu .dropdown-item:hover {
        background-color: #1368be;
        color: white;
        transform: translateX(5px);
        text-decoration: none;
    }
    
    .navbar-nav .dropdown-menu .dropdown-item:active {
        background-color: #1368be;
        color: white !important;
        text-decoration: none;
    }
}

/* Navigation link hover styles */
.navbar-nav .nav-link:hover {
    text-decoration: none;
}

.navbar-nav .nav-link:focus {
    text-decoration: none;
}

.navbar-nav .dropdown-toggle:hover {
    text-decoration: none;
}

.navbar-nav .dropdown-toggle:focus {
    text-decoration: none;
}

/* Submenu animation */
@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Custom animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in-up {
    animation: fadeInUp 0.6s ease-out;
}

/* Header Top Bar */
.header-top-bar {
    background-color: #1368be;
    border-bottom: none !important;
    padding: 8px !important;
    font-size: 0.875rem;
}

.header-top-bar .widget {
    margin-bottom: 0;
}

.header-top-bar .widget-title {
    display: none;
}

.header-top-bar .widget ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    gap: 1rem;
}

.header-top-bar .widget ul li {
    margin: 0;
}

.header-top-bar .widget ul li:last-child {
    margin-right: 0;
}

.header-top-bar .widget a {
    color: #fff !important;
    text-decoration: none;
	font-weight: bold;
}

.header-top-bar .widget a:hover {
    color: #fcbd1a !important;
    text-decoration: none;
}

.header-top-bar .widget p {
    margin: 0;
}

/* Phone Number Styles */
.phone-number-top {
    text-decoration: none !important;
    color: white;
    font-weight: 500;
    transition: color 0.3s ease;
}

.phone-number-top:hover {
    color: white;
    text-decoration: none !important;
}

.phone-number-top:focus {
    text-decoration: none !important;
}

.header-contact-info {
    display: flex;
    align-items: center;
}

.header-contact-info .phone-number-top {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.875rem;
}

.header-contact-info .phone-number-top i {
    font-size: 1rem;
}

.phone-number {
    border-radius: 30px;
    padding: 13px 30px !important;
    background-color: #519f26 !important;
    border: none !important;
	font-weight:bold !important;
}

.phone-number:hover {
    background-color: #cc2217 !important;
    border: none !important;
}

/* Remove underline from all phone number links */
a[href^="tel:"] {
    text-decoration: none !important;
}

a[href^="tel:"]:hover {
    text-decoration: none !important;
}

a[href^="tel:"]:focus {
    text-decoration: none !important;
}

/* Header Top Bar Responsive */
@media (max-width: 768px) {
    .header-top-bar {
        padding: 0.25rem 0;
        font-size: 0.8rem;
    }
    
    .header-top-bar .widget ul li {
        margin-right: 0.5rem;
    }
}

/* Contact Info Widget Styles */
.contact-info-widget {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.contact-item {
    display: flex;
    align-items: center;
}

.contact-link {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-color);
    text-decoration: none;
    font-size: 0.875rem;
    font-weight: 500;
    transition: color 0.3s ease;
}

.contact-link:hover {
    color: var(--primary-color);
    text-decoration: none;
}

.contact-link:focus {
    text-decoration: none;
}

.contact-link i {
    font-size: 1rem;
    color: #fff;
}

.contact-link.phone-number {
    color: var(--primary-color);
}

.contact-link.phone-number:hover {
    color: var(--secondary-color);
}

.contact-link.email-link {
    color: var(--text-color);
}

.contact-link.email-link:hover {
    color: var(--primary-color);
}

/* Responsive adjustments for contact widget */
@media (max-width: 768px) {
    .contact-info-widget {
        gap: 1rem;
        flex-direction: column;
        align-items: flex-start;
    }
    
    .contact-item {
        margin-bottom: 0.25rem;
    }
    
    .contact-link {
        font-size: 0.8rem;
    }
    
    .contact-link i {
        font-size: 0.9rem;
    }
}

/* Ensure Inter font on all text elements */
p, span, div, a, button, input, textarea, select, label, li, td, th {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
}

/* Navigation font consistency */
.navbar-brand,
.navbar-nav .nav-link,
.navbar-nav .dropdown-item,
.navbar-toggler {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
}

.navbar-toggler {
	border:1px solid #333 !important;
	border-radius:3px !important;
	-moz-border-radius:3px !important;
	-webkit-border-radius:3px !important;
}
/* Button font consistency */
.btn,
.btn-primary,
.btn-secondary,
.btn-accent {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    font-weight: 500;
}

/* Form elements font consistency */
input, textarea, select, label {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
}

/* Widget and sidebar font consistency */
.widget,
.widget-title,
.sidebar,
.contact-info-widget,
.contact-link {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
}

/* Header Top Right Social Links */
.header-top-bar .col-md-6.text-md-end .wp-block-social-links {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: 0.5rem;
    margin: 0;
    padding: 0;
    list-style: none;
}

.header-top-bar .col-md-6.text-md-end .wp-block-social-links li {
    margin: 0;
    padding: 0;
}

.header-top-bar .col-md-6.text-md-end .wp-block-social-links .wp-block-social-link-anchor {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    transition: all 0.3s ease;
    text-decoration: none;
}

.header-top-bar .col-md-6.text-md-end .wp-block-social-links .wp-block-social-link-anchor:hover {
    background-color: var(--secondary-color);
    transform: translateY(-2px);
}

.header-top-bar .col-md-6.text-md-end .wp-block-social-links svg {
    width: 16px;
    height: 16px;
	fill: #fff !important;
    
}

.header-top-bar .col-md-6.text-md-end .wp-block-social-links .wp-block-social-link-label {
    display: none;
}

/* Responsive adjustments for social links */
@media (max-width: 768px) {
    .header-top-bar .col-md-6.text-md-end .wp-block-social-links {
        gap: 0.25rem;
    }
    
    .header-top-bar .col-md-6.text-md-end .wp-block-social-links .wp-block-social-link-anchor {
        width: 24px;
        height: 24px;
    }
    
    .header-top-bar .col-md-6.text-md-end .wp-block-social-links svg {
        width: 14px;
        height: 14px;
    }
}


/* Service Pages */

.service_heading {
	margin:0px !important;
	padding: 0px !important;
	
}
.service_heading h2, .service_heading h4 {
	padding: 0px !important;
	margin:0px !important;
	line-height:1.2em !important;
}

.service_box_main {
	min-height:430px;
	padding: 20px 10px 20px 30px !important;
}
.service_box_main_sm {
	min-height:300px;
	padding: 20px 10px 20px 30px !important;
}
.service_box_main ul, .service_box_main_sm ul {
	padding:0px !important;
}
.service_box_main h3, .service_box_main_sm h3 {
	margin: 0px 0px 18px !important;
}
.service_box_main, .service_box_main_sm, .service_box_main_blue, .service_box_main_red, .service_box_main_green {
	padding: 15px;
	color:#fff !important;
	border-radius:20px !important;
}
.service_box_main, .service_box_main_sm {
	background-color: #1368be;
}
.service_box_main p, .service_box_main ul li, .service_box_main_sm p, .service_box_main_sm ul li {
	color:#fff !important;
}
.service_box_main_red {
	background-color: #cc2217;
}
.service_box_main_green {
	background-color: #519f26;
}
.service_contact_us {
	box-shadow: 0px 0px 20px 0 rgb(0 20 9 / 10%);
    border-radius: 10px;
    padding: 45px 10px 0px 10px;
    background: #fff;
}

.service_contact_list span.elementor-icon-list-icon {
	background: #cc2217;
    padding: 8px 8px 8px 10px;
    border-radius: 50%;
    color: #fff !important;
    height: 35px;
	width: 35px;
}
.wpcf7 input[type="submit"] {
	background-color: #519f26 !important;
	border:none !important;
	color: #fff;
	font-weight: bold !important;
}



/* Contact Forms */

.wpcf7 input, .wpcf7 textarea {
    border-radius: 0.5rem;
    border: 1px solid #999;
    padding: 12px;
    width: 100%;
	font-size:13px !important;
}

.wpcf7 input:focus, .wpcf7 textarea:focus {
    border-color: #007bff;
    outline: none;
    box-shadow: 0 0 5px rgba(0,123,255,0.25);
}

.wpcf7 input[type="checkbox"], .wpcf7 input[type="radio"] {
	width: auto !important;
}
.wpcf7-list-item {
	width: 100% !important;
}

.wpcf7-form h4 {
	font-weight: 600 !important;
	color: #1368be !important;
}
