/* General Styles */
body {
    font-family: 'Georgia', 'Times New Roman', serif;
    padding-top: 56px;
    color: #2c2c2c;
}

/* Hero Section */
.hero-section {
    background: linear-gradient(rgba(25,25,25,0.7), rgba(25,25,25,0.7)), 
                url('https://images.unsplash.com/photo-1589829545856-d10d557cf95f?w=1920&h=1080&fit=crop');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    min-height: 90vh;
    display: flex;
    align-items: center;
    position: relative;
}

/* Practice Cards */
.practice-card {
    background: white;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    text-align: center;
    transition: transform 0.3s, box-shadow 0.3s;
    height: 100%;
    border-top: 3px solid #8B0000;
}

.practice-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(139,0,0,0.3);
}

.practice-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #8B0000, #5c0000);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 2rem;
    color: #D4AF37;
}

/* Barrister Cards */
.barrister-card {
    background: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    transition: transform 0.3s;
}

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

.barrister-image {
    height: 300px;
    overflow: hidden;
}

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

.barrister-info {
    padding: 20px;
}

/* Feature Items */
.feature-item {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
}

.feature-item i {
    font-size: 2rem;
    flex-shrink: 0;
    color: #8B0000;
}

/* Testimonial Cards */
.testimonial-card {
    background: white;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    height: 100%;
}

/* CTA Section */
.cta-section {
    background: linear-gradient(135deg, #8B0000, #5c0000);
}

/* Footer */
footer {
    background: #1a1a1a;
    color: white;
}

footer a {
    color: rgba(212,175,55,0.8);
    text-decoration: none;
    transition: color 0.3s;
}

footer a:hover {
    color: #D4AF37;
}

/* Case Card */
.case-card {
    background: white;
    border-radius: 10px;
    padding: 30px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    margin-bottom: 30px;
}

.case-badge {
    display: inline-block;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 15px;
}

/* Profile Section */
.profile-header {
    background: linear-gradient(135deg, #8B0000, #5c0000);
    color: white;
    padding: 60px 0;
    margin-top: 56px;
}

.profile-image {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    border: 5px solid white;
    object-fit: cover;
}

.qualification-item {
    padding: 15px;
    background: #f8f9fa;
    border-radius: 8px;
    margin-bottom: 15px;
}

/* Contact Form */
.contact-form {
    background: white;
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

.contact-info-box {
    background: #f8f9fa;
    padding: 30px;
    border-radius: 10px;
    text-align: center;
    height: 100%;
}

.contact-info-box i {
    font-size: 3rem;
    color: #8B0000;
    margin-bottom: 20px;
}

/* Responsive */
@media (max-width: 768px) {
    .hero-section {
        min-height: 70vh;
    }
    
    .display-3 {
        font-size: 2.5rem;
    }
    
    .display-5 {
        font-size: 2rem;
    }
}
