:root {
    --primary-blue: #1a3e72;
    --secondary-blue: #2c5aa0;
    --light-blue: #e6f0ff;
    --dark-gray: #333333;
    --medium-gray: #666666;
    --light-gray: #f8f9fa;
}

body {
    font-family: 'Georgia', serif;
    color: var(--dark-gray);
}

/* Top Header */
.top-header {
    background-color: var(--primary-blue);
    color: white;
    padding: 10px 0;
    font-size: 0.9rem;
}

.consultation-btn {
    background-color: #d4a017;
    color: white;
    padding: 8px 15px;
    border-radius: 4px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s;
}

.consultation-btn:hover {
    background-color: #e8b424;
    color: white;
}

/* Main Header */
.main-header {
    position: fixed;
    top: 40;
    left: 0;
    right: 0;
    padding: 20px 0;
    background-color: transparent;
    transition: all 0.3s;
    z-index: 1000;
}

.main-header.scrolled {
    background-color: rgba(0, 0, 0, 0.8);
    padding: 10px 0;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    top: 0;
}

.logo {
    font-size: 1.8rem;
    font-weight: 700;
    color: white;
    text-decoration: none;
}

.logo span {
    color: #d4a017;
}

.nav-link {
    color: white !important;
    font-weight: 500;
    margin: 0 10px;
    position: relative;
}

.nav-link:hover {
    color: #d4a017 !important;
}

.nav-link:after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    background: #d4a017;
    bottom: 0;
    left: 0;
    transition: width 0.3s;
}

.nav-link:hover:after {
    width: 100%;
}

/* Hero Section */
.hero-section {
    background: linear-gradient(rgba(26, 62, 114, 0.8), rgba(26, 62, 114, 0.8)), url('https://images.unsplash.com/photo-1589829545856-d10d557cf95f?ixlib=rb-1.2.1&auto=format&fit=crop&w=1350&q=80');
    background-size: cover;
    background-position: center;
    color: white;
    padding: 200px 0 150px;
    text-align: center;
}

/* Footer */
.footer {
    background-color: var(--primary-blue);
    color: white;
    padding: 60px 0 20px;
}

.footer h5 {
    color: #d4a017;
    margin-bottom: 20px;
    font-weight: 600;
}

.footer-links a {
    color: #ccc;
    text-decoration: none;
    display: block;
    margin-bottom: 10px;
    transition: all 0.3s;
}

.footer-links a:hover {
    color: white;
    padding-left: 5px;
}

.footer-contact i {
    margin-right: 10px;
    color: #d4a017;
}

.copyright {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 20px;
    margin-top: 30px;
    font-size: 0.9rem;
    color: #aaa;
}

/* Practice Areas Section (Sample) */
.practice-area-card {
    border: none;
    border-radius: 5px;
    overflow: hidden;
    transition: all 0.3s;
    margin-bottom: 30px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.practice-area-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

.practice-area-card .card-body {
    padding: 30px;
}

.practice-area-card i {
    font-size: 2.5rem;
    color: var(--secondary-blue);
    margin-bottom: 20px;
}

/* Hero Banner Styles */
.hero-banner {
    position: relative;
    padding: 180px 0;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    overflow: hidden;
}

.banner-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, rgba(26, 62, 114, 0.9) 40%, rgba(26, 62, 114, 0.5) 100%);
    z-index: 1;
}

.banner-content {
    position: relative;
    z-index: 2;
    color: #fff;
}

.banner-subtitle {
    display: inline-block;
    font-size: 16px;
    font-weight: 600;
    letter-spacing: 1px;
    margin-bottom: 20px;
    color: #d4a017;
    text-transform: uppercase;
}

.banner-title {
    font-size: 60px;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 25px;
    color: #fff;
}

.banner-title span {
    color: #d4a017;
    position: relative;
}

.banner-text {
    font-size: 18px;
    margin-bottom: 35px;
    color: rgba(255, 255, 255, 0.9);
    max-width: 90%;
}

.banner-buttons .btn {
    padding: 15px 30px;
    font-weight: 600;
    border-radius: 4px;
    font-size: 16px;
    margin-right: 15px;
    margin-bottom: 15px;
}

.btn-primary {
    background-color: #d4a017;
    border-color: #d4a017;
}

.btn-primary:hover {
    background-color: #c59515;
    border-color: #c59515;
}

.btn-outline-light {
    border-width: 2px;
}

.banner-image-wrapper {
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 30px 50px rgba(0, 0, 0, 0.2);
    z-index: 2;
}

.banner-image {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.5s ease;
}

.banner-image-wrapper:hover .banner-image {
    transform: scale(1.03);
}

.banner-badge {
    position: absolute;
    bottom: 30px;
    right: 30px;
    background: #fff;
    padding: 20px 25px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.badge-number {
    font-size: 36px;
    font-weight: 700;
    color: var(--primary-blue);
    display: block;
    line-height: 1;
}

.badge-text {
    font-size: 14px;
    color: var(--medium-gray);
    font-weight: 600;
}

.banner-features {
    display: flex;
    gap: 30px;
    margin-top: 40px;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 15px;
}

.feature-icon {
    font-size: 24px;
    color: #d4a017;
}

.feature-text h6 {
    font-size: 18px;
    font-weight: 600;
    color: #fff;
    margin-bottom: 5px;
}

.feature-text p {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 0;
}

/* Responsive Styles */
@media (max-width: 1199px) {
    .banner-title {
        font-size: 50px;
    }
}

@media (max-width: 991px) {
    .hero-banner {
        padding: 120px 0;
    }
    
    .banner-title {
        font-size: 42px;
    }
    
    .banner-text {
        max-width: 100%;
    }
}

@media (max-width: 767px) {
    .hero-banner {
        padding: 100px 0;
        text-align: center;
    }
    
    .banner-title {
        font-size: 36px;
    }
    
    .banner-buttons .btn {
        display: block;
        width: 100%;
        margin-right: 0;
    }
    
    .banner-features {
        flex-direction: column;
        gap: 20px;
    }
    
    .banner-image-wrapper {
        margin-top: 50px;
    }
}

@media (max-width: 575px) {
    .banner-title {
        font-size: 30px;
    }
    
    .banner-text {
        font-size: 16px;
    }
}

/* About Section Styles */
.about-section {
    background-color: #fff;
    position: relative;
}

.section-subtitle {
    display: inline-block;
    font-size: 16px;
    font-weight: 600;
    letter-spacing: 1px;
    margin-bottom: 15px;
    color: #d4a017;
    text-transform: uppercase;
}

.section-title {
    font-size: 42px;
    font-weight: 700;
    line-height: 1.3;
    color: var(--dark-gray);
}

.section-title span {
    position: relative;
}

.section-title span:after {
    content: '';
    position: absolute;
    bottom: 5px;
    left: 0;
    width: 100%;
    height: 8px;
    background-color: rgba(212, 160, 23, 0.3);
    z-index: -1;
}

.section-text {
    font-size: 18px;
    color: var(--medium-gray);
    margin-bottom: 25px;
}

.about-image {
    transition: transform 0.3s ease;
    width: 100%;
    height: auto;
    object-fit: cover;
}

.about-image:hover {
    transform: translateY(-5px);
}

.feature-title {
    font-size: 18px;
    font-weight: 600;
    color: var(--dark-gray);
}

.feature-text {
    font-size: 15px;
    color: var(--medium-gray);
    margin-bottom: 0;
}

/* Responsive Styles */
@media (max-width: 1199px) {
    .section-title {
        font-size: 36px;
    }
}

@media (max-width: 991px) {
    .about-content {
        padding-left: 0 !important;
        margin-top: 40px;
    }
    
    .section-title {
        font-size: 32px;
    }
}

@media (max-width: 767px) {
    .section-title {
        font-size: 28px;
    }
    
    .section-text {
        font-size: 16px;
    }
    
    .feature-title {
        font-size: 16px;
    }
    
    .feature-text {
        font-size: 14px;
    }
}

/* Awards Section Styles */
.awards-section {
    position: relative;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    padding: 100px 0;
}

.awards-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(26, 62, 114, 0.9);
}

.section-header {
    position: relative;
    z-index: 2;
}

.section-subtitle {
    display: inline-block;
    font-size: 16px;
    font-weight: 600;
    letter-spacing: 1px;
    margin-bottom: 15px;
    color: #d4a017;
    text-transform: uppercase;
}

.section-title {
    font-size: 42px;
    font-weight: 700;
    line-height: 1.3;
    /*color: #fff;*/
}

.section-title span {
    position: relative;
}

.section-title span:after {
    content: '';
    position: absolute;
    bottom: 5px;
    left: 0;
    width: 100%;
    height: 8px;
    background-color: rgba(212, 160, 23, 0.3);
    z-index: -1;
}

.award-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 10px;
    padding: 30px;
    text-align: center;
    height: 100%;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    z-index: 2;
}

.award-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0) 100%);
    z-index: -1;
}

.award-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
    border-color: rgba(212, 160, 23, 0.5);
}

.award-icon {
    font-size: 50px;
    color: #d4a017;
    margin-bottom: 20px;
}

.award-title {
    font-size: 22px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 10px;
}

.award-text {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 15px;
}

.award-year {
    display: inline-block;
    background-color: rgba(212, 160, 23, 0.2);
    color: #d4a017;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 600;
}

/* Responsive Styles */
@media (max-width: 1199px) {
    .section-title {
        font-size: 36px;
    }
}

@media (max-width: 767px) {
    .section-title {
        font-size: 32px;
    }
    
    .award-card {
        padding: 25px;
    }
    
    .award-icon {
        font-size: 40px;
    }
    
    .award-title {
        font-size: 20px;
    }
}

@media (max-width: 575px) {
    .section-title {
        font-size: 28px;
    }
    
    .awards-section {
        padding: 80px 0;
    }
}

/* Practice Areas Styles */
.practice-areas {
    position: relative;
}

.practice-card {
    background: #fff;
    border-radius: 10px;
    padding: 30px;
    height: 100%;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.practice-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
    border-color: rgba(212, 160, 23, 0.3);
}

.practice-icon {
    width: 70px;
    height: 70px;
    background-color: rgba(212, 160, 23, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    color: #d4a017;
    font-size: 30px;
    transition: all 0.3s ease;
}

.practice-card:hover .practice-icon {
    background-color: #d4a017;
    color: #fff;
}

.practice-title {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 15px;
    color: var(--dark-gray);
}

.practice-text {
    color: var(--medium-gray);
    margin-bottom: 20px;
    font-size: 15px;
}

.practice-link {
    color: var(--primary-blue);
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    transition: all 0.3s ease;
}

.practice-link i {
    margin-left: 8px;
    transition: all 0.3s ease;
}

.practice-link:hover {
    color: #d4a017;
}

.practice-link:hover i {
    transform: translateX(5px);
}

.section-description {
    color: var(--medium-gray);
    max-width: 700px;
    margin: 0 auto 30px;
    font-size: 18px;
}

/* Responsive Styles */
@media (max-width: 1199px) {
    .practice-card {
        padding: 25px;
    }
}

@media (max-width: 767px) {
    .practice-title {
        font-size: 20px;
    }
    
    .practice-icon {
        width: 60px;
        height: 60px;
        font-size: 25px;
    }
}

@media (max-width: 575px) {
    .practice-card {
        padding: 20px;
    }
    
    .section-description {
        font-size: 16px;
    }
}

/* Attorneys Section Styles */
.attorneys-section {
    position: relative;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    padding: 100px 0;
}

.attorneys-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(26, 62, 114, 0.85);
}

.attorney-card {
    background: #fff;
    border-radius: 10px;
    overflow: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 5px 30px rgba(0, 0, 0, 0.2);
    height: 100%;
}

.attorney-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
}

.attorney-image {
    overflow: hidden;
    height: 320px;
}

.attorney-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.attorney-card:hover .attorney-image img {
    transform: scale(1.05);
}

.attorney-info {
    padding: 25px;
    text-align: center;
}

.attorney-name {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 5px;
    color: var(--dark-gray);
}

.attorney-title {
    color: var(--primary-blue);
    font-weight: 600;
    margin-bottom: 15px;
}

.attorney-social {
    display: flex;
    justify-content: center;
    gap: 15px;
}

.attorney-social a {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background-color: rgba(26, 62, 114, 0.1);
    color: var(--primary-blue);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    text-decoration: none;
}

.attorney-social a:hover {
    background-color: var(--primary-blue);
    color: #fff;
}

/* Responsive Styles */
@media (max-width: 1199px) {
    .attorney-image {
        height: 280px;
    }
}

@media (max-width: 991px) {
    .attorney-image {
        height: 240px;
    }
}

@media (max-width: 767px) {
    .attorney-card {
        max-width: 400px;
        margin: 0 auto;
    }
    
    .attorney-image {
        height: 300px;
    }
}

@media (max-width: 575px) {
    .attorneys-section {
        padding: 80px 0;
    }
    
    .attorney-name {
        font-size: 20px;
    }
    
    .attorney-info {
        padding: 20px;
    }
    
    .attorney-image {
        height: 250px;
    }
}

/* Testimonials Section Styles */
.testimonials-section {
    position: relative;
}

.testimonial-card {
    background: #fff;
    border-radius: 10px;
    padding: 30px;
    height: 100%;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(0, 0, 0, 0.05);
    margin: 0 15px;
}

.client-info {
    margin-bottom: 20px;
}

.client-name {
    font-size: 18px;
    font-weight: 700;
    color: var(--dark-gray);
    margin-bottom: 5px;
}

.client-title {
    font-size: 14px;
    color: var(--medium-gray);
    font-weight: 500;
}

.testimonial-text p {
    font-size: 16px;
    color: var(--medium-gray);
    line-height: 1.6;
    font-style: italic;
    position: relative;
    padding-left: 20px;
}

.testimonial-text p::before {
    content: '"';
    font-size: 50px;
    color: rgba(212, 160, 23, 0.2);
    position: absolute;
    left: -10px;
    top: -15px;
    font-family: Georgia, serif;
}

.carousel-control-prev,
.carousel-control-next {
    width: 40px;
    height: 40px;
    background-color: var(--primary-blue);
    border-radius: 50%;
    top: 50%;
    transform: translateY(-50%);
    opacity: 1;
}

.carousel-control-prev {
    left: -20px;
}

.carousel-control-next {
    right: -20px;
}

.carousel-control-prev i,
.carousel-control-next i {
    color: white;
    font-size: 18px;
}

/* Responsive Styles */
@media (max-width: 991px) {
    .testimonial-card {
        margin-bottom: 30px;
    }
    
    .carousel-control-prev {
        left: 0;
    }
    
    .carousel-control-next {
        right: 0;
    }
}

@media (max-width: 767px) {
    .testimonial-card {
        padding: 25px;
    }
    
    .testimonial-text p {
        font-size: 15px;
    }
}

/* Blog Section Styles */
.blog-section {
    background-color: #fff;
    position: relative;
}

.blog-card {
    background: #fff;
    border-radius: 10px;
    overflow: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    height: 100%;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.blog-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.blog-image {
    position: relative;
    height: 220px;
    overflow: hidden;
}

.blog-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.blog-card:hover .blog-image img {
    transform: scale(1.05);
}

.blog-date {
    position: absolute;
    top: 20px;
    right: 20px;
    background-color: var(--primary-blue);
    color: white;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    line-height: 1;
}

.date-day {
    font-size: 18px;
    font-weight: 700;
}

.date-month {
    font-size: 12px;
    text-transform: uppercase;
}

.blog-content {
    padding: 25px;
}

.blog-meta {
    display: flex;
    justify-content: space-between;
    font-size: 13px;
    color: var(--medium-gray);
    margin-bottom: 15px;
}

.blog-meta span {
    display: flex;
    align-items: center;
}

.blog-title {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 15px;
    line-height: 1.4;
}

.blog-title a {
    color: var(--dark-gray);
    text-decoration: none;
    transition: all 0.3s ease;
}

.blog-title a:hover {
    color: var(--primary-blue);
}

.blog-excerpt {
    color: var(--medium-gray);
    margin-bottom: 20px;
    font-size: 15px;
}

.read-more {
    color: var(--primary-blue);
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    transition: all 0.3s ease;
}

.read-more i {
    margin-left: 8px;
    transition: all 0.3s ease;
}

.read-more:hover {
    color: #d4a017;
}

.read-more:hover i {
    transform: translateX(5px);
}

/* Responsive Styles */
@media (max-width: 1199px) {
    .blog-image {
        height: 200px;
    }
    
    .blog-content {
        padding: 20px;
    }
}

@media (max-width: 991px) {
    .blog-title {
        font-size: 18px;
    }
    
    .blog-excerpt {
        font-size: 14px;
    }
}

@media (max-width: 767px) {
    .blog-card {
        max-width: 400px;
        margin: 0 auto;
    }
    
    .blog-image {
        height: 250px;
    }
}

@media (max-width: 575px) {
    .blog-image {
        height: 200px;
    }
    
    .blog-meta {
        flex-direction: column;
        gap: 10px;
    }
}

/* Contact Section Styles */
.contact-section {
    background-color: #f8f9fa;
}

.contact-form-wrapper {
    background: linear-gradient(135deg, var(--primary-blue) 0%, #2c5aa0 100%);
    height: 100%;
}

.contact-form .form-control,
.contact-form .form-control-lg {
    background-color: rgba(255, 255, 255, 0.9);
    border: none;
    border-radius: 6px;
    padding: 12px 20px;
    font-size: 16px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.contact-form .form-control:focus {
    background-color: white;
    box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.3);
}

.contact-form textarea.form-control {
    min-height: 120px;
    resize: vertical;
}

.btn-light.text-primary {
    transition: all 0.3s ease;
}

.btn-light.text-primary:hover {
    background-color: #f0f0f0;
    transform: translateY(-2px);
}

.contact-image {
    transition: transform 0.3s ease;
}

.contact-image:hover {
    transform: translateY(-5px);
}

.contact-image img {
    height: 240px;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.contact-image:hover img {
    transform: scale(1.05);
}

.bg-primary-light {
    background-color: rgba(212, 160, 23, 0.1);
}

/* Responsive Adjustments */
@media (max-width: 991px) {
    .contact-form-wrapper {
        margin-bottom: 30px;
    }
    
    .contact-image img {
        height: 200px;
    }
}

@media (max-width: 767px) {
    .contact-form .form-control,
    .contact-form .form-control-lg {
        padding: 10px 15px;
        font-size: 15px;
    }
    
    .contact-image img {
        height: 180px;
    }
}