/* SB-1211.com Custom Styles */

/* Color Variables */
:root {
    --primary-color: #1b5e20;
    --secondary-color: #388e3c;
    --accent-color: #ff8f00;
    --success-color: #2e7d32;
    --info-color: #1976d2;
    --warning-color: #f57c00;
    --danger-color: #d32f2f;
    --light-color: #f8f9fa;
    --dark-color: #212529;
    --text-muted: #6c757d;
}

/* Global Styles */
body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: var(--dark-color);
}

.navbar-brand {
    font-weight: 700;
    font-size: 1.5rem;
}



/* Hero Section */
.hero-section {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 2rem 0;
}

/* Mobile responsiveness */
@media (max-width: 768px) {
    .hero-section {
        min-height: 90vh;
        padding: 1rem 0;
    }
    
    .display-3, .display-4, .display-5 {
        font-size: 2rem !important;
    }
    
    .lead {
        font-size: 1.1rem !important;
    }
    
    .btn-lg {
        padding: 0.75rem 1.5rem;
        font-size: 1rem;
    }
    
    .navbar-brand {
        font-size: 1.25rem !important;
    }
    
    .hero-visual {
        max-width: 100% !important;
        margin: 2rem 0 !important;
    }
    
    .adu-grid .col-3 {
        flex: 0 0 auto;
        width: 50% !important;
    }
    
    .building-main {
        margin-bottom: 2rem !important;
    }
    
    .stat-card h3 {
        font-size: 1.5rem !important;
    }
    
    .team-icon {
        width: 60px !important;
        height: 60px !important;
    }
    
    .feature-icon {
        font-size: 2rem !important;
        width: 60px !important;
        height: 60px !important;
    }
    
    .faq-item-home .accordion-button {
        font-size: 0.95rem;
        padding: 0.75rem 1rem;
    }
    
    .scroll-indicator {
        text-align: center;
    }
    
    .scroll-indicator .small {
        font-size: 0.8rem;
    }
}

/* Additional mobile improvements */
@media (max-width: 576px) {
    .container {
        padding-left: 1rem;
        padding-right: 1rem;
    }
    
    .py-5 {
        padding-top: 2rem !important;
        padding-bottom: 2rem !important;
    }
    
    .display-5 {
        font-size: 1.75rem !important;
    }
    
    .h1, h1 {
        font-size: 1.5rem;
    }
    
    .h2, h2 {
        font-size: 1.25rem;
    }
    
    .btn {
        font-size: 0.9rem;
        padding: 0.5rem 1rem;
    }
    
    .navbar-nav .nav-link {
        padding: 0.5rem 1rem !important;
    }
    
    .hero-visual .row {
        margin: 0.5rem 0;
    }
    
    .stats-grid .col-6 {
        margin-bottom: 1rem;
    }
    
    .job-card {
        margin-bottom: 1.5rem;
    }
    
    .job-card .card-body {
        padding: 1rem;
    }
    
    .job-card h5 {
        font-size: 1.1rem;
    }
    
    .hero-stats .stat-item h3 {
        font-size: 1.5rem;
    }
    
    .hero-stats .stat-item p {
        font-size: 0.8rem;
    }
}

/* Navigation mobile improvements */
.navbar-toggler {
    border: none;
    padding: 0.25rem 0.5rem;
}

.navbar-toggler:focus {
    box-shadow: none;
}

.navbar-collapse {
    margin-top: 1rem;
}

/* Cursor pointer class */
.cursor-pointer {
    cursor: pointer;
}

/* Touch-friendly buttons */
@media (hover: none) {
    .btn:hover {
        transform: none;
    }
    
    .scroll-indicator:hover {
        transform: none;
    }
}

/* Modern Navigation Styles */
.modern-navbar {
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
    border-bottom: 1px solid rgba(0,0,0,0.05);
}

.navbar-brand .brand-container {
    transition: all 0.3s ease;
}

.navbar-brand .brand-icon {
    transition: transform 0.3s ease;
}

.navbar-brand:hover .brand-icon {
    transform: scale(1.05);
}

.nav-hover {
    transition: all 0.3s ease;
    position: relative;
}

.nav-hover:hover {
    background-color: rgba(13, 110, 253, 0.08);
    color: var(--primary-color) !important;
}

.modern-dropdown {
    margin-top: 0.5rem;
    border: 1px solid rgba(0,0,0,0.05);
    backdrop-filter: blur(10px);
}

.modern-dropdown .dropdown-item {
    transition: all 0.3s ease;
    margin: 0.25rem 0.5rem;
}

.modern-dropdown .dropdown-item:hover {
    background-color: rgba(13, 110, 253, 0.08);
    color: var(--primary-color);
}

.btn-modern {
    transition: all 0.3s ease;
    font-weight: 500;
    border-width: 2px;
}

.btn-modern:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

.btn-cta {
    background: linear-gradient(135deg, #0d6efd 0%, #6610f2 100%);
    border: none;
}

.btn-cta:hover {
    background: linear-gradient(135deg, #0b5ed7 0%, #5a0db3 100%);
}

/* Mobile Navigation Improvements */
@media (max-width: 991.98px) {
    .modern-navbar .container-fluid {
        padding-left: 1rem;
        padding-right: 1rem;
    }
    
    .navbar-collapse {
        margin-top: 1.5rem;
        padding: 1rem 0;
        border-top: 1px solid rgba(0,0,0,0.1);
    }
    
    .navbar-nav {
        margin-bottom: 1rem;
    }
    
    .nav-item {
        margin: 0.25rem 0;
    }
    
    .nav-hover {
        border-radius: 0.5rem;
        margin: 0.125rem 0;
    }
    
    .modern-dropdown {
        margin-top: 0.25rem;
        margin-left: 1rem;
        box-shadow: none;
        border: 1px solid rgba(0,0,0,0.1);
        background-color: #f8f9fa;
    }
    
    .btn-modern {
        width: 100%;
        margin-bottom: 0.5rem;
    }
    
    .btn-modern:hover {
        transform: none;
    }
}

/* Brand responsive adjustments */
@media (max-width: 576px) {
    .brand-icon {
        width: 40px !important;
        height: 40px !important;
    }
    
    .brand-icon i {
        font-size: 1rem !important;
    }
    
    .brand-text {
        font-size: 1.25rem !important;
    }
    
    .navbar-toggler {
        padding: 0.25rem 0.5rem;
    }
}

/* Navbar spacing for fixed positioning */
body {
    padding-top: 76px;
}

@media (max-width: 768px) {
    body {
        padding-top: 70px;
    }
}

/* Service Areas Section */
.service-area-card {
    transition: all 0.3s ease;
}

.service-area-hover:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.1) !important;
}

.service-area-icon {
    transition: all 0.3s ease;
}

.service-area-hover:hover .service-area-icon {
    transform: scale(1.1);
}

.stat-mini {
    transition: all 0.3s ease;
}

.service-area-hover:hover .stat-mini {
    background: linear-gradient(135deg, #f8f9fa, #e9ecef) !important;
}

/* Breadcrumb Navigation */
.breadcrumb-modern {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border-radius: 10px;
    padding: 1rem 1.5rem;
    margin-bottom: 2rem;
}

.breadcrumb-modern .breadcrumb {
    margin-bottom: 0;
    background: transparent;
    padding: 0;
}

.breadcrumb-modern .breadcrumb-item + .breadcrumb-item::before {
    content: "→";
    color: #6c757d;
}

.breadcrumb-modern .breadcrumb-item a {
    color: #0d6efd;
    text-decoration: none;
    font-weight: 500;
}

.breadcrumb-modern .breadcrumb-item a:hover {
    color: #0b5ed7;
    text-decoration: underline;
}

.breadcrumb-modern .breadcrumb-item.active {
    color: #495057;
    font-weight: 600;
}

/* City Landing Page Styles */
.city-hero {
    background: linear-gradient(135deg, #0d6efd 0%, #6610f2 100%);
    color: white;
    position: relative;
    overflow: hidden;
}

.city-hero::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0,0,0,0.3);
    z-index: 1;
}

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

.city-stat-card {
    background: rgba(255,255,255,0.95);
    backdrop-filter: blur(10px);
    border-radius: 15px;
    padding: 1.5rem;
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid rgba(255,255,255,0.2);
}

.city-stat-card:hover {
    background: rgba(255,255,255,1);
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.1);
}

.city-stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.neighborhood-card {
    border: 1px solid #e9ecef;
    border-radius: 15px;
    padding: 1.5rem;
    height: 100%;
    transition: all 0.3s ease;
    background: white;
}

.neighborhood-card:hover {
    border-color: #0d6efd;
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(13,110,253,0.1);
}

.zoning-info {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border-radius: 15px;
    padding: 2rem;
    margin: 2rem 0;
}

.market-trend {
    background: white;
    border: 1px solid #e9ecef;
    border-radius: 10px;
    padding: 1.5rem;
    margin-bottom: 1rem;
    transition: all 0.3s ease;
}

.market-trend:hover {
    border-color: #0d6efd;
    box-shadow: 0 5px 15px rgba(13,110,253,0.1);
}

.trend-positive {
    border-left: 4px solid #198754;
}

.trend-neutral {
    border-left: 4px solid #ffc107;
}

.trend-negative {
    border-left: 4px solid #dc3545;
}

/* Modern SB-1211 Section Styles */
.sb-1211-overview {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    position: relative;
    overflow: hidden;
}

.sb-1211-overview::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23dee2e6' fill-opacity='0.4'%3E%3Cpath d='M54 10L46 2L42 6L50 14L42 22L46 26L54 18L58 14L54 10M14 50L22 58L26 54L18 46L26 38L22 34L14 42L10 46L14 50'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E") repeat;
    opacity: 0.5;
}

.sb-1211-badge {
    position: relative;
    z-index: 2;
}

.text-gradient {
    background: linear-gradient(135deg, #0d6efd 0%, #6610f2 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
    z-index: 2;
}

.modern-feature-card {
    background: white;
    border-radius: 20px;
    padding: 2rem 1.5rem;
    border: 1px solid rgba(0,0,0,0.05);
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.modern-feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #0d6efd, #6610f2);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.modern-feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

.modern-feature-card:hover::before {
    transform: scaleX(1);
}

.modern-icon-wrapper {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.modern-feature-icon {
    width: 80px;
    height: 80px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: white;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
}

.modern-feature-icon::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, rgba(255,255,255,0.2), transparent);
    transform: translateX(-100%);
    transition: transform 0.6s ease;
}

.modern-feature-card:hover .modern-feature-icon::before {
    transform: translateX(100%);
}

.bg-gradient-primary {
    background: linear-gradient(135deg, #0d6efd 0%, #4c84ff 100%);
}

.bg-gradient-success {
    background: linear-gradient(135deg, #28a745 0%, #20c997 100%);
}

.bg-gradient-info {
    background: linear-gradient(135deg, #17a2b8 0%, #6f42c1 100%);
}

.bg-gradient-warning {
    background: linear-gradient(135deg, #ffc107 0%, #fd7e14 100%);
}

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

/* Mobile responsiveness for SB-1211 section */
@media (max-width: 768px) {
    .sb-1211-overview {
        padding: 3rem 0;
    }
    
    .modern-feature-card {
        padding: 1.5rem 1rem;
        margin-bottom: 1.5rem;
    }
    
    .modern-feature-icon {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }
    
    .text-gradient {
        font-size: 1.75rem !important;
    }
    
    .sb-1211-badge .badge {
        font-size: 0.875rem !important;
    }
}

@media (max-width: 576px) {
    .modern-feature-card {
        padding: 1.25rem 0.75rem;
    }
    
    .modern-feature-icon {
        width: 50px;
        height: 50px;
        font-size: 1.25rem;
        border-radius: 15px;
    }
    
    .card-title {
        font-size: 1.1rem;
    }
    
    .card-text {
        font-size: 0.9rem;
    }
}

/* Modern Services Section Styles */
.modern-services-section {
    background: white;
    position: relative;
}

.services-badge {
    position: relative;
    z-index: 2;
}

.modern-service-card {
    background: white;
    border-radius: 24px;
    padding: 2.5rem 2rem;
    border: 1px solid rgba(0,0,0,0.05);
    box-shadow: 0 10px 40px rgba(0,0,0,0.08);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.modern-service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(90deg, #0d6efd, #6610f2);
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.modern-service-card:hover {
    transform: translateY(-15px);
    box-shadow: 0 25px 50px rgba(0,0,0,0.15);
}

.modern-service-card:hover::before {
    transform: scaleX(1);
}

.service-header {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.modern-service-icon {
    width: 70px;
    height: 70px;
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.75rem;
    color: white;
    position: relative;
    overflow: hidden;
    transition: all 0.4s ease;
    flex-shrink: 0;
}

.modern-service-icon::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, rgba(255,255,255,0.3), transparent);
    transform: translateX(-100%);
    transition: transform 0.6s ease;
}

.modern-service-card:hover .modern-service-icon::before {
    transform: translateX(100%);
}

.service-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0;
    color: #212529;
}

.service-description {
    color: #6c757d;
    line-height: 1.6;
    font-size: 1rem;
}

.service-features {
    list-style: none;
    padding: 0;
    margin: 0;
}

.service-features li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.5rem 0;
    color: #495057;
    font-size: 0.95rem;
}

.service-features li i {
    color: #28a745;
    font-size: 0.875rem;
    width: 16px;
}

/* Modern Benefits Section Styles */
.modern-benefits-section {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    position: relative;
    overflow: hidden;
}

.modern-benefits-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23dee2e6' fill-opacity='0.3'%3E%3Ccircle cx='30' cy='30' r='2'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E") repeat;
    opacity: 0.6;
}

.benefits-badge {
    position: relative;
    z-index: 2;
}

.modern-benefit-card {
    background: white;
    border-radius: 20px;
    padding: 2rem 1.5rem;
    border: 1px solid rgba(0,0,0,0.05);
    box-shadow: 0 8px 25px rgba(0,0,0,0.06);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.modern-benefit-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(13, 110, 253, 0.02), rgba(102, 16, 242, 0.02));
    opacity: 0;
    transition: opacity 0.3s ease;
}

.modern-benefit-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.12);
}

.modern-benefit-card:hover::after {
    opacity: 1;
}

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

.modern-benefit-icon {
    width: 70px;
    height: 70px;
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.75rem;
    color: white;
    margin: 0 auto;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
}

.modern-benefit-icon::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, rgba(255,255,255,0.2), transparent);
    transform: scale(0);
    transition: transform 0.4s ease;
    border-radius: 50%;
}

.modern-benefit-card:hover .modern-benefit-icon::before {
    transform: scale(1);
}

.benefit-title {
    font-size: 1.25rem;
    color: #212529;
}

.benefit-description {
    color: #6c757d;
    line-height: 1.6;
    font-size: 0.95rem;
    margin: 0;
}

.bg-gradient-danger {
    background: linear-gradient(135deg, #dc3545 0%, #e74c3c 100%);
}

.bg-gradient-secondary {
    background: linear-gradient(135deg, #6c757d 0%, #495057 100%);
}

/* Mobile responsiveness for sections */
@media (max-width: 768px) {
    .modern-services-section,
    .modern-benefits-section {
        padding: 3rem 0;
    }
    
    .modern-service-card,
    .modern-benefit-card {
        padding: 1.5rem 1rem;
        margin-bottom: 1.5rem;
    }
    
    .service-header {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }
    
    .modern-service-icon,
    .modern-benefit-icon {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }
    
    .service-title,
    .benefit-title {
        font-size: 1.25rem;
    }
    
    .service-description,
    .benefit-description {
        font-size: 0.9rem;
    }
}

@media (max-width: 576px) {
    .modern-service-card,
    .modern-benefit-card {
        padding: 1.25rem 0.75rem;
    }
    
    .modern-service-icon,
    .modern-benefit-icon {
        width: 50px;
        height: 50px;
        font-size: 1.25rem;
        border-radius: 15px;
    }
    
    .service-title,
    .benefit-title {
        font-size: 1.1rem;
    }
    
    .service-features li {
        font-size: 0.85rem;
        padding: 0.25rem 0;
    }
}

/* Unique Services Timeline Section */
.unique-services-section {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    position: relative;
    overflow: hidden;
    color: white;
}

.unique-services-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url("data:image/svg+xml,%3Csvg width='40' height='40' viewBox='0 0 40 40' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%23ffffff' fill-opacity='0.05'%3E%3Cpath d='M20 20c0 0 0-8 0-8s8 0 8 0 0 8 0 8-8 0-8 0z'/%3E%3C/g%3E%3C/svg%3E") repeat;
}

.unique-services-section .badge {
    background: rgba(255, 255, 255, 0.2) !important;
    color: white !important;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.unique-services-section h2 {
    color: white;
}

.unique-services-section .lead {
    color: rgba(255, 255, 255, 0.9) !important;
}

.service-timeline-container {
    position: relative;
    padding: 2rem 0;
}

.service-timeline-line {
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 4px;
    background: linear-gradient(180deg, rgba(255,255,255,0.3) 0%, rgba(255,255,255,0.1) 100%);
    transform: translateX(-50%);
    border-radius: 2px;
}

.timeline-service-card {
    position: relative;
    margin: 3rem 0;
}

.service-step-number {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    z-index: 10;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.step-number {
    width: 60px;
    height: 60px;
    background: white;
    color: #667eea;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 800;
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
    border: 4px solid rgba(255,255,255,0.9);
}

.step-connector {
    width: 2px;
    height: 60px;
    background: rgba(255,255,255,0.3);
    margin-top: 1rem;
}

.timeline-service-card:last-child .step-connector {
    display: none;
}

.service-content-wrapper {
    background: white;
    border-radius: 20px;
    padding: 2.5rem;
    box-shadow: 0 15px 40px rgba(0,0,0,0.1);
    color: #333;
    position: relative;
    margin: 0 auto;
    max-width: 900px;
    transform: translateY(30px);
    opacity: 0;
    animation: slideUp 0.8s ease forwards;
}

@keyframes slideUp {
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.timeline-left .service-content-wrapper {
    margin-left: 0;
    margin-right: auto;
}

.timeline-right .service-content-wrapper {
    margin-left: auto;
    margin-right: 0;
}

.timeline-service-icon {
    width: 80px;
    height: 80px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: white;
    position: relative;
    overflow: hidden;
    transition: all 0.4s ease;
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

.timeline-service-icon::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, rgba(255,255,255,0.2), transparent);
    transform: translateX(-100%);
    transition: transform 0.6s ease;
}

.timeline-service-card:hover .timeline-service-icon::before {
    transform: translateX(100%);
}

.service-details .service-title {
    font-size: 2rem;
    font-weight: 700;
    color: #212529;
    margin-bottom: 1rem;
}

.service-details .service-description {
    color: #6c757d;
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 2rem;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 1rem;
    background: #f8f9fa;
    border-radius: 12px;
    transition: all 0.3s ease;
    border: 1px solid rgba(0,0,0,0.05);
}

.feature-item:hover {
    background: #e9ecef;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.feature-item i {
    color: #667eea;
    font-size: 1.1rem;
    width: 20px;
    flex-shrink: 0;
}

.feature-item span {
    color: #495057;
    font-weight: 500;
    font-size: 0.95rem;
}

/* Mobile Responsiveness for Timeline */
@media (max-width: 992px) {
    .service-timeline-line {
        left: 30px;
    }
    
    .service-step-number {
        left: 30px;
    }
    
    .timeline-left .service-content-wrapper,
    .timeline-right .service-content-wrapper {
        margin-left: 80px;
        margin-right: 0;
    }
    
    .timeline-service-card .row {
        flex-direction: column;
    }
    
    .timeline-service-card .col-lg-2 {
        order: 1;
        margin-bottom: 1.5rem;
    }
    
    .timeline-service-card .col-lg-10 {
        order: 2;
    }
    
    .service-details .service-title {
        font-size: 1.5rem;
    }
    
    .timeline-service-icon {
        width: 70px;
        height: 70px;
        font-size: 1.75rem;
    }
}

@media (max-width: 768px) {
    .unique-services-section {
        padding: 3rem 0;
    }
    
    .service-content-wrapper {
        padding: 1.5rem;
        margin-left: 60px !important;
    }
    
    .service-timeline-line {
        left: 25px;
    }
    
    .service-step-number {
        left: 25px;
    }
    
    .step-number {
        width: 50px;
        height: 50px;
        font-size: 1.25rem;
    }
    
    .timeline-service-icon {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
        margin: 0 auto;
    }
    
    .service-details .service-title {
        font-size: 1.25rem;
        text-align: center;
    }
    
    .service-details .service-description {
        font-size: 1rem;
        text-align: center;
    }
    
    .feature-item {
        padding: 0.5rem 0.75rem;
    }
    
    .feature-item span {
        font-size: 0.9rem;
    }
}

@media (max-width: 576px) {
    .service-content-wrapper {
        padding: 1rem;
        margin-left: 50px !important;
    }
    
    .service-timeline-line {
        left: 20px;
    }
    
    .service-step-number {
        left: 20px;
    }
    
    .step-number {
        width: 40px;
        height: 40px;
        font-size: 1rem;
        border-width: 2px;
    }
    
    .timeline-service-icon {
        width: 50px;
        height: 50px;
        font-size: 1.25rem;
        border-radius: 15px;
    }
    
    .service-details .service-title {
        font-size: 1.1rem;
    }
    
    .service-details .service-description {
        font-size: 0.9rem;
    }
    
    .feature-item {
        padding: 0.4rem 0.6rem;
    }
    
    .feature-item i {
        font-size: 1rem;
    }
    
    .feature-item span {
        font-size: 0.85rem;
    }
}

/* Compact Services Section */
.compact-services-section {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    position: relative;
    overflow: hidden;
}

.compact-services-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url("data:image/svg+xml,%3Csvg width='30' height='30' viewBox='0 0 30 30' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%23ffffff' fill-opacity='0.05'%3E%3Ccircle cx='15' cy='15' r='1.5'/%3E%3C/g%3E%3C/svg%3E") repeat;
}

.compact-services-section .badge {
    background: rgba(255, 255, 255, 0.2) !important;
    color: white !important;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.compact-services-section h2 {
    color: white;
}

.compact-services-section .lead {
    color: rgba(255, 255, 255, 0.9) !important;
}

.compact-service-card {
    background: white;
    border-radius: 16px;
    padding: 1.75rem 1.5rem;
    height: 100%;
    position: relative;
    transition: all 0.3s ease;
    border: 1px solid rgba(0,0,0,0.05);
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
    overflow: hidden;
}

.compact-service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #667eea, #764ba2);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.compact-service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.15);
}

.compact-service-card:hover::before {
    transform: scaleX(1);
}

.service-number {
    position: absolute;
    top: 1rem;
    right: 1rem;
    width: 32px;
    height: 32px;
    background: linear-gradient(135deg, #667eea, #764ba2);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.875rem;
    font-weight: 700;
    box-shadow: 0 4px 12px rgba(102, 126, 234, 0.3);
}

.compact-service-icon {
    width: 60px;
    height: 60px;
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: white;
    margin-bottom: 1.25rem;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
}

.compact-service-icon::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, rgba(255,255,255,0.2), transparent);
    transform: translateX(-100%);
    transition: transform 0.5s ease;
}

.compact-service-card:hover .compact-service-icon::before {
    transform: translateX(100%);
}

.compact-service-card .service-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: #212529;
    margin-bottom: 0.75rem;
    line-height: 1.3;
}

.compact-service-card .service-desc {
    color: #6c757d;
    font-size: 0.9rem;
    line-height: 1.5;
    margin-bottom: 1rem;
}

.compact-features {
    list-style: none;
    padding: 0;
    margin: 0;
}

.compact-features li {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.25rem 0;
    color: #495057;
    font-size: 0.85rem;
    line-height: 1.4;
}

.compact-features li i {
    color: #28a745;
    font-size: 0.75rem;
    width: 12px;
    flex-shrink: 0;
}

/* Mobile responsiveness for compact design */
@media (max-width: 992px) {
    .compact-service-card {
        margin-bottom: 1.5rem;
    }
    
    .compact-service-card .service-title {
        font-size: 1.1rem;
    }
    
    .compact-service-icon {
        width: 55px;
        height: 55px;
        font-size: 1.35rem;
    }
}

@media (max-width: 768px) {
    .compact-services-section {
        padding: 3rem 0;
    }
    
    .compact-service-card {
        padding: 1.5rem 1.25rem;
    }
    
    .compact-service-card .service-title {
        font-size: 1rem;
    }
    
    .compact-service-card .service-desc {
        font-size: 0.85rem;
    }
    
    .compact-features li {
        font-size: 0.8rem;
    }
    
    .compact-service-icon {
        width: 50px;
        height: 50px;
        font-size: 1.25rem;
        margin-bottom: 1rem;
    }
    
    .service-number {
        width: 28px;
        height: 28px;
        font-size: 0.75rem;
    }
}

@media (max-width: 576px) {
    .compact-service-card {
        padding: 1.25rem 1rem;
    }
    
    .compact-service-card .service-title {
        font-size: 0.95rem;
    }
    
    .compact-service-card .service-desc {
        font-size: 0.8rem;
    }
    
    .compact-features li {
        font-size: 0.75rem;
        padding: 0.2rem 0;
    }
    
    .compact-service-icon {
        width: 45px;
        height: 45px;
        font-size: 1.1rem;
        border-radius: 12px;
    }
    
    .service-number {
        width: 26px;
        height: 26px;
        font-size: 0.7rem;
        top: 0.75rem;
        right: 0.75rem;
    }
}

/* Timeline Services Section */
.timeline-services-section {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    position: relative;
    overflow: hidden;
}

.timeline-services-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url("data:image/svg+xml,%3Csvg width='30' height='30' viewBox='0 0 30 30' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%23ffffff' fill-opacity='0.05'%3E%3Ccircle cx='15' cy='15' r='1.5'/%3E%3C/g%3E%3C/svg%3E") repeat;
}

.timeline-services-section .badge {
    background: rgba(255, 255, 255, 0.2) !important;
    color: white !important;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.timeline-services-section h2 {
    color: white;
}

.timeline-services-section .lead {
    color: rgba(255, 255, 255, 0.9) !important;
}

.timeline-container {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
    padding: 2rem 0;
}

.timeline-line {
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 3px;
    background: linear-gradient(180deg, rgba(255,255,255,0.3) 0%, rgba(255,255,255,0.1) 100%);
    transform: translateX(-50%);
    border-radius: 2px;
}

.timeline-item {
    position: relative;
    margin-bottom: 3rem;
}

.timeline-item:last-child {
    margin-bottom: 0;
}

.timeline-marker {
    position: absolute;
    left: 50%;
    top: 1.5rem;
    transform: translateX(-50%);
    z-index: 10;
}

.timeline-number {
    width: 50px;
    height: 50px;
    min-width: 50px;
    min-height: 50px;
    background: white;
    color: #667eea;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    font-weight: 800;
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
    border: 3px solid rgba(255,255,255,0.9);
    flex-shrink: 0;
}

.timeline-card {
    background: white;
    border-radius: 16px;
    padding: 1.5rem;
    margin: 0 auto;
    max-width: 350px;
    color: #333;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    position: relative;
    transition: all 0.3s ease;
}

.timeline-card::before {
    content: '';
    position: absolute;
    top: 1.5rem;
    width: 0;
    height: 0;
    border: 10px solid transparent;
}

.timeline-item:nth-child(odd) .timeline-card {
    margin-left: 0;
    margin-right: auto;
}

.timeline-item:nth-child(odd) .timeline-card::before {
    right: -20px;
    border-left-color: white;
}

.timeline-item:nth-child(even) .timeline-card {
    margin-left: auto;
    margin-right: 0;
}

.timeline-item:nth-child(even) .timeline-card::before {
    left: -20px;
    border-right-color: white;
}

.timeline-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.15);
}

.timeline-icon {
    width: 50px;
    height: 50px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    color: white;
    margin-bottom: 1rem;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
}

.timeline-icon::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, rgba(255,255,255,0.2), transparent);
    transform: translateX(-100%);
    transition: transform 0.5s ease;
}

.timeline-card:hover .timeline-icon::before {
    transform: translateX(100%);
}

.timeline-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: #212529;
    margin-bottom: 0.75rem;
}

.timeline-desc {
    color: #6c757d;
    font-size: 0.9rem;
    line-height: 1.5;
    margin-bottom: 1rem;
}

.timeline-features {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.feature-tag {
    display: inline-flex;
    align-items: center;
    gap: 0.25rem;
    background: #f8f9fa;
    color: #495057;
    padding: 0.25rem 0.5rem;
    border-radius: 8px;
    font-size: 0.75rem;
    font-weight: 500;
    border: 1px solid rgba(0,0,0,0.05);
    transition: all 0.2s ease;
}

.feature-tag:hover {
    background: #e9ecef;
}

.feature-tag i {
    color: #28a745;
    font-size: 0.7rem;
}

/* Mobile Timeline Responsiveness */
@media (max-width: 768px) {
    .timeline-line {
        left: 30px;
    }
    
    .timeline-marker {
        left: 30px;
    }
    
    .timeline-number {
        width: 40px;
        height: 40px;
        min-width: 40px;
        min-height: 40px;
        font-size: 1rem;
        border-width: 2px;
    }
    
    .timeline-card {
        margin-left: 80px !important;
        margin-right: 0 !important;
        max-width: none;
        padding: 1.25rem;
    }
    
    .timeline-card::before {
        left: -20px !important;
        right: auto !important;
        border-right-color: white !important;
        border-left-color: transparent !important;
    }
    
    .timeline-icon {
        width: 45px;
        height: 45px;
        font-size: 1.1rem;
    }
    
    .timeline-title {
        font-size: 1.1rem;
    }
    
    .timeline-desc {
        font-size: 0.85rem;
    }
    
    .feature-tag {
        font-size: 0.7rem;
        padding: 0.2rem 0.4rem;
    }
}

@media (max-width: 576px) {
    .timeline-services-section {
        padding: 3rem 0;
    }
    
    .timeline-line {
        left: 25px;
    }
    
    .timeline-marker {
        left: 25px;
    }
    
    .timeline-number {
        width: 35px;
        height: 35px;
        min-width: 35px;
        min-height: 35px;
        font-size: 0.9rem;
    }
    
    .timeline-card {
        margin-left: 70px !important;
        padding: 1rem;
    }
    
    .timeline-icon {
        width: 40px;
        height: 40px;
        font-size: 1rem;
        border-radius: 10px;
    }
    
    .timeline-title {
        font-size: 1rem;
    }
    
    .timeline-desc {
        font-size: 0.8rem;
    }
    
    .feature-tag {
        font-size: 0.65rem;
        padding: 0.15rem 0.35rem;
    }
}

/* Redesigned Benefits Section */
.redesigned-benefits-section {
    background: #f8f9fa;
    position: relative;
}

.redesigned-benefits-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url("data:image/svg+xml,%3Csvg width='50' height='50' viewBox='0 0 50 50' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' stroke='%23dee2e6' stroke-width='1' opacity='0.3'%3E%3Cpath d='M25 5v40M5 25h40'/%3E%3C/g%3E%3C/svg%3E") repeat;
    opacity: 0.4;
}

.compact-benefit-card {
    background: white;
    border-radius: 12px;
    padding: 1.25rem;
    height: 100%;
    border: 1px solid rgba(0,0,0,0.06);
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.compact-benefit-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, #28a745, #20c997);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.compact-benefit-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.12);
}

.compact-benefit-card:hover::before {
    transform: scaleX(1);
}

.benefit-header {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 0.75rem;
}

.compact-benefit-icon {
    width: 45px;
    height: 45px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    color: white;
    flex-shrink: 0;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
}

.compact-benefit-icon::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, rgba(255,255,255,0.2), transparent);
    transform: translateX(-100%);
    transition: transform 0.4s ease;
}

.compact-benefit-card:hover .compact-benefit-icon::before {
    transform: translateX(100%);
}

.compact-benefit-card .benefit-title {
    font-size: 1rem;
    font-weight: 700;
    color: #212529;
    margin: 0;
    line-height: 1.3;
}

.compact-benefit-card .benefit-desc {
    color: #6c757d;
    font-size: 0.875rem;
    line-height: 1.5;
    margin: 0;
}

/* Mobile responsiveness for redesigned benefits */
@media (max-width: 992px) {
    .redesigned-benefits-section {
        padding: 3rem 0;
    }
    
    .compact-benefit-card {
        margin-bottom: 1rem;
        padding: 1rem;
    }
    
    .benefit-header {
        gap: 0.5rem;
        margin-bottom: 0.5rem;
    }
    
    .compact-benefit-icon {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
    
    .compact-benefit-card .benefit-title {
        font-size: 0.95rem;
    }
    
    .compact-benefit-card .benefit-desc {
        font-size: 0.8rem;
    }
}

@media (max-width: 768px) {
    .redesigned-benefits-section {
        padding: 2.5rem 0;
    }
    
    .benefit-header {
        flex-direction: column;
        text-align: center;
        gap: 0.5rem;
    }
    
    .compact-benefit-icon {
        margin: 0 auto;
    }
    
    .compact-benefit-card .benefit-title {
        text-align: center;
        font-size: 0.9rem;
    }
    
    .compact-benefit-card .benefit-desc {
        text-align: center;
        font-size: 0.8rem;
    }
}

@media (max-width: 576px) {
    .compact-benefit-card {
        padding: 0.875rem;
    }
    
    .compact-benefit-icon {
        width: 35px;
        height: 35px;
        font-size: 0.9rem;
        border-radius: 8px;
    }
    
    .compact-benefit-card .benefit-title {
        font-size: 0.85rem;
    }
    
    .compact-benefit-card .benefit-desc {
        font-size: 0.75rem;
    }
}

/* Modern Detailed Services Section */
.modern-detailed-services {
    background: white;
    position: relative;
}

.detailed-service-card {
    background: white;
    border-radius: 20px;
    padding: 2rem;
    margin-bottom: 2rem;
    border: 1px solid rgba(0,0,0,0.05);
    box-shadow: 0 10px 40px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.detailed-service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 60px rgba(0,0,0,0.12);
}

.service-image-container {
    height: 300px;
    border-radius: 16px;
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.service-gradient-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--bs-primary) 0%, var(--bs-secondary) 100%);
}

.service-gradient-overlay.bg-gradient-primary {
    background: linear-gradient(135deg, #0d6efd 0%, #6610f2 100%);
}

.service-gradient-overlay.bg-gradient-success {
    background: linear-gradient(135deg, #198754 0%, #20c997 100%);
}

.service-gradient-overlay.bg-gradient-info {
    background: linear-gradient(135deg, #0dcaf0 0%, #6f42c1 100%);
}

.service-gradient-overlay.bg-gradient-warning {
    background: linear-gradient(135deg, #ffc107 0%, #fd7e14 100%);
}

.service-main-icon {
    font-size: 4rem;
    color: white;
    opacity: 0.9;
    z-index: 2;
    position: relative;
}

.service-pattern {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.1'%3E%3Ccircle cx='30' cy='30' r='4'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E") repeat;
    z-index: 1;
}

.service-content-area {
    padding: 0 1rem;
}

.service-header-section {
    margin-bottom: 2rem;
}

.service-badge {
    display: inline-block;
    padding: 0.5rem 1rem;
    border-radius: 25px;
    color: white;
    font-weight: 700;
    font-size: 0.875rem;
    margin-bottom: 1rem;
}

.service-main-title {
    font-size: 2rem;
    font-weight: 700;
    color: #212529;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.service-lead-text {
    font-size: 1.1rem;
    color: #6c757d;
    line-height: 1.6;
    margin-bottom: 0;
}

.service-features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1rem;
    margin-bottom: 2rem;
}

.feature-item-modern {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    padding: 1rem;
    background: #f8f9fa;
    border-radius: 12px;
    border: 1px solid rgba(0,0,0,0.05);
    transition: all 0.3s ease;
}

.feature-item-modern:hover {
    background: #e9ecef;
    transform: translateY(-2px);
}

.feature-icon {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #0d6efd, #6610f2);
    color: white;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    flex-shrink: 0;
}

.feature-text h6 {
    font-size: 1rem;
    font-weight: 600;
    color: #212529;
    margin-bottom: 0.25rem;
}

.feature-text p {
    font-size: 0.875rem;
    color: #6c757d;
    margin: 0;
    line-height: 1.4;
}

.service-deliverables {
    margin-top: 2rem;
}

.deliverables-title {
    font-size: 1.125rem;
    font-weight: 600;
    color: #212529;
    margin-bottom: 1rem;
}

.deliverables-list {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
}

.deliverable-tag {
    display: inline-block;
    background: #e9ecef;
    color: #495057;
    padding: 0.375rem 0.75rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 500;
    border: 1px solid rgba(0,0,0,0.05);
    transition: all 0.2s ease;
}

.deliverable-tag:hover {
    background: #dee2e6;
    transform: translateY(-1px);
}

.service-highlight {
    padding: 1.25rem;
    border-radius: 12px;
    color: white;
    margin-top: 1rem;
}

.service-highlight h6 {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: inherit;
}

.service-highlight p {
    font-size: 0.875rem;
    margin: 0;
    opacity: 0.95;
    line-height: 1.5;
}

.service-highlight.text-dark {
    color: #212529 !important;
}

.service-highlight.text-dark h6 {
    color: #212529 !important;
}

.process-timeline {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.timeline-step {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.step-number {
    width: 32px;
    height: 32px;
    background: linear-gradient(135deg, #0dcaf0, #6f42c1);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.875rem;
    font-weight: 700;
    flex-shrink: 0;
}

.step-content h6 {
    font-size: 0.95rem;
    font-weight: 600;
    color: #212529;
    margin-bottom: 0.25rem;
}

.step-content p {
    font-size: 0.8rem;
    color: #6c757d;
    margin: 0;
    line-height: 1.4;
}

/* Mobile responsiveness for detailed services */
@media (max-width: 992px) {
    .detailed-service-card {
        padding: 1.5rem;
    }
    
    .service-image-container {
        height: 250px;
        margin-bottom: 1.5rem;
    }
    
    .service-main-title {
        font-size: 1.75rem;
    }
    
    .service-lead-text {
        font-size: 1rem;
    }
    
    .service-features-grid {
        grid-template-columns: 1fr;
        gap: 0.75rem;
    }
    
    .feature-item-modern {
        padding: 0.875rem;
    }
    
    .feature-icon {
        width: 35px;
        height: 35px;
        font-size: 0.9rem;
    }
}

@media (max-width: 768px) {
    .modern-detailed-services {
        padding: 3rem 0;
    }
    
    .detailed-service-card {
        padding: 1.25rem;
        margin-bottom: 1.5rem;
    }
    
    .service-image-container {
        height: 200px;
    }
    
    .service-main-icon {
        font-size: 3rem;
    }
    
    .service-main-title {
        font-size: 1.5rem;
        text-align: center;
    }
    
    .service-lead-text {
        font-size: 0.95rem;
        text-align: center;
    }
    
    .service-content-area {
        padding: 0;
    }
    
    .deliverables-list {
        justify-content: center;
    }
    
    .process-timeline {
        gap: 0.75rem;
    }
    
    .timeline-step {
        gap: 0.75rem;
    }
    
    .step-number {
        width: 28px;
        height: 28px;
        font-size: 0.75rem;
    }
}

@media (max-width: 576px) {
    .detailed-service-card {
        padding: 1rem;
    }
    
    .service-image-container {
        height: 180px;
        border-radius: 12px;
    }
    
    .service-main-icon {
        font-size: 2.5rem;
    }
    
    .service-main-title {
        font-size: 1.25rem;
    }
    
    .service-lead-text {
        font-size: 0.9rem;
    }
    
    .feature-item-modern {
        padding: 0.75rem;
        gap: 0.5rem;
    }
    
    .feature-icon {
        width: 30px;
        height: 30px;
        font-size: 0.8rem;
        border-radius: 8px;
    }
    
    .feature-text h6 {
        font-size: 0.9rem;
    }
    
    .feature-text p {
        font-size: 0.8rem;
    }
    
    .deliverable-tag {
        font-size: 0.75rem;
        padding: 0.25rem 0.5rem;
    }
    
    .service-highlight {
        padding: 1rem;
    }
    
    .service-highlight h6 {
        font-size: 0.9rem;
    }
    
    .service-highlight p {
        font-size: 0.8rem;
    }
}

/* ADU Portfolio Gallery Styles */
.bg-gradient-dark {
    background: linear-gradient(0deg, rgba(0,0,0,0.7) 0%, rgba(0,0,0,0.3) 50%, rgba(0,0,0,0) 100%);
}

.portfolio-image-overlay {
    transition: all 0.3s ease;
}

.portfolio-image-overlay:hover {
    transform: scale(1.02);
}

.portfolio-card {
    overflow: hidden;
    border-radius: 1rem;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
}

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

.portfolio-badge {
    backdrop-filter: blur(10px);
    background: rgba(255,255,255,0.9);
    border: 1px solid rgba(255,255,255,0.2);
}

/* Enhanced gradient backgrounds */
.bg-gradient-success {
    background: linear-gradient(135deg, #198754 0%, #20c997 100%);
}

.bg-gradient-info {
    background: linear-gradient(135deg, #0dcaf0 0%, #6f42c1 100%);
}

.bg-gradient-primary {
    background: linear-gradient(135deg, #0d6efd 0%, #6610f2 100%);
}

/* Mobile responsiveness for portfolio gallery */
@media (max-width: 768px) {
    .portfolio-card {
        margin-bottom: 1.5rem;
    }
    
    .bg-gradient-dark p {
        font-size: 0.875rem;
    }
    
    .bg-gradient-dark h5 {
        font-size: 1.125rem;
    }
    
    .bg-gradient-dark h6 {
        font-size: 1rem;
    }
    
    .bg-gradient-dark small {
        font-size: 0.75rem;
    }
}

@media (max-width: 576px) {
    .bg-gradient-dark {
        padding: 0.75rem !important;
    }
    
    .bg-gradient-dark h5 {
        font-size: 1rem;
        margin-bottom: 0.5rem;
    }
    
    .bg-gradient-dark p {
        font-size: 0.8rem;
        margin-bottom: 0;
    }
    
    .portfolio-badge {
        font-size: 0.75rem;
        padding: 0.25rem 0.5rem;
    }
}

/* Modern FAQ Section Styles */
.modern-faq-section {
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    position: relative;
}

/* Enhanced Search Bar */
.faq-search-container {
    max-width: 600px;
    position: relative;
}

.faq-search-input {
    border: 2px solid #e9ecef;
    border-radius: 25px;
    padding: 1rem 3rem 1rem 1.5rem;
    font-size: 1.1rem;
    background: white;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
}

.faq-search-input:focus {
    border-color: #0d6efd;
    box-shadow: 0 15px 40px rgba(13,110,253,0.15);
    outline: none;
}

.search-icon {
    position: absolute;
    right: 1.5rem;
    top: 50%;
    transform: translateY(-50%);
    color: #6c757d;
    font-size: 1.1rem;
    pointer-events: none;
}

.search-clear {
    position: absolute;
    right: 1.5rem;
    top: 50%;
    transform: translateY(-50%);
    color: #6c757d;
    cursor: pointer;
    font-size: 1rem;
    padding: 0.25rem;
    border-radius: 50%;
    transition: all 0.2s ease;
}

.search-clear:hover {
    background: #f8f9fa;
    color: #dc3545;
}

/* Modern Category Navigation */
.faq-categories-wrapper {
    background: white;
    border-radius: 20px;
    padding: 1rem;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    overflow: hidden;
}

.faq-categories-scroll {
    overflow-x: auto;
    scrollbar-width: none;
    -ms-overflow-style: none;
}

.faq-categories-scroll::-webkit-scrollbar {
    display: none;
}

.faq-categories-nav {
    display: flex;
    gap: 0.5rem;
    white-space: nowrap;
    padding: 0.5rem;
}

.faq-categories-nav .nav-link {
    border-radius: 15px;
    padding: 0.75rem 1.25rem;
    border: 2px solid transparent;
    font-weight: 600;
    color: #6c757d;
    background: #f8f9fa;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    white-space: nowrap;
}

.faq-categories-nav .nav-link:hover {
    background: #e9ecef;
    color: #495057;
    transform: translateY(-2px);
}

.faq-categories-nav .nav-link.active {
    background: linear-gradient(135deg, #0d6efd, #6610f2);
    color: white;
    border-color: #0d6efd;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(13,110,253,0.3);
}

/* Category Headers */
.faq-category-header {
    background: white;
    border-radius: 15px;
    padding: 1.5rem;
    box-shadow: 0 8px 25px rgba(0,0,0,0.08);
    border-left: 4px solid #0d6efd;
}

.category-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #0d6efd, #6610f2);
    color: white;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
}

.category-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #212529;
    margin: 0;
}

.category-subtitle {
    color: #6c757d;
    font-size: 0.95rem;
    margin: 0;
}

.expand-all-btn {
    border-radius: 10px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.expand-all-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(13,110,253,0.2);
}

/* FAQ Grid Layout */
.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
}

/* FAQ Cards */
.faq-card {
    background: white;
    border-radius: 15px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.08);
    border: 1px solid rgba(0,0,0,0.05);
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.12);
}

.faq-card-header {
    padding: 1.5rem;
    cursor: pointer;
    position: relative;
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    border-bottom: 1px solid rgba(0,0,0,0.05);
    transition: all 0.3s ease;
}

.faq-card-header:hover {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.faq-card-header[aria-expanded="true"] {
    background: linear-gradient(135deg, #0d6efd 0%, #6610f2 100%);
    color: white;
}

.faq-card-header[aria-expanded="true"] .question-text {
    color: white;
}

.faq-card-header[aria-expanded="true"] .expand-icon {
    color: white;
    transform: rotate(180deg);
}

.faq-question {
    display: flex;
    align-items: center;
    justify-content: between;
    width: 100%;
}

.question-text {
    font-size: 1.1rem;
    font-weight: 600;
    color: #212529;
    margin: 0;
    flex: 1;
    line-height: 1.4;
    padding-right: 1rem;
}

.expand-icon {
    color: #6c757d;
    font-size: 1rem;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.faq-card-body {
    padding: 1.5rem;
    background: white;
}

.answer-content {
    color: #495057;
    line-height: 1.6;
    font-size: 1rem;
}

.answer-content p {
    margin-bottom: 1rem;
}

.answer-content p:last-child {
    margin-bottom: 0;
}

/* No Results Section */
.no-results-section {
    text-align: center;
    padding: 4rem 2rem;
    background: white;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
}

.no-results-content {
    max-width: 400px;
    margin: 0 auto;
}

.no-results-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #6c757d, #495057);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    margin: 0 auto 1.5rem;
}

.no-results-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #495057;
    margin-bottom: 1rem;
}

.no-results-text {
    color: #6c757d;
    margin-bottom: 2rem;
    font-size: 1.1rem;
}

/* FAQ Statistics */
.faq-stats-section {
    background: linear-gradient(135deg, #0d6efd 0%, #6610f2 100%);
    border-radius: 20px;
    padding: 2rem;
    color: white;
    position: relative;
    overflow: hidden;
}

.faq-stats-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.05'%3E%3Ccircle cx='30' cy='30' r='4'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E") repeat;
    z-index: 1;
}

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

.stat-card {
    background: rgba(255,255,255,0.1);
    border-radius: 15px;
    padding: 1.5rem;
    text-align: center;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.2);
    transition: all 0.3s ease;
}

.stat-card:hover {
    background: rgba(255,255,255,0.15);
    transform: translateY(-5px);
}

.stat-icon {
    width: 60px;
    height: 60px;
    background: rgba(255,255,255,0.2);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin: 0 auto 1rem;
    color: white;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 800;
    color: white;
    margin-bottom: 0.5rem;
    line-height: 1;
}

.stat-label {
    color: rgba(255,255,255,0.9);
    font-size: 1rem;
    font-weight: 600;
    margin: 0;
}

/* Mobile Responsiveness */
@media (max-width: 992px) {
    .faq-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .faq-category-header {
        padding: 1.25rem;
    }
    
    .category-title {
        font-size: 1.25rem;
    }
    
    .expand-all-btn {
        margin-top: 1rem;
        width: 100%;
    }
}

@media (max-width: 768px) {
    .faq-search-input {
        padding: 0.875rem 2.5rem 0.875rem 1.25rem;
        font-size: 1rem;
    }
    
    .search-icon {
        right: 1.25rem;
        font-size: 1rem;
    }
    
    .faq-categories-nav .nav-link {
        padding: 0.625rem 1rem;
        font-size: 0.9rem;
    }
    
    .faq-card-header {
        padding: 1.25rem;
    }
    
    .question-text {
        font-size: 1rem;
        padding-right: 0.75rem;
    }
    
    .faq-card-body {
        padding: 1.25rem;
    }
    
    .answer-content {
        font-size: 0.95rem;
    }
    
    .category-icon {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
    
    .stat-number {
        font-size: 2rem;
    }
    
    .stat-card {
        padding: 1.25rem;
    }
}

@media (max-width: 576px) {
    .faq-search-container {
        margin: 0 1rem;
    }
    
    .faq-categories-wrapper {
        margin: 0 1rem;
        padding: 0.75rem;
    }
    
    .faq-categories-nav .nav-link {
        padding: 0.5rem 0.75rem;
        font-size: 0.85rem;
    }
    
    .faq-category-header {
        padding: 1rem;
        margin: 0 1rem;
    }
    
    .faq-grid {
        margin: 0 1rem;
        gap: 0.75rem;
    }
    
    .faq-card-header {
        padding: 1rem;
    }
    
    .question-text {
        font-size: 0.95rem;
    }
    
    .faq-card-body {
        padding: 1rem;
    }
    
    .answer-content {
        font-size: 0.9rem;
    }
    
    .faq-stats-section {
        margin: 0 1rem;
        padding: 1.5rem;
    }
    
    .stat-card {
        padding: 1rem;
        margin-bottom: 0.75rem;
    }
    
    .stat-number {
        font-size: 1.75rem;
    }
    
    .stat-icon {
        width: 50px;
        height: 50px;
        font-size: 1.25rem;
    }
}

.bg-gradient-primary {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
}

.min-vh-75 {
    min-height: 75vh;
}

/* Feature Icons */
.feature-icon {
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.service-icon {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.service-icon-large {
    width: 100px;
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.benefit-icon {
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.contact-icon {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.action-icon {
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.team-icon {
    width: 100px;
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Service Cards */
.service-card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.benefit-card {
    padding: 1.5rem;
    transition: transform 0.3s ease;
}

.benefit-card:hover {
    transform: translateY(-3px);
}

/* Timeline */
.timeline {
    position: relative;
}

.timeline-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 1.5rem;
}

.timeline-marker {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    margin-right: 1rem;
    flex-shrink: 0;
}

.timeline-content h6 {
    margin-bottom: 0.5rem;
    font-weight: 600;
}

/* Process Steps */
.process-step {
    padding: 1.5rem 1rem;
}

.step-number {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: bold;
}

/* Stats */
.stat-card {
    transition: transform 0.3s ease;
}

.stat-card:hover {
    transform: scale(1.05);
}

.contact-highlight {
    padding: 1rem;
}

.contact-method {
    padding: 1.5rem;
}

.team-card {
    padding: 2rem 1rem;
}

/* FAQ Styles */
.faq-category {
    transition: opacity 0.3s ease;
}

.category-header {
    position: sticky;
    top: 90px;
    background: white;
    z-index: 10;
    padding: 1rem 0;
}

.faq-item {
    transition: transform 0.2s ease;
}

.faq-item:hover {
    transform: translateX(5px);
}

.nav-pills .nav-link {
    color: var(--primary-color);
    border: 2px solid transparent;
    margin: 0.25rem;
    font-weight: 500;
}

.nav-pills .nav-link.active {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
}

.nav-pills .nav-link:hover {
    border-color: var(--primary-color);
}

/* Accordion Customization */
.accordion-button {
    font-weight: 600;
    color: var(--dark-color);
}

.accordion-button:not(.collapsed) {
    background-color: var(--light-color);
    border-color: var(--primary-color);
    color: var(--primary-color);
}

.accordion-button:focus {
    box-shadow: 0 0 0 0.25rem rgba(27, 94, 32, 0.25);
}

/* Contact Form */
.form-control:focus,
.form-select:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 0.25rem rgba(27, 94, 32, 0.25);
}

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

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

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

.btn-outline-primary:hover,
.btn-outline-primary:focus {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
}

/* Navbar */
.navbar-dark .navbar-nav .nav-link {
    color: rgba(255, 255, 255, 0.9);
    font-weight: 500;
}

.navbar-dark .navbar-nav .nav-link:hover,
.navbar-dark .navbar-nav .nav-link:focus {
    color: white;
}

/* Footer */
footer a {
    text-decoration: none;
    transition: opacity 0.3s ease;
}

footer a:hover {
    opacity: 0.8;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .hero-section {
        min-height: 500px;
        text-align: center;
    }
    
    .display-4 {
        font-size: 2.5rem;
    }
    
    .display-5 {
        font-size: 2rem;
    }
    
    .display-6 {
        font-size: 1.75rem;
    }
    
    .main-content {
        margin-top: 56px;
    }
    
    .category-header {
        top: 60px;
    }
    
    .nav-pills {
        justify-content: center !important;
    }
    
    .nav-pills .nav-link {
        font-size: 0.875rem;
        padding: 0.5rem 0.75rem;
    }
}

@media (max-width: 576px) {
    .hero-section {
        padding: 3rem 0;
    }
    
    .service-card,
    .benefit-card,
    .team-card {
        padding: 1rem;
    }
    
    .feature-icon,
    .benefit-icon,
    .service-icon-large,
    .team-icon {
        width: 60px;
        height: 60px;
    }
    
    .feature-icon i,
    .benefit-icon i,
    .service-icon-large i,
    .team-icon i {
        font-size: 2rem !important;
    }
}

/* Custom Utility Classes */
.text-light-emphasis {
    color: rgba(255, 255, 255, 0.75) !important;
}

.border-success {
    border-color: var(--success-color) !important;
}

.shadow-sm {
    box-shadow: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.075) !important;
}

.shadow-lg {
    box-shadow: 0 1rem 3rem rgba(0, 0, 0, 0.175) !important;
}

/* Animation Classes */
.fade-in {
    animation: fadeIn 0.6s ease-in;
}

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

.slide-in-left {
    animation: slideInLeft 0.6s ease-out;
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.slide-in-right {
    animation: slideInRight 0.6s ease-out;
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Loading States */
.btn-loading {
    position: relative;
    color: transparent !important;
}

.btn-loading::after {
    content: "";
    position: absolute;
    width: 16px;
    height: 16px;
    top: 50%;
    left: 50%;
    margin-left: -8px;
    margin-top: -8px;
    border: 2px solid transparent;
    border-top-color: currentColor;
    border-radius: 50%;
    animation: spin 1s ease infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Modern Team Section */
.team-card-modern {
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    border: 1px solid rgba(0,0,0,0.1);
}

.team-card-modern:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(0,0,0,0.15) !important;
}

.team-image-wrapper {
    overflow: hidden;
    position: relative;
}

.team-image-wrapper img {
    transition: all 0.4s ease;
}

.team-card-modern:hover .team-image-wrapper img {
    transform: scale(1.05);
}

.team-icon-modern {
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.team-card-modern:hover .team-icon-modern {
    transform: scale(1.1);
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

.credential-badge {
    transition: all 0.3s ease;
    border: 1px solid transparent;
}

.credential-badge:hover {
    background: linear-gradient(135deg, #f8f9fa, #e9ecef) !important;
    border-color: rgba(13,110,253,0.2);
    transform: translateX(5px);
}

.stat-item h3 {
    transition: all 0.3s ease;
}

.stat-item:hover h3 {
    transform: scale(1.1);
}

/* Blog Section Styles */
.blog-hero {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    position: relative;
    overflow: hidden;
}

.blog-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0,0,0,0.3);
}

.blog-card {
    transition: all 0.3s ease;
    border: none;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
}

.blog-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.2);
}

.blog-card-image {
    height: 200px;
    overflow: hidden;
    position: relative;
}

.blog-card-image img {
    transition: transform 0.3s ease;
}

.blog-card:hover .blog-card-image img {
    transform: scale(1.1);
}

.blog-meta {
    font-size: 0.85rem;
    color: #6c757d;
}

.blog-tag {
    background: linear-gradient(135deg, #0d6efd, #6610f2);
    color: white;
    padding: 0.25rem 0.75rem;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 600;
    text-decoration: none;
    display: inline-block;
    margin-right: 0.5rem;
    margin-bottom: 0.5rem;
}

.blog-tag:hover {
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(13,110,253,0.4);
}

.blog-content h1 {
    color: #212529;
    margin-bottom: 1.5rem;
}

.blog-content h2 {
    color: #495057;
    margin-top: 2rem;
    margin-bottom: 1rem;
    border-bottom: 2px solid #e9ecef;
    padding-bottom: 0.5rem;
}

.blog-content h3 {
    color: #6c757d;
    margin-top: 1.5rem;
    margin-bottom: 0.75rem;
}

.blog-toc {
    background: #f8f9fa;
    border-radius: 10px;
    padding: 1.5rem;
    border-left: 4px solid #0d6efd;
}

.blog-toc ul {
    margin-bottom: 0;
}

.blog-toc a {
    color: #495057;
    text-decoration: none;
    font-weight: 500;
}

.blog-toc a:hover {
    color: #0d6efd;
}

.blog-sidebar {
    position: sticky;
    top: 100px;
}

.recent-posts-card {
    background: white;
    border-radius: 15px;
    padding: 1.5rem;
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
    margin-bottom: 2rem;
}

.recent-post-item {
    display: flex;
    gap: 1rem;
    padding: 1rem 0;
    border-bottom: 1px solid #e9ecef;
}

.recent-post-item:last-child {
    border-bottom: none;
}

.recent-post-thumb {
    width: 80px;
    height: 60px;
    border-radius: 8px;
    overflow: hidden;
    flex-shrink: 0;
}

.recent-post-content h6 {
    font-size: 0.9rem;
    margin-bottom: 0.25rem;
    line-height: 1.3;
}

.recent-post-content .blog-meta {
    font-size: 0.75rem;
}

/* Print Styles */
@media print {
    .navbar,
    .btn,
    footer {
        display: none !important;
    }
    
    .main-content {
        margin-top: 0;
    }
    
    .hero-section {
        background: white !important;
        color: black !important;
    }
}
