/* 
   Home Shifting Solution Packers and Movers Professional Redesign
   Base: Bootstrap 5.3
*/

:root {
    --primary-color: #0d6efd;
    --secondary-color: #212529;
    --accent-color: #ffc107;
    --light-bg: #f8f9fa;
    --white: #ffffff;
    --text-dark: #212529;
    --text-muted: #6c757d;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    color: var(--text-dark);
    line-height: 1.6;
}

/* Typography Customization */
h1,
h2,
h3,
h4,
h5,
h6 {
    font-weight: 700;
}

/* Header Adjustments */
.navbar {
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.nav-link {
    font-weight: 600;
    transition: color 0.3s ease;
}

/* Section Spacing */
section {
    padding: 80px 0;
}

.bg-light-alt {
    background-color: var(--light-bg);
}

/* Card Enhancements */
.card {
    border: none;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

/* Form Styles */
.form-control:focus {
    box-shadow: 0 0 0 0.25rem rgba(13, 110, 253, 0.15);
}

/* Utility Classes */
.text-primary-custom {
    color: var(--primary-color);
}

.bg-primary-custom {
    background-color: var(--primary-color);
}

.text-justify {
    text-align: justify;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    section {
        padding: 50px 0;
    }
}