/* Base Styles */
:root {
    --primary-color: #1a3e72;
    --primary-light-10: #335c91;
    --primary-light-20: #4d6da0;
    --primary-light-30: #7c9cd0;
    --primary-light-40: #a8bfdc;

    --primary-dark-10: #152f59;
    --primary-dark-20: #102344;
    --primary-dark-30: #0a172f;

    --primary-alpha-90: rgba(26, 62, 114, 0.9);
    --primary-alpha-70: rgba(26, 62, 114, 0.7);
    --primary-alpha-50: rgba(26, 62, 114, 0.5);
    --primary-alpha-30: rgba(26, 62, 114, 0.3);

    --primary-gradient: linear-gradient(135deg, #1a3e72, #4d6da0);
    --primary-gradient-soft: linear-gradient(135deg, #4d6da0, #a8bfdc);
    
    --primary-color: #1a3e72;
    --primary-light: #4d6da0;
    --secondary-color: #e9b949;
    --accent-color: #2a5a8f;
    --dark-color: #0a1f3d;
    --light-color: #f8f9fa;
    --text-color: #333;
    --text-light: #6c757d;
    --white: #fff;
    --black: #000;
    --font-primary: 'Montserrat', sans-serif;
    --font-secondary: 'Playfair Display', serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-primary);
    color: var(--text-color);
    line-height: 1.6;
    overflow-x: hidden;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}


/* 4-line clamp */
.clamp-4 {
  display: -webkit-box;
  -webkit-line-clamp: 4;        /* number of lines to show */
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* 2-line clamp */
.clamp-2 {
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-secondary);
    font-weight: 600;
    line-height: 1.2;
    margin-bottom: 15px;
}

h1 {
    font-size: 2.5rem;
}

h2 {
    font-size: 2rem;
}

h3 {
    font-size: 1.5rem;
}

p {
    margin-bottom: 15px;
}

a {
    text-decoration: none;
    color: var(--primary-color);
    transition: all 0.3s ease;
}

a:hover {
    color: var(--accent-color);
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 24px;
    border-radius: 4px;
    font-weight: 500;
    text-align: center;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.btn-primary {
    background-color: var(--primary-color);
    color: var(--white);
}

.btn-primary:hover {
    background-color: var(--accent-color);
    color: var(--white);
}

.btn-secondary {
    background-color: var(--secondary-color);
    color: var(--dark-color);
}

.btn-secondary:hover {
    background-color: #d8a732;
    color: var(--dark-color);
}

.btn-text {
    color: var(--primary-color);
    padding: 0;
    font-weight: 600;
}

.btn-text:hover {
    color: var(--accent-color);
}

.btn-text i {
    margin-left: 5px;
}

 /* Navbar Styles */
 .navbar {
    position: sticky;
    top: 0;
    background: white;
    border-bottom: 4px solid;
    border-color: #1a3e72;
    /* box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2); */
    z-index: 1000;
    padding: 15px 0;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.logo {
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    font-size: 1.5rem;
    color: #1a3e72;
}

.logo span {
    display: block;
    font-size: 0.8rem;
    font-weight: 400;
    color: #6c757d;
    margin-left: 2px;
}

.nav-links {
    list-style: none;
    display: flex;
    gap: 45px;
}
.minus {
    margin-top: -8px;
    color: #6c757d;
}
.fade-color a {
    color: #6c757d;
}

.nav-links a {
    color: #333;
    font-weight: 500;
    transition: color 0.3s;
}

.nav-links a:hover {
    color: #1a3e72;
}

/* Mobile Menu */
.mobile-menu-btn {
    display: none;
    font-size: 1.5rem;
    cursor: pointer;
}

@media (max-width: 768px) {
    .nav-links, .nav-cta {
        display: none;
    }
    
    .mobile-menu-btn {
        display: block;
    }
}

/* Mobile Menu Styles */
.mobile-menu {
    position: fixed;
    top: 80px;
    left: 0;
    width: 100%;
    background: white;
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
    transform: translateY(-150%);
    transition: transform 0.3s ease;
    z-index: 999;
    padding: 20px 0;
}

.mobile-menu.active {
    transform: translateY(0);
}

.mobile-menu-container {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 15px;
    padding: 0 20px;
}

.mobile-menu a {
    color: #333;
    font-weight: 500;
    padding: 10px 15px;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.mobile-menu a:hover {
    background: #f5f5f5;
    color: #1a3e72;
}

.mobile-menu .btn {
    background: #1a3e72;
    color: white;
    text-align: center;
    padding: 12px;
    margin-top: 10px;
}

.mobile-menu .btn:hover {
    background: #142f5c;
    color: white;
}
/* Hero Section */
.hero {
    height: 620px;
    background: linear-gradient(rgba(10, 31, 61, 0), rgba(10, 31, 61, 0.493)), url('/assets/images/hero.jpg');
    background-size: cover;
    background-position: center;
    color: var(--white);
    padding: 180px 0 100px;
    text-align: center;
    position: relative;
    overflow: hidden;
    background-attachment: fixed; 
    background-repeat: no-repeat;
    z-index: 1;
    border-bottom: 6px solid #003366;
}


.hero h1 {
    font-size: 3rem;
    margin-bottom: 20px;
}

.hero p {
    font-size: 1.2rem;
    max-width: 700px;
    margin: 0 auto 30px;
    color: white;
}
#dark-sub{
color: var(--dark-color);

}
.hero-btns {
    display: flex;
    justify-content: center;
    gap: 20px;
}

/* Mission Section - Modern Styling */
.mission-section {
    padding: 100px 0;
    position: relative;
    overflow: hidden;
    background-color: var(--primary-gradient-soft);
}

.mission-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.mission-image {
    position: relative;
    /* border-radius: 12px; */
    overflow: hidden;
    /* height: 500px; */
    /* box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1); */
}

.mission-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(26, 62, 114, 0.7) 0%, rgba(26, 62, 114, 0.3) 100%);
}

.mission-text {
    position: relative;
    z-index: 2;
}

.section-badge {
    display: inline-block;
    background: #e9f0fb;
    color: var(--primary-color);
    padding: 6px 15px;
    border-radius: 20px;
    font-weight: 600;
    font-size: 0.85rem;
    margin-bottom: 15px;
}

.section-header h2 {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 15px;
    line-height: 1.2;
}

.shade {
    background: linear-gradient(135deg, rgba(26, 62, 114, 0.1), rgba(26, 62, 114, 0.05));
    padding-top: 40px;
    border-radius: 8px;
    /* box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1); */
}

.subtitle {
    font-size: 1.2rem;
    color: #555;
    margin-bottom: 30px;
}

.subtitle-hero {
    font-size: 1.2rem;
    color: #ffffff;
    margin-bottom: 30px;
}

.mission-statement p {
    padding: 18px;
    text-align: left;
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 30px;
    color: var(--text-color);
}

.mission-statement span {
    text-align: left;
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 30px;
    color: var(--text-color);
}

.mission-points {
    display: grid;
    gap: 20px;
    margin: 40px 0;
}

.subtitle{
    color: #555;;
}

.point {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.point .outer-point{
    display: flex;
    gap: 8px;

}



.point i {
    font-size: 1.5rem;
    color: var(--secondary-color);
    margin-top: 5px;
}

.point h4 {
    color: var(--primary-color);
    margin-top: 4px;
}

.btn-outline {
    display: inline-block;
    padding: 12px 30px;
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
    border-radius: 4px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-outline:hover {
    background: var(--primary-color);
    color: white;
}

/* Responsive */
@media (max-width: 992px) {
    .mission-content {
        grid-template-columns: 1fr;
    }
    
    .mission-image {
        height: 350px;
        order: -1;
    }
}

@media (max-width: 576px) {
    .mission-section {
        padding: 60px 0;
    }
    
    .section-header h2 {
        font-size: 2rem;
    }
    
    .point {
        flex-direction: column;
    }
}

/* Services Preview */

.service{
    margin-bottom: 48px;
}
.services-preview {
    padding: 80px 0;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.service-card {
    background-color: var(--white);
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    text-align: center;
    transition: transform 0.3s ease;
}

.service-card:hover {
    transform: translateY(-10px);
}

.service-icon {
    width: 70px;
    height: 70px;
    background-color: rgba(26, 62, 114, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    color: var(--primary-color);
    font-size: 1.5rem;
}

.service-card h3 {
    color: var(--primary-color);
    margin-bottom: 15px;
}

/* Pricing Section */
.pricing-section {
    padding: 80px 0;
    background-color: var(--light-color);
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.pricing-card {
    background-color: var(--white);
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    text-align: center;
}

.pricing-card.featured {
    border: 2px solid var(--secondary-color);
    position: relative;
}

.pricing-card.featured::before {
    content: "Popular";
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background-color: var(--secondary-color);
    color: var(--dark-color);
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
}

.pricing-card h3 {
    color: var(--primary-color);
    margin-bottom: 20px;
}

.price {
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.text-center {
    text-align: center;
    margin-top: 40px;
}

/* Testimonials Section*/
.testimonials {
    padding: 100px 0;
    background-color: #f9fafc;
}

.testimonial-carousel {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
    padding: 0 40px;
}

.testimonial-slide {
    display: none;
    animation: fadeIn 0.5s ease;
}

.testimonial-slide.active {
    display: block;
}

.testimonial-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    background: white;
    border-radius: 12px;
    padding: 40px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    position: relative;
}

.client-image {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    overflow: hidden;
    border: 4px solid #e9f0fb;
    margin-bottom: 25px;
}

.client-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.testimonial-text {
    text-align: center;
    position: relative;
}

.quote-icon {
    font-size: 4rem;
    color: #e9f0fb;
    position: absolute;
    top: -30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1;
    line-height: 1;
}

.testimonial-text p {
    position: relative;
    z-index: 2;
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 25px;
    font-style: italic;
    color: #555;
}

.client-info {
    margin-top: 20px;
}

.author-name {
    font-weight: 600;
    color: #1a3e72;
    font-size: 1.1rem;
}

.author-title {
    font-size: 0.9rem;
    color: #6c757d;
    margin-top: 5px;
}

/* Carousel Navigation */
.carousel-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: white;
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    z-index: 10;
    color: #1a3e72;
}

.carousel-nav:hover {
    background: #1a3e72;
    color: white;
}

.carousel-nav.prev {
    left: -20px;
}

.carousel-nav.next {
    right: -20px;
}

.carousel-nav i {
    font-size: 1.2rem;
}

/* Indicators */
.carousel-indicators {
    display: flex;
    justify-content: center;
    margin-top: 30px;
    gap: 10px;
}

.indicator {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #ddd;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    padding: 0;
}

.indicator.active {
    background: #1a3e72;
    transform: scale(1.2);
}

/* Animation */
@keyframes fadeIn {
    from { opacity: 0.4; }
    to { opacity: 1; }
}

/* Responsive */
@media (max-width: 768px) {
    .testimonial-carousel {
        padding: 0 20px;
    }
    
    .carousel-nav {
        width: 40px;
        height: 40px;
    }
    
    .carousel-nav.prev {
        left: -10px;
    }
    
    .carousel-nav.next {
        right: -10px;
    }
    
    .testimonial-content {
        padding: 30px 20px;
    }
}

/* Footer */
.footer {
    background-color: var(--dark-color);
    color: var(--white);
    padding: 60px 0 20px;
}



.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin-bottom: 40px;
}

.footer-logo {
    margin-top: -6px;
    margin-bottom: 16px;
}

.footer-logo .logo-text {
    font-weight: 700;
    font-size: 22px;
    color: var(--secondary-color);

}

.footer-logo .logo-subtext {
    font-weight: 400;
    margin-top: -6px !important;
    font-size: 12px;
    color: rgba(255, 255, 255, 0.7);
}

.footer h3 {
    color: var(--white);
    margin-bottom: 20px;
    font-size: 1.2rem;
}

.footer-links{
    display: flex;
    gap: 4px;
    flex-direction: column;
    margin-left: 80px;
}

.footer-links ul {
    list-style: none;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links h3{
    color: var(--secondary-color);
    font-family: 'Poppins', sans-serif;

}
.footer-links a {
    color: rgba(255, 255, 255, 0.7);
}

.footer-links a:hover {
    color: var(--white);
}

.contact-info h3{
    text-align: start;
    font-family: 'Poppins', sans-serif;
    color: var(--secondary-color);

}

.contact-info p {
    /*display: flex;
    text-align: start;
    margin-bottom: 15px;*/
    align-items: start;
    color: rgba(255, 255, 255, 0.7);
}

.contact-info i {
    margin-right: 10px;
    color: var(--secondary-color);
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-links a i {
    padding-top: 12px;
} 

.social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    padding-left: 10px;
    height: 40px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: var(--white);
    transition: all 0.3s ease;
}

.social-links a:hover {
    background-color: var(--primary-color);
}

.copyright {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
}

/* Responsive Styles */
@media (max-width: 992px) {
    .hero h1 {
        font-size: 2.5rem;
    }
    /* .social-links a i {
    padding-top: 12px;
    } */
}

@media (max-width: 768px) {
    .hero{
        padding: 72px 0 24px !important;

    }
    .main-nav {
        display: none;
    }
    
    .mobile-menu-btn {
        display: block;
    }
    
    .hero-btns {
        flex-direction: column;
        gap: 15px;
    }
    
    .hero h1 {
        font-size: 2rem;
    }
    
    .hero p {
        font-size: 1rem;
    }
    /* .social-links i {
    padding: 10px;
    } */
    .footer-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-links {
        margin-left: 0;
    }
    
    .footer-links ul {
        padding-left: 0;
    }
    
    .footer-links li {
        margin-bottom: 10px;
    }
    
    .contact-info p {
        font-size: 0.9rem;
    }
    
    .contact-info i {
        font-size: 0.9rem;
    }
}

@media (max-width: 576px) {
    .hero {

        padding: 150px 0 80px;
    }
    
    .hero h1 {
        font-size: 1.8rem;
    }
    
    .section-header h2 {
        font-size: 1.5rem;
    }
}

/* Page Header */
.page-header {
    background: linear-gradient(rgba(10, 31, 61, 0.8), rgba(10, 31, 61, 0.8)), url('https://us.123rf.com/450wm/freedomtumz/freedomtumz1909/freedomtumz190900021/131008761-male-lawyer-or-judge-working-with-contract-papers-law-books-and-wooden-gavel-on-table-in-courtroom.jpg?ver=6');
    background-size: cover;
    background-position: center;
    color: var(--white);
    padding: 120px 0 60px;
    text-align: center;
    z-index: 1;
    position: relative;
    overflow: hidden;
    background-attachment: fixed;
    background-size: cover;

}




.page-header h1 {
    font-size: 2.5rem;
    margin-bottom: 15px;
}

/* Services Detail */
.services-detail {
    padding: 80px 0;
}

.service {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-bottom: 60px;
}

.service:nth-child(even) .service-content {
    order: -1;
}

.service-image {
    /* border-radius: 8px; */
    overflow: hidden;
    /* box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1); */
}

.service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.service-content h2 {
    color: var(--primary-color);
    margin-bottom: 20px;
}

.service-content ul {
    margin: 20px 0;
    padding-left: 20px;
}

.service-content li {
    margin-bottom: 10px;
}

/* Team Section */
.team-section {
    padding: 80px 0;
}

.team-grid {
    display: flex;
    /* grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); */
    gap: 30px;
    align-items: center;
    justify-content: center;
    margin-top: 40px;
}

.team-member {
    align-self: center;
    justify-self: center;
    /* height: 100%;
    width: 300px; */
    background-color: var(--white);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding-top: 30px;
}

.member-image {
    border-radius: 50%;
    width: 150px;
    height: 150px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.member-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.team-member:hover .member-image img {
    transform: scale(1.05);
}

.member-info {
    padding: 25px;
}

.member-info h3 {
    color: var(--primary-color);
    margin-bottom: 5px;
}

.position {
    color: var(--secondary-color);
    font-weight: 500;
    margin-bottom: 15px;
}

.member-contact {
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
}

.member-contact p {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
    font-size: 0.9rem;
}

.member-contact i {
    margin-right: 10px;
    color: var(--secondary-color);
}

@media screen and (max-width: 768px) {

    .team-member {
    align-self: center;
    justify-self: center;
    /* height: 510px;
    width: 350px; */
    background-color: var(--white);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding-top: 30px;
}

.member-image {
    border-radius: 50%;
    width: 150px;
    height: 150px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    /* margin-top: -30%; */
    margin-bottom: 10px;
}

.member-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

 }


.about-hero {
    background: linear-gradient(rgba(26, 62, 114, 0.9), rgba(26, 62, 114, 0.9)), 
                url('https://images.unsplash.com/photo-1454165804606-c3d57bc86b40?ixlib=rb-1.2.1&auto=format&fit=crop&w=1350&q=80');
    background-size: cover;
    background-position: center;
    color: white;
    padding: 120px 0 80px;
    text-align: center;
    position: relative;
    overflow: hidden;
    background-attachment: fixed; 
    background-repeat: no-repeat;
    z-index: 1;
}

.parallax-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    max-width: 1200px;
    padding: 0 20px;
    text-align: center;
    color: white;
}

/* Responsive Adjustments */
@media (max-width: 992px) {
    .page-header,
    .about-hero,
    .hero {
        background-attachment: scroll; /* Disable parallax on mobile */
    }
}




.about-hero h1 {
    font-size: 2.8rem;
    margin-bottom: 15px;
}

.subtitle {
    font-size: 1.2rem;
    max-width: 700px;
    margin: 0 auto 40px;
    opacity: 0.9;
}

.stats-grid {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-top: 50px;
    flex-wrap: wrap;
}

.stat-item {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(5px);
    padding: 20px 30px;
    border-radius: 8px;
    min-width: 180px;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    display: block;
    line-height: 1;
}

.stat-label {
    font-size: 0.9rem;
    opacity: 0.8;
}

.mission-section {
    padding: 100px 0;
}

.mission-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.section-badge {
    display: inline-block;
    background: #e9f0fb;
    color: #1a3e72;
    padding: 6px 15px;
    border-radius: 20px;
    font-weight: 600;
    font-size: 0.85rem;
    margin-bottom: 20px;
}

.lead {
    font-size: 1.2rem;
    text-align: left;
    color: #444;
    margin-bottom: 25px;
}

.mission-points {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-top: 30px;
}

.point {
    background: #f9fafc;
    padding: 20px;
    border-radius: 8px;
}

.point i {
    color: #1a3e72;
    font-size: 1.5rem;
    margin-bottom: 15px;
}

.point h4 {
    margin-bottom: 8px;
}

.mission-image {
    position: relative;
}



.mission-image img {
    /* border-radius: 8px; */
    /* box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1); */
    width: 100%;
}

.experience-badge {
    position: absolute;
    bottom: -20px;
    right: -20px;
    background: #1a3e72;
    color: white;
    padding: 15px;
    border-radius: 8px;
    text-align: center;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.years {
    font-size: 2rem;
    font-weight: 700;
    display: block;
    line-height: 1;
}

.values-section {
    padding: 80px 0;
    background: #f9fafc;
}

.section-header {
    text-align: center;
    margin-bottom: 50px;
}

.section-header h2 {
    color: #1a3e72;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.value-card {
    background: white;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    text-align: center;
    transition: transform 0.3s ease;
}

.value-card:hover {
    transform: translateY(-5px);
}

.value-icon {
    width: 70px;
    height: 70px;
    background: #e9f0fb;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    color: #1a3e72;
    font-size: 1.5rem;
}

.team-preview {
    padding: 80px 0;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.team-card {
    background: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
}

.team-card:hover {
    transform: translateY(-5px);
}

.team-image {
    height: 350px;
    overflow: hidden;
}

.team-image img {
    width: 400px;
    height: 100%;
    object-position: center center;
    object-fit: cover;
    image-rendering: optimizeQuality;
    transition: transform 0.3s ease;
}

.team-card:hover .team-image img {
    transform: scale(1.05);
}

.team-info {
    
    padding: 25px;
}

.position {
    color: #1a3e72;
    font-weight: 600;
    margin-bottom: 10px;
}

.bio {
    margin-bottom: 15px;
    color: #666;
}

.about-cta {
    padding: 80px 0;
    background: #1a3e72;
    color: white;
}

.cta-card {
    background: white;
    color: #333;
    border-radius: 8px;
    padding: 50px;
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.cta-card h2 {
    color: #1a3e72;
    margin-bottom: 15px;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 30px;
}

@media (max-width: 768px) {
    .mission-content {
        grid-template-columns: 1fr;
    }

    .point .outer-point{
        text-align: center;
        justify-content: center;
        align-items: center;
    }
    
    .mission-points {
        grid-template-columns: 1fr;
    }
    
    .stats-grid {
        gap: 20px;
    }
    
    .experience-badge {
        right: 0;
    }
}

/* Map Section */
.map-section {
    padding-bottom: 80px;
}

.map-section h2 {
    text-align: center;
    color: var(--primary-color);
    margin-bottom: 40px;
}

.map-container {
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

/* CTA Section */
.cta-section {
    padding: 60px 0;
    background-color: var(--primary-color);
    color: var(--white);
    text-align: center;
}

.cta-section h2 {
    color: var(--white);
    margin-bottom: 15px;
}

.cta-section p {
    max-width: 700px;
    margin: 0 auto 30px;
}

@media (max-width: 992px) {
    .service {
        grid-template-columns: 1fr;
    }
    
    .service:nth-child(even) .service-content {
        order: 0;
    }
}

@media (max-width: 768px) {
    .contact-grid {
        grid-template-columns: 1fr;
    }
    
    .page-header {
        padding: 100px 0 50px;
    }
}

@media (max-width: 576px) {
    .page-header h1 {
        font-size: 2rem;
    }
    
    .page-header p {
        font-size: 1rem;
    }

    .footer-links{
        margin-left: 0;
    }

    .hero-content h1{
        font-size: 36px;
    }
    .hero-content {
        /* padding: 160px 0; */
    }
}

/* Contact Section */
.contact-section {
    padding: 80px 0;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    max-width: 1200px;
    margin: 0 auto;
}

.contact-info h2, 
.contact-form h2 {
    font-family: var(--font-secondary);
    color: var(--primary-color);
    font-size: 2rem;
    margin-bottom: 30px;
    position: relative;
}

.contact-info h2::after,
.contact-form h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 60px;
    height: 3px;
    background: var(--secondary-color);
}

.info-item {
    display: flex;
    margin-bottom: 30px;
    align-items: flex-start;
}

.info-item i {
    font-size: 1.2rem;
    color: var(--secondary-color);
    margin-right: 20px;
    margin-top: 5px;
}

.info-item h3 {
    font-size: 1.1rem;
    margin-bottom: 5px;
    color: var(--primary-color);
}

.info-item p {
    color: var(--text-color);
    line-height: 1.6;
}

/* Contact Form */
.contact-form {
    background: white;
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.form-group {
    margin-bottom: 25px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    color: var(--primary-color);
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-family: var(--font-primary);
    font-size: 1rem;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--primary-color);
    outline: none;
    box-shadow: 0 0 0 3px rgba(26, 62, 114, 0.1);
}

.form-group textarea {
    min-height: 150px;
    resize: vertical;
}

.btn {
    display: inline-block;
    padding: 12px 24px;
    border-radius: 4px;
    font-weight: 600;
    text-align: center;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
}

.btn-primary {
    background: var(--primary-color);
    color: white;
}

.btn-primary:hover {
    background: var(--accent-color);
    transform: translateY(-2px);
}

/* Alerts */
.alert {
    padding: 15px;
    margin-bottom: 20px;
    border-radius: 4px;
}

.alert-danger {
    background-color: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}

.alert-success {
    background-color: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

/* Map Section */
.map-section {
    padding-bottom: 80px;
}

.map-section h2 {
    text-align: center;
    color: var(--primary-color);
    font-family: var(--font-secondary);
    font-size: 2rem;
    margin-bottom: 40px;
}

.map-container {
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    height: 450px;
}

/* Responsive */
@media (max-width: 992px) {
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: left !important;
    }
    
     .contact-info {
        text-align: center !important;
        margin: 0 20px;
    } 
    
    .info-item {
        flex-direction: column;
        align-items: left;
        text-align: left;
    }
    
    .info-item i {
        margin-right: 0;
        margin-bottom: 10px;
    }
    
    .contact-info h2::after,
    .contact-form h2::after {
        left: 50%;
        transform: translateX(-50%);
    }

}

@media (max-width: 576px) {
    .page-header h1 {
        font-size: 2rem;
    }
    
    .page-header p {
        font-size: 1rem;
    }
    
    .contact-form {
        padding: 30px 20px;
    }

    .mission-statement{
        text-align: center;
    }

    .mission-text{
        text-align: center;
    }

    .contact-info {
        text-align: left !important;
        align-items: flex-start;
  }

    .contact-info p,
    .contact-info h3,
    .contact-info .social-links {
        text-align: left;
        justify-content: flex-start;
    }

    .contact-info .social-links a {
        margin-right: 10px;
        display: inline-block;
    }

}


.typing-wrapper {
    display: inline-block;
    word-wrap: break-word; 
    max-width: 100%;
}

.typing {
    overflow: hidden;
    display: inline-block;
    border-right: 2px solid #000;
    animation: blink 0.6s step-end infinite;
    font-size: 24px;
    white-space: nowrap;  
    line-height: 1.5;
}

@keyframes blink {
    50% { border-color: transparent; }
}

@media (max-width: 768px) {
    .typing {
        font-size: 18px;  
        white-space: normal; 
        display: inline-block;  
    }
}


/*.fade-in {
    opacity: 0;
    transform: translateY(150px);
    will-change: opacity, transform;
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}*/



#progress-bar {
    position: fixed;
    top: 0;
    left: 0;
    width: 0%;
    height: 5px;
    background: var(--secondary-color);
    z-index: 9999;
}



/* MY CSS STYLING */
/* Responsive layout for employment law section */
.emp-flex-layout {
    display: flex;
    flex-direction: column-reverse;
    gap: 2rem;
}

.hidden {
    display: none;
}
.btn-b { border: 1px solid white;}

.emp-service-content,
.emp-service-image {
    width: 100%;
}

/* Desktop view */
@media (min-width: 768px) {
    .emp-flex-layout {
        flex-direction: row;
        align-items: flex-start;
    }

    .emp-service-content {
        flex: 1;
    }

    .emp-service-image {
        flex: 1;
        text-align: right;
    }

    .emp-service-image img {
        max-width: 100%;
        height: auto;
        border-radius: 8px;
        object-fit: cover;
    }
}

/* Mobile view */
@media (max-width: 767px) {
    .emp-service-image img {
        width: 100%;
        height: auto;
        border-radius: 8px;
    }
}





/* To hide the scrollbar on the .firm-news-carousel while keeping it scrollable, you can apply the CSS techniques discussed earlier to the carousel element. Since you’re using a carousel (likely with horizontal scrolling), I’ll tailor the solution to your HTML structure and ensure cross-browser compatibility. Below is the CSS to hide the scrollbar for the .firm-news-carousel while maintaining its functionality.
CSS to Hide the Scrollbar
css */
    .firm-news-section {
    background-color: #f6f6f6;
    padding: 60px 0;
}

.firm-news-header {
    text-align: center;
    margin-bottom: 40px;
}

.firm-news-carousel-wrapper {
    position: relative;
    overflow: hidden;
    max-width: 1200px;
    margin: 0 auto;
}

.firm-news-carousel {
    display: flex;
    gap: 25px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    padding-bottom: 10px;
    -webkit-overflow-scrolling: touch;
    cursor: grab;
    user-select: none;
}

.firm-news-carousel::-webkit-scrollbar {
    display: none;
}

.firm-news-carousel {
    scrollbar-width: none;
    -ms-overflow-style: none;
}

.firm-news-card {
    position: relative;
    width: 370px;
    min-width: 370px;
    max-width: 370px;
    flex: 0 0 370px;
    height: auto;
    padding: 1rem 1rem 3rem;
    border: 1px solid #fff;
    border-radius: 8px;
    background: #fff;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    scroll-snap-align: start;
}

.firm-news-card img {
    width: 100%;
    height: 180px;
    object-fit: cover;
}

.firm-news-content {
    flex: 1 1 auto;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 12; /* Number of lines to show */
    line-clamp: 12;
    -webkit-box-orient: vertical;
    line-height: 1.5em;
    max-height: calc(1.5em * 12); /* Match line count */
    text-overflow: ellipsis;
    margin-bottom: 1rem;
}

.read-more-button {
    position: absolute;
    bottom: 1rem;
    left: 1rem;
    margin: 10px 0;
    padding: 0.5rem 1rem;
    background-color: #003e82;
    color: #fff;
    text-decoration: none;
    border-radius: 5px;
    transition: background 0.3s ease;
}

.read-more-button:hover {
    color: #fff;
    background-color: #a0caf7;
}

.firm-news-date {
    font-size: 0.85rem;
    color: #999;
    margin-bottom: 8px;
    display: block;
}

.firm-news-title {
    font-size: 1.4rem;
    margin: 5px 0;
    color: #333;
    line-height: 1.4;
    max-height: calc(1.4rem * 1.4 * 2); /* 2 lines */
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 2; /* Limit to 2 lines */
    line-clamp: 2;
    text-overflow: ellipsis;
}

.firm-news-subtitle {
    font-size: 0.95rem;
    color: #444;
    line-height: 1.4;
    max-height: calc(0.95rem * 1.4 * 4); /* 4 lines */
    overflow: hidden;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 4; /* Limit to 4 lines */
    line-clamp: 4;
    text-overflow: ellipsis;
}

.firm-news-content p {
    font-size: 0.95rem;
    color: #444;
    line-height: 1.4;
    max-height: 4.2rem; /* ~3 lines: 0.95rem * 1.4 * 3 */
    overflow: hidden;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3; /* Limit to 3 lines */
    line-clamp: 3;
    text-overflow: ellipsis;
}

.firm-news-btn {
    position: absolute;
    top: 40%;
    transform: translateY(-50%);
    background: #003366;
    border: none;
    border-radius: 50%;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.15);
    width: 40px;
    height: 40px;
    cursor: pointer;
    z-index: 10;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #fff;
    transition: background 0.3s ease, opacity 0.3s ease;
}

.firm-news-btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.firm-news-btn:hover:not(:disabled) {
    background: #e1e1e1;
}

.prev-btn {
    left: 20px;
}

.next-btn {
    right: 20px;
}

.no-news {
    text-align: center;
    color: #666;
    padding: 20px;
    
/* Show 3 cards in a row on desktop */
@media (min-width: 992px) {
    .firm-news-carousel {
        gap: 25px;
    }
    .firm-news-card {
        width: 350px;
        min-width: 350px;
        max-width: 350px;
        flex: 0 0 350px;
    }
}
/* Tablet: 2 cards per row */
@media (min-width: 768px) and (max-width: 991px) {
    .firm-news-card {
        width: 340px;
        min-width: 340px;
        max-width: 340px;
        flex: 0 0 340px;
    }
}
/* Mobile: 1 card per row */
@media (max-width: 767px) {
    .firm-news-carousel {
        gap: 15px;
    }
    .firm-news-card {
        width: 100vw;
        min-width: 100vw;
        max-width: 100vw;
        flex: 0 0 100vw;
    }
    .firm-news-content p {
        max-height: 5.6rem; /* ~4 lines for mobile: 0.95rem * 1.4 * 4 */
        -webkit-line-clamp: 4; /* Allow more lines on mobile */
        line-clamp: 4;
    }
}
        max-height: 5.6rem; /* ~4 lines for mobile: 0.95rem * 1.4 * 4 */
        -webkit-line-clamp: 4; /* Allow more lines on mobile */
        line-clamp: 4;
    }





/* News Excerpt Styling For Blogs */
.service-content {
    height: auto;
    overflow: hidden;
    padding: 20px;
    background-color: #f9f9f9;
    border-radius: 8px;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.service-content h2,
.service-content h3 {
    margin-bottom: 10px;
    color: #222;
    max-height: calc(1.5em * 2); /* 2 lines */
    overflow: hidden;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2; /* Limit to 2 lines */
    text-overflow: ellipsis;
}

.service-content .news-excerpt {
    font-size: 0.95rem;
    color: #444;
    line-height: 1.5;
    max-height: calc(1.5em * 5); /* 5 lines */
    overflow: hidden;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 5;
    text-overflow: ellipsis;
}

.service-content .btn {
    align-self: flex-start;
    padding: 10px 20px;
    text-decoration: none;
    background-color: #003366;
    color: #fff;
    border-radius: 4px;
    transition: background-color 0.3s ease;
}

.service-content .btn:hover {
    background-color: #0055aa;
}
/* 
.news-excerpt {
    font-size: 0.95rem;
    color: #444;
    line-height: 1.4;
    overflow: hidden;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 6; /* Limit to 6 lines 
    text-overflow: ellipsis;
    max-height: calc(0.95rem * 1.4 * 6);  /* Line-height x font-size x 6 lines 
} */




/* The news page css styling  */
.claris-news-container {
    max-width: 800px;
    margin: 40px auto;
    padding: 20px;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 1px 1px rgba(0, 0, 0, 0.08);
    text-align: left;
}

.claris-news-image {
    width: 100%;
    max-height: 400px;
    object-fit: cover;
    margin-bottom: 20px;
}

.claris-news-title {
    font-size: 1.8rem;
    color: #333;
    margin: 10px 0;
}

.claris-news-subtitle {
    font-size: 1.2rem;
    color: #666;
    margin: 20px 0 35px 0;
}

.claris-news-date {
    font-size: 0.85rem;
    color: #999;
    display: block;
    margin: 10px 0;
}

.claris-news-text {
    font-size: 0.95rem;
    color: #444;
    line-height: 1.6;
    margin: 20px 0;
}

.claris-news-back {
    display: inline-block;
    font-size: 0.9rem;
    color: #007bff;
    text-decoration: none;
    margin-top: 20px;
}

.claris-news-back:hover {
    text-decoration: underline;
}

.claris-news-error {
    text-align: center;
    color: #666;
    font-size: 1rem;
    padding: 20px;
}
    .content-truncate {
        height: 200px;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
    }

@media (max-width: 768px) {
    .claris-news-container {
        margin: 20px;
        padding: 15px;
    }

    .claris-news-title {
        font-size: 1.5rem;
    }

    .claris-news-subtitle {
        font-size: 1rem;
    }

    .claris-news-image {
        max-height: 300px;
    }
    .content-truncate {
        height: 200px;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
    }
}

/* News Info Section */

.news-info-section {
    background-color: #f1f1f1;
    color: #000000;
    padding: 60px 20px;
}

.news-info-section .section-heading {
    text-align: center;
    margin-bottom: 40px;
    font-size: 35px;
    color: black;
}

.news-info-content {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 40px;
}

.news-info-image,
.news-info-text {
    flex: 1 1 400px;
    max-width: 600px;
}

.news-info-image {
    text-align: center;
}

.news-info-image img {
    max-width: 100%;
    /* border-radius: 8px; */
    /* box-shadow: 0 0 10px rgba(0,0,0,0.4); */
}

.news-info-text {
    font-size: 16px;
    line-height: 1.7;
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
    .news-info-section {
        padding: 40px 15px;
    }

    .news-info-section .section-heading {
        font-size: 22px;
    }

    .news-info-content {
        flex-direction: column;
        gap: 10px;
    }

    .news-info-image,
    .news-info-text {
        max-width: 100%;
        text-align: left;
    }

    .news-info-text {
        margin-top: -150px;
        font-size: 17px;
    }
}



/* Ensure no bullets on all navigation lists */
/* Hide bullets and reset */
ul.dropdown-menu, .dropdown-menu li {
  list-style: none;
  margin: 0;
  padding: 0;
}

.has-dropdown .dropdown-menu {
  display: none;
  background: #fff;
  padding: 10px;
  /* border: 1px solid #ccc; */
  position: absolute;
  z-index: 999;
  min-width: 180px;
}

.has-dropdown.open .dropdown-menu {
  display: block;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
}

.dropdown-menu div {
  padding: 10px;
  cursor: pointer;
}
.dropdown-menu div a {
  text-decoration: none;
  display: block;
  margin: 0;
  padding: 0;
}


.dropdown-menu div:hover {
  background-color: #f4f4f4;
}

nav ul,
nav ul li,
.has-dropdown .dropdown-menu,
.has-dropdown .dropdown-menu li {
  list-style: none;
  margin: 0;
  padding: 0;
}

/* Dropdown wrapper */
.has-dropdown {
  position: relative;
}

/* Toggle button (e.g., "Offer") */
.has-dropdown > .dropdown-toggle {
  background: none;
  border: none;
  color: #333;
  font-size: 1.1rem;
  font-weight: 500;
  cursor: pointer;
  padding: 8px 15px;
  display: flex;
  align-items: center;
  /* gap: 5px; */
}

/* Dropdown list */
.has-dropdown .dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  background: #fff;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  border-radius: 6px;
  min-width: 200px;
  z-index: 1000;
  display: none;
}

/* Show dropdown */
.has-dropdown.open .dropdown-menu {
  display: block;
}

/* Dropdown items */
/*.has-dropdown .dropdown-menu li {
   border-bottom: 1px solid #eee; 
}*/

/* Last item no border */
.has-dropdown .dropdown-menu li:last-child {
  border-bottom: none;
}

/* Dropdown links */
.has-dropdown .dropdown-menu li a {
  display: block;
  padding: 1px 5px;
  text-decoration: none;
  color: #333;
  font-size: 0.95rem;
  transition: background 0.2s ease;
}

.has-dropdown .dropdown-menu li a:hover {
  background-color: #f7f7f7;
}

/* Mobile responsiveness */
@media (max-width: 768px) {
  .has-dropdown .dropdown-menu {
    position: static;
    box-shadow: none;
    border-radius: 0;
    min-width: 100%;
  }

  .has-dropdown .dropdown-menu li a {
    padding: 4px 8px;
    font-size: 1rem;
  }
}



.firm-service-section {
  max-width: 800px;
  margin: 0 auto;
  padding: 2rem 1rem;
  color: #333;
  font-size: 0.95rem;
  line-height: 1.6;
}

.firm-service-section h1 {
  font-size: 2rem;
  margin-bottom: 1rem;
  color: #111;
}

.firm-service-section h2 {
  font-size: 1.4rem;
  margin-top: 2rem;
  margin-bottom: 0.8rem;
  color: #222;
  border-bottom: 1px solid #ddd;
  padding-bottom: 0.4rem;
}


/* Firm service Section */

.firm-service-section p {
  margin-bottom: 1rem;
}

.firm-service-section ul {
  margin: 0 0 1rem 1.2rem;
  padding: 0;
  list-style-type: disc;
}

.firm-service-section ul li {
  margin-bottom: 0.5rem;
}

.firm-service-section a {
  color: #004085;
  text-decoration: underline;
}

.firm-service-section a:hover {
  text-decoration: none;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .firm-service-section {
    padding: 1rem;
  }

  .firm-service-section h1 {
    font-size: 1.8rem;
  }

  .firm-service-section h3 {
    font-size: 1.2rem;
  }
}