
        /* Combined styles from your original code */

        :root {
             --primary-color: #2c3e50;
            --secondary-color: #3498db;
            --accent-color: #e74c3c;
            --text-light: #7f8c8d;
            --bg-light: #f8f9fa;
            --transition-speed: 0.3s;
            --border-radius: 8px;
            --box-shadow: 0 2px 10px rgba(0,0,0,0.1);
        }
        

        * {
            box-sizing: border-box;
        }

        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            line-height: 1.6;
            color: #333;
        }

        img {
            max-width: 100%;
            height: auto;
            /* loading: lazy; */
        }

        .top-header {
            background: var(--bg-light);
            padding: 0.5rem 0;
            font-size: 0.875rem;
            color: var(--text-light);
            border-bottom: 1px solid #dee2e6;
        }

        .top-header .contact-info {
            margin: 0;
        }

        .top-header .nav-link {
            color: var(--text-light);
            padding: 0.25rem 0.75rem;
            text-decoration: none;
            transition: color var(--transition-speed) ease;
        }

        .top-header .nav-link:hover {
            color: var(--secondary-color);
        }

        .main-header {
            background: white;
            box-shadow: var(--box-shadow);
            padding: 1rem 0;
            position: sticky;
            top: 0;
            z-index: 1000;
            transition: all var(--transition-speed) ease;
        }

        .main-header.scrolled {
            padding: 0.5rem 0;
            box-shadow: 0 4px 20px rgba(0,0,0,0.15);
        }

        .logo {
            max-height: 60px;
            width: auto;
            transition: all var(--transition-speed) ease;
        }

        .main-header.scrolled .logo {
            max-height: 45px;
        }

        .navbar-nav .nav-link {
            color: var(--primary-color);
            font-weight: 500;
            padding: 0.75rem 1rem;
            text-transform: uppercase;
            font-size: 0.875rem;
            letter-spacing: 0.5px;
            transition: all var(--transition-speed) ease;
            position: relative;
        }

        .navbar-nav .nav-link:hover,
        .navbar-nav .nav-link.active {
            color: var(--secondary-color);
        }

        .navbar-nav .nav-link::after {
            content: '';
            position: absolute;
            width: 0;
            height: 2px;
            bottom: 0;
            left: 50%;
            background-color: var(--secondary-color);
            transition: all var(--transition-speed) ease;
        }

        .navbar-nav .nav-link:hover::after {
            width: 80%;
            left: 10%;
        }

        .dropdown-menu {
            border: none;
            box-shadow: 0 5px 25px rgba(0,0,0,0.15);
            border-radius: var(--border-radius);
            padding: 0.5rem 0;
            opacity: 0;
            visibility: hidden;
            transform: translateY(-10px);
            transition: all var(--transition-speed) ease;
        }

        .dropdown:hover .dropdown-menu {
            opacity: 1;
            visibility: visible;
            transform: translateY(0);
        }

        .dropdown-item {
            padding: 0.5rem 1.5rem;
            font-size: 0.875rem;
            transition: background-color var(--transition-speed) ease;
        }

        .dropdown-item:hover {
            background-color: var(--bg-light);
            color: var(--secondary-color);
        }

        .search-box {
            position: relative;
        }

        .search-input {
            border: 2px solid #e9ecef;
            border-radius: 25px;
            padding: 0.5rem 1rem 0.5rem 2.5rem;
            font-size: 0.875rem;
            transition: all var(--transition-speed) ease;
            width: 200px;
        }

        .search-input:focus {
            border-color: var(--secondary-color);
            box-shadow: none;
            width: 250px;
        }

        .search-icon {
            position: absolute;
            left: 0.75rem;
            top: 50%;
            transform: translateY(-50%);
            color: var(--text-light);
            pointer-events: none;
        }

        .mega-menu {
            min-width: 600px;
        }

        .mega-menu .row {
            padding: 1rem;
        }

        .mega-menu .col h6 {
            color: var(--primary-color);
            font-weight: 600;
            margin-bottom: 0.75rem;
            text-transform: uppercase;
            font-size: 0.75rem;
            letter-spacing: 1px;
        }

        .mega-menu .list-unstyled li {
            margin-bottom: 0.25rem;
        }

        .mega-menu .list-unstyled a {
            color: var(--text-light);
            text-decoration: none;
            font-size: 0.875rem;
            transition: color var(--transition-speed) ease;
        }

        .mega-menu .list-unstyled a:hover {
            color: var(--secondary-color);
        }

        /* Footer Styles */
        .site-footer {
            background: linear-gradient(135deg, var(--primary-color), #34495e);
            color: white;
            margin-top: auto;
        }

        .footer-main {
            padding: 3rem 0 2rem;
        }

        .footer-widget {
            height: 100%;
        }

        .footer-title {
            color: white;
            font-size: 1.25rem;
            font-weight: 600;
            margin-bottom: 1.5rem;
            position: relative;
            padding-bottom: 0.5rem;
        }

        .footer-title::after {
            content: '';
            position: absolute;
            left: 0;
            bottom: 0;
            width: 50px;
            height: 2px;
            background: var(--secondary-color);
        }

        .footer-text {
            color: #bdc3c7;
            font-size: 0.9rem;
            line-height: 1.6;
            margin-bottom: 1rem;
        }

        .social-links {
            display: flex;
            gap: 0.75rem;
            margin-top: 1.5rem;
        }

        .social-link {
            display: flex;
            align-items: center;
            justify-content: center;
            width: 40px;
            height: 40px;
            background: rgba(255,255,255,0.1);
            color: white;
            border-radius: 50%;
            text-decoration: none;
            transition: all var(--transition-speed) ease;
            backdrop-filter: blur(10px);
        }

        .social-link:hover {
            background: var(--secondary-color);
            color: white;
            transform: translateY(-2px);
        }

        .footer-links {
            list-style: none;
            padding: 0;
            margin: 0;
        }

        .footer-links li {
            margin-bottom: 0.75rem;
        }

        .footer-links a {
            color: #bdc3c7;
            text-decoration: none;
            font-size: 0.9rem;
            transition: all var(--transition-speed) ease;
            position: relative;
            padding-left: 1rem;
        }

        .footer-links a::before {
            content: '▶';
            position: absolute;
            left: 0;
            color: var(--secondary-color);
            font-size: 0.7rem;
            transition: transform var(--transition-speed) ease;
        }

        .footer-links a:hover {
            color: white;
            padding-left: 1.25rem;
        }

        .footer-links a:hover::before {
            transform: translateX(2px);
        }

        .contact-info {
            list-style: none;
            padding: 0;
            margin: 0;
        }

        .contact-info li {
            display: flex;
            align-items: flex-start;
            margin-bottom: 1rem;
            color: #bdc3c7;
            font-size: 0.9rem;
        }

        .contact-info i {
            color: var(--secondary-color);
            width: 20px;
            margin-top: 2px;
        }

        .contact-info a {
            color: #bdc3c7;
            text-decoration: none;
            transition: color var(--transition-speed) ease;
        }

        .contact-info a:hover {
            color: white;
        }

        .gallery-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 0.5rem;
        }

        .gallery-item {
            position: relative;
            overflow: hidden;
            border-radius: var(--border-radius);
            aspect-ratio: 1;
            cursor: pointer;
        }

        .gallery-item img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform var(--transition-speed) ease;
        }

        .gallery-overlay {
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: rgba(52, 152, 219, 0.9);
            display: flex;
            align-items: center;
            justify-content: center;
            opacity: 0;
            transition: opacity var(--transition-speed) ease;
        }

        .gallery-overlay i {
            color: white;
            font-size: 1.25rem;
        }

        .gallery-item:hover img {
            transform: scale(1.1);
        }

        .gallery-item:hover .gallery-overlay {
            opacity: 1;
        }

        .footer-bottom {
            background: rgba(0,0,0,0.2);
            padding: 1.5rem 0;
            border-top: 1px solid rgba(255,255,255,0.1);
        }

        .copyright p {
            margin: 0;
            color: #bdc3c7;
            font-size: 0.9rem;
        }

        .footer-nav {
            display: flex;
            gap: 1.5rem;
            justify-content: flex-end;
        }

        .footer-nav-link {
            color: #bdc3c7;
            text-decoration: none;
            font-size: 0.9rem;
            transition: color var(--transition-speed) ease;
        }

        .footer-nav-link:hover {
            color: white;
        }

        .back-to-top {
            position: fixed;
            bottom: 20px;
            right: 20px;
            width: 50px;
            height: 50px;
            background: var(--secondary-color);
            color: white;
            border: none;
            border-radius: 50%;
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
            opacity: 0;
            visibility: hidden;
            transition: all var(--transition-speed) ease;
            z-index: 1000;
            box-shadow: 0 4px 15px rgba(52, 152, 219, 0.3);
        }

        .back-to-top.show {
            opacity: 1;
            visibility: visible;
        }

        .back-to-top:hover {
            background: var(--primary-color);
            transform: translateY(-2px);
            box-shadow: 0 6px 20px rgba(52, 152, 219, 0.4);
        }

        .main-content {
            min-height: 60vh;
        }

        /* Loading states */
        .loading {
            position: relative;
            pointer-events: none;
        }

        .loading::after {
            content: '';
            position: absolute;
            top: 50%;
            left: 50%;
            width: 20px;
            height: 20px;
            margin: -10px 0 0 -10px;
            border: 2px solid #f3f3f3;
            border-top: 2px solid var(--secondary-color);
            border-radius: 50%;
            animation: spin 1s linear infinite;
        }

        @keyframes spin {
            0% { transform: rotate(0deg); }
            100% { transform: rotate(360deg); }
        }

        /* Responsive Design */
        @media (max-width: 991.98px) {
            .top-header {
                text-align: center;
            }
            
            .top-header .d-flex {
                flex-direction: column;
                gap: 0.5rem;
            }

            .hero-title {
                font-size: 2.5rem;
            }

            .search-input {
                width: 100%;
            }

            .search-input:focus {
                width: 100%;
            }

            .footer-main {
                padding: 2rem 0 1.5rem;
            }

            .footer-nav {
                justify-content: center;
                margin-top: 1rem;
            }

            .gallery-grid {
                grid-template-columns: repeat(2, 1fr);
            }
        }

        @media (max-width: 767.98px) {
            .hero-title {
                font-size: 2rem;
            }

            .hero-subtitle {
                font-size: 1rem;
            }

            .footer-nav {
                flex-direction: column;
                gap: 0.75rem;
                text-align: center;
            }

            .back-to-top {
                bottom: 15px;
                right: 15px;
                width: 45px;
                height: 45px;
            }
        }

        @media (max-width: 575.98px) {
            .gallery-grid {
                grid-template-columns: repeat(2, 1fr);
                gap: 0.25rem;
            }

            .social-links {
                justify-content: center;
            }
        }

        /* Print styles */
        @media print {
            .main-header,
            .site-footer,
            .back-to-top {
                display: none;
            }
        }
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
            line-height: 1.6;
        }

        .slider-container {
            position: relative;
            width: 100%;
            height: 600px;
            overflow: hidden;
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
        }

        .slide {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            opacity: 0;
            transition: opacity 1s ease-in-out;
            background-size: cover;
            background-position: center;
            background-repeat: no-repeat;
        }

        .slide.active {
            opacity: 1;
        }

        .slide::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: rgba(0, 0, 0, 0.4);
            z-index: 1;
        }

        .slide-content {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            text-align: center;
            color: white;
            z-index: 2;
            max-width: 900px;
            padding: 0 20px;
            width: 100%;
        }

        .slide-content h1 {
            font-size: clamp(3rem, 6vw, 5rem);
            font-weight: 800;
            margin-bottom: 1.5rem;
            opacity: 0;
            transform: scale(0.8) translateY(30px);
            animation: popUp 1s ease-out forwards;
            text-shadow: 0 6px 30px rgba(0, 0, 0, 0.7);
            letter-spacing: -1px;
            line-height: 1.1;
        }

        .slide-content .subtitle {
            font-size: clamp(1.1rem, 2.5vw, 1.6rem);
            font-weight: 400;
            margin-bottom: 2.5rem;
            opacity: 0;
            transform: scale(0.8) translateY(20px);
            animation: popUp 1s ease-out 0.3s forwards;
            color: rgba(255, 255, 255, 0.95);
            letter-spacing: 2px;
            text-transform: uppercase;
            text-shadow: 0 4px 20px rgba(0, 0, 0, 0.6);
        }

        .slide-content .description {
            font-size: clamp(1rem, 1.8vw, 1.3rem);
            margin-bottom: 3rem;
            opacity: 0;
            transform: scale(0.8) translateY(20px);
            animation: popUp 1s ease-out 0.6s forwards;
            color: rgba(255, 255, 255, 0.9);
            line-height: 1.6;
            text-shadow: 0 2px 15px rgba(0, 0, 0, 0.5);
            max-width: 600px;
            margin-left: auto;
            margin-right: auto;
        }

        .slide-btn {
            display: inline-block;
            padding: 18px 40px;
            background: linear-gradient(135deg, #667eea, #764ba2);
            color: white;
            text-decoration: none;
            border-radius: 50px;
            font-weight: 600;
            font-size: 1.1rem;
            letter-spacing: 1px;
            text-transform: uppercase;
            opacity: 0;
            transform: scale(0.8) translateY(20px);
            animation: popUp 1s ease-out 0.9s forwards;
            transition: all 0.4s ease;
            box-shadow: 0 10px 30px rgba(102, 126, 234, 0.4);
            border: 2px solid transparent;
        }

        .slide-btn:hover {
            transform: translateY(-3px) scale(1.05);
            box-shadow: 0 12px 35px rgba(102, 126, 234, 0.4);
            background: linear-gradient(135deg, #764ba2, #667eea);
        }

        .slide-btn.secondary {
            background: transparent;
            border: 2px solid white;
            color: white;
        }

        .slide-btn.secondary:hover {
            background: white;
            color: #333;
            border-color: white;
        }

        @keyframes popUp {
            to {
                opacity: 1;
                transform: scale(1) translateY(0);
            }
        }

        .slide-nav {
            position: absolute;
            bottom: 30px;
            left: 50%;
            transform: translateX(-50%);
            display: flex;
            gap: 15px;
            z-index: 3;
        }

        .nav-dot {
            width: 12px;
            height: 12px;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.5);
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .nav-dot.active {
            background: white;
            transform: scale(1.2);
        }

        .slide-arrows {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            z-index: 3;
        }

        .arrow {
            background: rgba(255, 255, 255, 0.2);
            border: 2px solid rgba(255, 255, 255, 0.3);
            color: white;
            width: 50px;
            height: 50px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            transition: all 0.3s ease;
            backdrop-filter: blur(10px);
            font-size: 20px;
            user-select: none;
        }

        .arrow:hover {
            background: rgba(255, 255, 255, 0.3);
            border-color: rgba(255, 255, 255, 0.5);
            transform: scale(1.1);
        }

        .arrow-left {
            left: 30px;
        }

        .arrow-right {
            right: 30px;
        }

        .progress-bar {
            position: absolute;
            bottom: 0;
            left: 0;
            height: 4px;
            background: linear-gradient(90deg, #667eea, #764ba2);
            z-index: 3;
            transform-origin: left;
            animation: progress 5s linear infinite;
        }

        @keyframes progress {
            from { transform: scaleX(0); }
            to { transform: scaleX(1); }
        }

        /* Responsive Design */
          @media (max-width: 768px) {
            .slider-container {
                height: 500px; /* Smaller height on mobile */
            }
            
            .slide-content {
                padding: 0 30px;
            }
            
            .slide-arrows {
                display: none;
            }
            
            .slide-nav {
                bottom: 20px;
            }
        }

        @media (max-width: 480px) {
            .slider-container {
                height: 400px; /* Even smaller on very small screens */
            }
        }

        /* Modern glassmorphism effect */
        .glass-effect {
            backdrop-filter: blur(20px);
            background: rgba(255, 255, 255, 0.1);
            border: 1px solid rgba(255, 255, 255, 0.2);
            border-radius: 20px;
            padding: 40px;
            margin: 20px 0;
        }
        * {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    min-height: 100vh;
    /* REMOVED: display: flex, align-items: center, justify-content: center */
}

/* SLIDER BOTTOM AREA - FIXED VERSION */
.slider-buttom-area * {
    box-sizing: border-box;
}

.slider-buttom-area {
    width: 100%;
    padding: 2rem 0;
    background: linear-gradient(135deg, rgba(0,0,0,0.8) 0%, rgba(30,30,30,0.9) 100%);
    overflow: hidden;
}

.slider-buttom-area .container-fluid {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

.slider-buttom-area .row {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr; /* Fixed: 3 equal columns */
    gap: 1.5rem;
    width: 100%;
}

/* Style the individual column classes */
.col-emergency,
.col-legal, 
.col-hours {
    min-width: 0; /* Prevents grid overflow */
}

.single-slider-buttom-area {
    background: linear-gradient(135deg, rgba(40,40,40,0.95) 0%, rgba(20,20,20,0.98) 100%);
    border-radius: 15px;
    padding: 2.5rem 2rem;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
    border: 1px solid rgba(255,255,255,0.1);
    height: auto;
    min-height: 280px;
    width: 100%; /* Ensure full width within grid cell */
}

.single-slider-buttom-area:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.3);
}

.content-area {
    position: relative;
    z-index: 2;
    height: 100%;
}

.single-slider-buttom-area h3 {
    color: #ffffff;
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    font-family: "Segoe UI", sans-serif;
}

.single-slider-buttom-area p {
    color: rgba(255,255,255,0.8);
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.call-now {
    color: #ffffff !important;
    font-size: 1.1rem;
    font-weight: 600;
    margin-top: 1rem;
    margin-bottom: 0.5rem;
}

.phone-number {
    margin-bottom: 0;
}

.phone-number a {
    color: #ffffff;
    text-decoration: none;
    font-size: 1rem;
    font-weight: 500;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
}

.phone-number a:hover {
    color: #cf9455;
    text-shadow: 0 0 10px rgba(207, 148, 85, 0.3);
}

.call-us-buttom {
    display: inline-block;
    background: #ffffff;
    color: #cf9455 !important;
    text-decoration: none;
    padding: 12px 25px;
    border-radius: 0;
    font-weight: 700;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    margin-top: 1rem;
    border: none;
}

.call-us-buttom:hover {
    background: #cf9455;
    color: #ffffff !important;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(207, 148, 85, 0.3);
}

.working-hours-list {
    list-style: none;
    margin: 1rem 0 0 0;
    padding: 0;
}

.working-hours-list li {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 8px 0;
    color: #dddddd;
    font-size: 0.9rem;
    position: relative;
    border-bottom: 1px solid #484848;
}

.working-hours-list li:last-child {
    border-bottom: none;
}

.working-hours-list li span {
    color: #ffffff;
    font-weight: 600;
    letter-spacing: 0.5px;
    white-space: nowrap;
}

/* IMPROVED RESPONSIVE DESIGN */
@media (max-width: 968px) {
    .slider-buttom-area .row {
        grid-template-columns: 1fr; /* Single column on medium screens */
        gap: 1rem;
    }
    
    .single-slider-buttom-area {
        padding: 2rem 1.5rem;
        min-height: 250px;
    }
}

@media (max-width: 768px) {
    .slider-buttom-area .row {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
}

@media (max-width: 576px) {
    .slider-buttom-area {
        padding: 1.5rem 0;
    }
    
    .slider-buttom-area .container-fluid {
        padding: 0 10px;
    }
    
    .single-slider-buttom-area {
        padding: 1.5rem 1rem;
        min-height: 220px;
    }
    
    .single-slider-buttom-area h3 {
        font-size: 1.3rem;
    }
}
          /* <!-- About Section Start --> */
    * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            line-height: 1.6;
            color: #333;
        }

        .about-section {
            padding: 80px 0;
            background-color: #f8f9fa;
        }

        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }

        .about-content {
            display: grid;
            grid-template-columns: 300px 1fr; /* Fixed width for image column */
            gap: 50px;
            align-items: start;
        }

        .about-image {
            position: relative;
            overflow: hidden;
            border-radius: 12px;
            box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
            transition: transform 0.3s ease;
            width: 300px; /* Fixed width */
            height: 350px; /* Fixed height */
            flex-shrink: 0; /* Prevent shrinking */
        }

        .about-image:hover {
            transform: translateY(-5px);
        }

        .about-image img {
            width: 100%;
            height: 100%;
            object-fit: cover; /* Ensures image covers the container properly */
            display: block;
            transition: transform 0.3s ease;
        }

        .about-image:hover img {
            transform: scale(1.05);
        }

        .about-text {
            padding: 0; /* Removed padding for better alignment */
            display: flex;
            flex-direction: column;
            justify-content: flex-start;
        }

        .about-text h1 {
            font-size: 2.5rem;
            margin-bottom: 25px; /* Slightly increased margin */
            color: #2c3e50;
            font-weight: 700;
            line-height: 1.2; /* Added line-height for better spacing */
        }

        .about-text .highlight {
            color: #e74c3c;
            font-weight: 800;
        }

        .about-text p {
            font-size: 1.1rem;
            margin-bottom: 35px; /* Increased margin for better spacing */
            color: #666;
            line-height: 1.8;
            text-align: justify; /* Added justify alignment for cleaner look */
        }

        .features-list {
            list-style: none;
            margin-bottom: 40px;
        }

        .features-list li {
            padding: 15px 0; /* Increased padding for better spacing */
            padding-left: 35px; /* Increased left padding */
            position: relative;
            font-size: 1.1rem;
            color: #555;
            transition: color 0.3s ease;
            line-height: 1.4; /* Added line-height */
        }

        .features-list li:before {
            content: "✓";
            position: absolute;
            left: 0;
            top: 15px; /* Adjusted to match new padding */
            color: #27ae60;
            font-weight: bold;
            font-size: 1.3rem; /* Slightly larger checkmark */
        }

        .features-list li:hover {
            color: #2c3e50;
        }

        .cta-button {
            display: inline-block;
            background: linear-gradient(135deg, #e74c3c, #c0392b);
            color: white;
            padding: 15px 35px;
            text-decoration: none;
            border-radius: 50px;
            font-weight: 600;
            font-size: 1.1rem;
            transition: all 0.3s ease;
            box-shadow: 0 5px 15px rgba(231, 76, 60, 0.3);
            align-self: flex-start; /* Align button to the left */
        }

        .cta-button:hover {
            transform: translateY(-3px);
            box-shadow: 0 8px 25px rgba(231, 76, 60, 0.4);
            background: linear-gradient(135deg, #c0392b, #a93226);
        }

        

        /* Responsive Design */
        @media (max-width: 768px) {
            .about-content {
                grid-template-columns: 1fr;
                gap: 30px;
                text-align: center;
            }

            .about-section {
                padding: 60px 0;
            }

            .about-image {
                width: 280px; /* Smaller fixed width for mobile */
                height: 320px; /* Smaller fixed height for mobile */
                margin: 0 auto;
            }}

            .about-section {
                padding: 60px 0;
            }

            .about-image {
                max-width: 300px;
                margin: 0 auto;
            }

            .about-text {
                text-align: center;
            }

            .about-text h1 {
                font-size: 2rem;
            }

            .about-text p {
                font-size: 1rem;
                text-align: center; /* Center align on mobile */
            }

            .features-list {
                text-align: left; /* Keep features left-aligned for readability */
                display: inline-block;
            }

            .features-list li {
                font-size: 1rem;
            }

            .cta-button {
                align-self: center; /* Center button on mobile */
            }
        

        @media (max-width: 480px) {
            .container {
                padding: 0 15px;
            }

            .about-image {
                width: 250px; /* Even smaller for very small screens */
                height: 300px;
                margin: 0 auto;
            }

            .about-text h1 {
                font-size: 1.8rem;
            }

            .cta-button {
                padding: 12px 25px;
                font-size: 1rem;
            }

            .about-content {
                gap: 25px;
            }
        }
        .practice-areas-section {
            padding: 100px 0;
            background: #f8f9fa;
            position: relative;
            overflow: hidden;
        }

        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
            position: relative;
        }

        .section-header {
            text-align: center;
            margin-bottom: 60px;
        }

        .section-header h2 {
            font-size: 2.5rem;
            font-weight: 700;
            margin-bottom: 20px;
            color: #2c3e50;
            text-transform: uppercase;
            letter-spacing: 1px;
        }

        .section-header p {
            font-size: 1.1rem;
            color: #666;
            max-width: 600px;
            margin: 0 auto;
            line-height: 1.7;
        }

        .practice-scroll-container {
            position: relative;
            overflow: hidden;
            margin: 0 60px;
        }

        .practice-scroll-wrapper {
            display: flex;
            gap: 30px;
            overflow-x: auto;
            scroll-behavior: smooth;
            padding: 20px 0 40px 0;
            scrollbar-width: none;
            -ms-overflow-style: none;
        }

        .practice-scroll-wrapper::-webkit-scrollbar {
            display: none;
        }

        .practice-card {
            flex: 0 0 320px;
            background: white;
            border-radius: 15px;
            padding: 40px 30px;
            text-align: center;
            box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
            transition: all 0.3s ease;
            border: 1px solid #e8ecef;
            position: relative;
        }

        .practice-card:hover {
            transform: translateY(-8px);
            box-shadow: 0 15px 35px rgba(0, 0, 0, 0.12);
        }

        .practice-icon {
            width: 70px;
            height: 70px;
            margin: 0 auto 25px;
            background: #d4a574;
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.8rem;
            color: white;
            transition: all 0.3s ease;
        }

        .practice-card:hover .practice-icon {
            background: #b8935f;
            transform: scale(1.05);
        }

        .practice-card h3 {
            font-size: 1.4rem;
            margin-bottom: 20px;
            color: #2c3e50;
            font-weight: 600;
        }

        .practice-card h3 a {
            text-decoration: none;
            color: inherit;
            transition: color 0.3s ease;
        }

        .practice-card:hover h3 a {
            color: #d4a574;
        }

        .practice-card p {
            color: #666;
            margin-bottom: 25px;
            line-height: 1.6;
            font-size: 0.95rem;
        }

        .read-more-btn {
            display: inline-block;
            background: transparent;
            color: #d4a574;
            padding: 10px 20px;
            text-decoration: none;
            border: 2px solid #d4a574;
            border-radius: 25px;
            font-weight: 500;
            transition: all 0.3s ease;
            font-size: 0.9rem;
            text-transform: uppercase;
            letter-spacing: 0.5px;
        }

        .read-more-btn:hover {
            background: #d4a574;
            color: white;
            transform: translateY(-2px);
        }

        .practice-scroll-btn {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            width: 50px;
            height: 50px;
            background: white;
            border: none;
            border-radius: 50%;
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.2rem;
            color: #d4a574;
            transition: all 0.3s ease;
            z-index: 10;
        }

        .practice-scroll-btn:hover {
            background: #d4a574;
            color: white;
            transform: translateY(-50%) scale(1.1);
        }

        .practice-scroll-btn.prev {
            left: 0;
        }

        .practice-scroll-btn.next {
            right: 0;
        }

        /* Responsive Design */
        @media (max-width: 768px) {
            .practice-areas-section {
                padding: 80px 0;
            }

            .section-header h2 {
                font-size: 2rem;
            }

            .practice-scroll-container {
                margin: 0 20px;
            }

            .practice-card {
                flex: 0 0 280px;
                padding: 30px 20px;
            }

            .practice-scroll-btn {
                width: 40px;
                height: 40px;
                font-size: 1rem;
            }
        }

        @media (max-width: 480px) {
            .container {
                padding: 0 15px;
            }

            .practice-scroll-container {
                margin: 0 10px;
            }

            .practice-card {
                flex: 0 0 250px;
                padding: 25px 15px;
            }

            .section-header h2 {
                font-size: 1.7rem;
            }
        }
 .promise-banner {
            padding: 60px 0;
            background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);
            position: relative;
            overflow: hidden;
            text-align: center;
        }

        .promise-banner::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="dots" width="20" height="20" patternUnits="userSpaceOnUse"><circle cx="10" cy="10" r="1.5" fill="rgba(255,255,255,0.1)"/></pattern></defs><rect width="100" height="100" fill="url(%23dots)"/></svg>');
            opacity: 0.4;
        }

        .containerr {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 40px;
            position: relative;
            z-index: 2;
        }

        .promise-content h2 {
            font-size: 4rem;
            font-weight: 800;
            color: white;
            line-height: 1.2;
            text-transform: uppercase;
            letter-spacing: 2px;
            margin-bottom: 25px;
            position: relative;
        }

        .promise-content .highlight {
            color: #d4a574;
            position: relative;
            display: inline-block;
        }

        .promise-content .highlight::after {
            content: '';
            position: absolute;
            bottom: -5px;
            left: 0;
            right: 0;
            height: 4px;
            background: linear-gradient(90deg, #d4a574, #f39c12);
            border-radius: 2px;
        }

        .promise-subtitle {
            font-size: 1.3rem;
            color: rgba(255, 255, 255, 0.9);
            margin-bottom: 35px;
            max-width: 600px;
            margin-left: auto;
            margin-right: auto;
            font-weight: 300;
        }

        .promise-features {
            display: flex;
            justify-content: center;
            gap: 60px;
            margin-top: 40px;
            flex-wrap: wrap;
        }

        .feature-item {
            display: flex;
            flex-direction: column;
            align-items: center;
            color: white;
        }

        .feature-icon {
            width: 60px;
            height: 60px;
            background: rgba(212, 165, 116, 0.2);
            border: 2px solid #d4a574;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.5rem;
            margin-bottom: 20px;
            transition: all 0.3s ease;
        }

        .feature-item:hover .feature-icon {
            background: #d4a574;
            transform: scale(1.1);
        }

        .feature-text {
            font-size: 0.95rem;
            font-weight: 500;
            text-transform: uppercase;
            letter-spacing: 1px;
        }

        .cta-sectionn {
            margin-top: 40px;
        }

        .cta-buttonn {
            display: inline-block;
            background: linear-gradient(135deg, #d4a574, #f39c12);
            color: white;
            padding: 20px 45px;
            text-decoration: none;
            border-radius: 50px;
            font-weight: 600;
            font-size: 1.1rem;
            text-transform: uppercase;
            letter-spacing: 1px;
            transition: all 0.3s ease;
            box-shadow: 0 8px 25px rgba(212, 165, 116, 0.3);
            margin: 0 15px;
        }

        .cta-button:hover {
            transform: translateY(-3px);
            box-shadow: 0 12px 35px rgba(212, 165, 116, 0.4);
            background: linear-gradient(135deg, #f39c12, #d4a574);
        }

        .cta-button.secondary {
            background: transparent;
            border: 2px solid white;
            color: white;
            box-shadow: none;
        }

        .cta-button.secondary:hover {
            background: white;
            color: #2c3e50;
            box-shadow: 0 8px 25px rgba(255, 255, 255, 0.2);
        }

        /* Animation */
        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .promise-content h2 {
            animation: fadeInUp 0.8s ease-out;
        }

        .promise-subtitle {
            animation: fadeInUp 0.8s ease-out 0.2s both;
        }

        .promise-features {
            animation: fadeInUp 0.8s ease-out 0.4s both;
        }

        .cta-sectionn {
            animation: fadeInUp 0.8s ease-out 0.6s both;
        }

        /* Responsive Design */
        @media (max-width: 768px) {
            .promise-banner {
                padding: 80px 0;
            }

            .promise-content h2 {
                font-size: 2.5rem;
                line-height: 1.3;
                margin-bottom: 30px;
            }

            .promise-subtitle {
                font-size: 1.1rem;
                margin-bottom: 40px;
            }

            .promise-features {
                gap: 50px;
                margin-top: 50px;
            }

            .feature-icon {
                width: 50px;
                height: 50px;
                font-size: 1.3rem;
                margin-bottom: 15px;
            }

            .cta-buttonn {
                padding: 18px 35px;
                font-size: 1rem;
                margin: 8px;
                display: block;
                width: 80%;
                margin-left: auto;
                margin-right: auto;
                margin-bottom: 20px;
            }

            .container {
                padding: 0 30px;
            }
        }

        @media (max-width: 480px) {
            .promise-content h2 {
                font-size: 2rem;
            }

            .promise-features {
                flex-direction: column;
                gap: 40px;
            }

            .container {
                padding: 0 20px;
            }
        }
        /* <!-- Promise Banner Section End --> */
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }

        .our-attorney-area {
            padding: 80px 0;
            background: #ffffff;
            position: relative;
        }

        .section-title-area {
            text-align: center;
            margin-bottom: 60px;
        }

        .section-title-area h2 {
            font-size: 2.5rem;
            font-weight: 700;
            margin-bottom: 20px;
            color: #2c3e50;
            text-transform: uppercase;
            letter-spacing: 2px;
            position: relative;
        }

        .section-title-area h2::after {
            content: '';
            position: absolute;
            bottom: -10px;
            left: 50%;
            transform: translateX(-50%);
            width: 80px;
            height: 3px;
            background: linear-gradient(90deg, #e67e22, #f39c12);
            border-radius: 2px;
        }

        .section-title-area p {
            font-size: 1rem;
            max-width: 600px;
            margin: 0 auto;
            color: #7f8c8d;
            line-height: 1.8;
        }

        .attorneys-scroll-container {
            position: relative;
            margin: 0 auto;
            max-width: 100%;
            padding: 0 70px; /* Increased padding for arrow space */
            overflow: visible; /* Ensure arrows are visible */
        }

        /* FIXED: Attorneys wrapper */
        .attorneys-wrapper {
            overflow-x: auto;
            scroll-behavior: smooth;
            scrollbar-width: none;
            -ms-overflow-style: none;
            border-radius: 10px;
        }

        .attorneys-wrapper::-webkit-scrollbar {
            display: none;
        }
          /* FIXED: Attorneys grid */
        .attorneys-grid {
            display: flex;
            gap: 30px;
            min-width: fit-content;
            padding: 20px 0;
        }

        .attorney-card {
            flex-shrink: 0;
            width: 300px;
            background: white;
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
            transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
            position: relative;
        }

        .attorney-card:hover {
            transform: translateY(-8px);
            box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
        }

        .attorney-picture {
            position: relative;
            overflow: hidden;
            height: 350px;
            background: #f8f9fa;
        }

        .attorney-picture img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: all 0.6s ease;
        }

        .attorney-card:hover .attorney-picture img {
            transform: scale(1.05);
            filter: brightness(0.9);
        }

        .overlay {
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: rgba(0, 0, 0, 0.85);
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            opacity: 0;
            visibility: hidden;
            transition: all 0.4s ease;
            padding: 30px;
        }

        .attorney-card:hover .overlay {
            opacity: 1;
            visibility: visible;
        }

        .bio-preview {
            color: white;
            text-align: center;
            transform: translateY(20px);
            transition: transform 0.4s ease 0.1s;
        }

        .attorney-card:hover .bio-preview {
            transform: translateY(0);
        }

        .bio-preview h3 {
            font-size: 1.4rem;
            margin-bottom: 10px;
            color: #f39c12;
        }

        .bio-preview p {
            font-size: 0.9rem;
            line-height: 1.5;
            margin-bottom: 25px;
            opacity: 0.9;
        }

        .view-bio-btn {
            background: transparent;
            color: white;
            border: 2px solid #f39c12;
            padding: 12px 30px;
            border-radius: 5px;
            text-decoration: none;
            font-weight: 600;
            font-size: 0.9rem;
            text-transform: uppercase;
            letter-spacing: 1px;
            transition: all 0.3s ease;
            display: inline-block;
        }

        .view-bio-btn:hover {
            background: #f39c12;
            color: white;
            transform: translateY(-2px);
        }

        .social-media {
            margin-top: 20px;
        }

        .social-media ul {
            list-style: none;
            display: flex;
            justify-content: center;
            gap: 10px;
        }

        .social-media a {
            display: flex;
            align-items: center;
            justify-content: center;
            width: 40px;
            height: 40px;
            background: transparent;
            color: #f39c12;
            border: 1px solid #f39c12;
            border-radius: 5px;
            text-decoration: none;
            transition: all 0.3s ease;
            font-size: 0.9rem;
        }

        .social-media a:hover {
            background: #f39c12;
            color: white;
            transform: translateY(-2px);
        }

        .attorney-content {
            padding: 25px;
            text-align: center;
            background: white;
        }

        .attorney-content h3 {
            font-size: 1.3rem;
            margin-bottom: 8px;
            color: #2c3e50;
            font-weight: 600;
        }

        .attorney-content h3 a {
            text-decoration: none;
            color: inherit;
            transition: color 0.3s ease;
        }

        .attorney-content h3 a:hover {
            color: #f39c12;
        }

        .attorney-content .position {
            color: #7f8c8d;
            font-size: 0.95rem;
            font-weight: 400;
        }
 /* FIXED: Scroll Navigation */
        .scroll-nav {
            position: absolute;
            top: 50%;
            left: 10px; /* Position left arrow inside container */
            right: 10px; /* Position right arrow inside container */
            transform: translateY(-50%);
            display: flex;
            justify-content: space-between;
            pointer-events: none;
            z-index: 15; /* Higher z-index */
            width: calc(100% - 20px); /* Ensure full width minus positioning */
        }

        /* FIXED: Scroll buttons */
        .scroll-btn {
            background: #f39c12;
            color: white;
            border: none;
            width: 50px; /* Slightly larger */
            height: 50px; /* Slightly larger */
            border-radius: 50%;
            cursor: pointer;
            transition: all 0.3s ease;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.2rem;
            pointer-events: auto;
            box-shadow: 0 4px 12px rgba(0,0,0,0.3); /* Stronger shadow */
            position: relative; /* Ensure positioning context */
        }

/* Scroll Dots */
.scroll-dots {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 30px;
    padding: 0 60px; /* ADDED: Match container padding */
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #bdc3c7;
    cursor: pointer;
    transition: all 0.3s ease;
}

.dot.active {
    background: #f39c12;
    transform: scale(1.2);
}

.dot:hover {
    background: #e67e22;
}


        /* Responsive Design */
        @media (max-width: 768px) {
            .attorney-card {
                width: 280px;
            }
            
            .section-title-area h2 {
                font-size: 2rem;
            }
            
            .our-attorney-area {
                padding: 60px 0;
            }

            .attorneys-grid {
                gap: 20px;
            }
            .attorneys-scroll-container {
                padding: 0 50px;
            }
            
            .scroll-dots {
                padding: 0 70px; /* Match increased container padding */
            }
            
            .attorney-card {
                flex: 0 0 280px;
            }
        }

        @media (max-width: 480px) {
            .attorney-card {
                width: 260px;
            }
            
            .section-title-area h2 {
                font-size: 1.8rem;
            }

            .container {
                padding: 0 15px;
            }
            .attorneys-scroll-container {
                padding: 0 40px;
            }
            
            .scroll-dots {
                padding: 0 40px;
            }
            
            .attorney-card {
                flex: 0 0 250px;
            }
        }
 /* Latest News Section */
        .latest-news-section {
            padding: 100px 0;
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            position: relative;
            overflow: hidden;
        }

        .latest-news-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: rgba(0, 0, 0, 0.1);
            backdrop-filter: blur(10px);
        }

        .section-header {
            text-align: center;
            margin-bottom: 80px;
            position: relative;
            z-index: 2;
        }

        .section-badge {
            display: inline-block;
            background: rgba(255, 255, 255, 0.2);
            color: white;
            padding: 8px 20px;
            border-radius: 50px;
            font-size: 14px;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 1px;
            margin-bottom: 20px;
            backdrop-filter: blur(10px);
            border: 1px solid rgba(255, 255, 255, 0.3);
        }

        .section-title {
            font-size: clamp(2.5rem, 5vw, 4rem);
            font-weight: 800;
            color: white;
            margin-bottom: 20px;
            line-height: 1.2;
        }

        .section-description {
            font-size: 1.2rem;
            color: rgba(255, 255, 255, 0.9);
            max-width: 600px;
            margin: 0 auto;
            line-height: 1.6;
        }

        .news-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
            gap: 40px;
            position: relative;
            z-index: 2;
        }

        .news-card {
            background: white;
            border-radius: 20px;
            overflow: hidden;
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            position: relative;
        }

        .news-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 30px 60px rgba(0, 0, 0, 0.15);
        }

        .news-image {
            position: relative;
            height: 250px;
            overflow: hidden;
        }

        .news-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.4s ease;
        }

        .news-card:hover .news-image img {
            transform: scale(1.1);
        }

        .news-overlay {
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: linear-gradient(45deg, rgba(102, 126, 234, 0.8), rgba(118, 75, 162, 0.8));
            opacity: 0;
            transition: opacity 0.3s ease;
        }

        .news-card:hover .news-overlay {
            opacity: 1;
        }

        .news-meta {
            position: absolute;
            top: 20px;
            left: 20px;
            right: 20px;
            display: flex;
            justify-content: space-between;
            align-items: center;
            z-index: 3;
        }

        .news-date {
            background: rgba(255, 255, 255, 0.95);
            padding: 8px 15px;
            border-radius: 25px;
            font-size: 12px;
            font-weight: 600;
            color: #667eea;
            backdrop-filter: blur(10px);
        }

        .news-stats {
            display: flex;
            gap: 15px;
        }

        .news-stat {
            background: rgba(255, 255, 255, 0.95);
            padding: 8px 12px;
            border-radius: 20px;
            font-size: 12px;
            color: #666;
            backdrop-filter: blur(10px);
            display: flex;
            align-items: center;
            gap: 5px;
        }

        .news-content {
            padding: 30px;
        }

        .news-title {
            font-size: 1.3rem;
            font-weight: 700;
            color: #1a1a1a;
            margin-bottom: 15px;
            line-height: 1.4;
            transition: color 0.3s ease;
        }

        .news-card:hover .news-title {
            color: #667eea;
        }

        .news-excerpt {
            color: #666;
            font-size: 1rem;
            line-height: 1.6;
            margin-bottom: 20px;
        }

        .news-author {
            display: flex;
            align-items: center;
            gap: 10px;
            color: #888;
            font-size: 14px;
        }

        .author-avatar {
            width: 32px;
            height: 32px;
            border-radius: 50%;
            background: linear-gradient(45deg, #667eea, #764ba2);
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-weight: 600;
            font-size: 12px;
        }

        /* Partners Section */
        .partners-section {
            padding: 80px 0;
            background: white;
        }

        .partners-title {
            text-align: center;
            margin-bottom: 50px;
            color: #888;
            font-size: 14px;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 2px;
        }

        .partners-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
            gap: 40px;
            align-items: center;
        }

        .partner-logo {
            display: flex;
            align-items: center;
            justify-content: center;
            padding: 20px;
            background: #f8f9fa;
            border-radius: 15px;
            transition: all 0.3s ease;
            height: 100px;
        }

        .partner-logo:hover {
            background: #667eea;
            transform: translateY(-5px);
            box-shadow: 0 15px 30px rgba(102, 126, 234, 0.2);
        }

        .partner-logo:hover .partner-name {
            color: white;
        }

        .partner-name {
            font-size: 16px;
            font-weight: 700;
            color: #333;
            transition: color 0.3s ease;
        }

        /* CTA Section */
        .cta-section {
            padding: 80px 0;
            background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
            position: relative;
        }

        .cta-container {
            display: grid;
            grid-template-columns: 2fr 1fr;
            gap: 40px;
            align-items: center;
        }

        .cta-content h3 {
            font-size: clamp(1.8rem, 4vw, 2.5rem);
            font-weight: 700;
            color: white;
            line-height: 1.3;
            margin-bottom: 20px;
        }

        .cta-subtitle {
            color: rgba(255, 255, 255, 0.8);
            font-size: 1.1rem;
            line-height: 1.6;
        }

        .cta-button-container {
            display: flex;
            justify-content: flex-end;
        }

        .cta-button {
            display: inline-flex;
            align-items: center;
            gap: 12px;
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            color: white;
            padding: 18px 35px;
            border-radius: 50px;
            text-decoration: none;
            font-weight: 600;
            font-size: 16px;
            transition: all 0.3s ease;
            box-shadow: 0 10px 30px rgba(102, 126, 234, 0.3);
        }

        .cta-button:hover {
            transform: translateY(-3px);
            box-shadow: 0 15px 40px rgba(102, 126, 234, 0.4);
            background: linear-gradient(135deg, #5a67d8 0%, #6b46c1 100%);
        }

        .cta-button i {
            transition: transform 0.3s ease;
        }

        .cta-button:hover i {
            transform: translateX(5px);
        }

        /* Responsive Design */
        @media (max-width: 768px) {
            .news-grid {
                grid-template-columns: 1fr;
                gap: 30px;
            }

            .partners-grid {
                grid-template-columns: repeat(2, 1fr);
                gap: 20px;
            }

            .cta-container {
                grid-template-columns: 1fr;
                text-align: center;
                gap: 30px;
            }

            .cta-button-container {
                justify-content: center;
            }

            .section-header {
                margin-bottom: 60px;
            }

            .latest-news-section,
            .partners-section,
            .cta-section {
                padding: 60px 0;
            }
        }

        /* Animations */
        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .news-card {
            animation: fadeInUp 0.6s ease forwards;
        }

        .news-card:nth-child(2) {
            animation-delay: 0.1s;
        }

        .news-card:nth-child(3) {
            animation-delay: 0.2s;
        }
    
        
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            line-height: 1.6;
            color: #333;
            background-color: #f8fafc;
        }

        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }

        /* Hero Banner */
        .hero-banner {
            background: linear-gradient(135deg, #1a365d 0%, #2c5282 50%, #3182ce 100%);
            color: white;
            padding: 80px 0;
            text-align: center;
            position: relative;
            overflow: hidden;
        }

        .hero-banner::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="scales" width="20" height="20" patternUnits="userSpaceOnUse"><path d="M10,0 Q15,5 10,10 Q5,5 10,0 Z" fill="white" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23scales)"/></svg>');
        }

        .hero-content {
            position: relative;
            z-index: 1;
        }

        .hero-banner h1 {
            font-size: 3.5rem;
            font-weight: 700;
            margin-bottom: 15px;
            text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
        }

        .hero-subtitle {
            font-size: 1.3rem;
            font-weight: 300;
            margin-bottom: 30px;
            opacity: 0.9;
        }

        .breadcrumb {
            display: flex;
            justify-content: center;
            align-items: center;
            gap: 10px;
            margin-top: 20px;
        }

        .breadcrumb a {
            color: #cbd5e0;
            text-decoration: none;
            transition: color 0.3s ease;
        }

        .breadcrumb a:hover {
            color: white;
        }

        .breadcrumb span {
            color: #cbd5e0;
        }

        /* About Section */
        .about-section {
            padding: 80px 0;
            background: white;
        }

        .about-content {
            display: grid;
            grid-template-columns: 2fr 1fr;
            gap: 60px;
            align-items: start;
        }

        .content-text h2 {
            font-size: 2.8rem;
            color: #1a365d;
            margin-bottom: 25px;
            position: relative;
        }

        .content-text h2 span {
            color: #3182ce;
            position: relative;
        }

        .content-text h2 span::after {
            content: '';
            position: absolute;
            bottom: -5px;
            left: 0;
            width: 100%;
            height: 3px;
            background: linear-gradient(90deg, #3182ce, #4299e1);
            border-radius: 2px;
        }

        .firm-name {
            font-size: 1.1rem;
            font-weight: 700;
            color: #2c5282;
            text-transform: uppercase;
            letter-spacing: 1px;
            margin-bottom: 20px;
        }

        .lead-text {
            font-size: 1.25rem;
            font-weight: 600;
            color: #2c5282;
            margin-bottom: 30px;
            line-height: 1.7;
        }

        .body-text {
            font-size: 1.1rem;
            color: #4a5568;
            margin-bottom: 25px;
            line-height: 1.8;
        }

        .highlight-box {
            background: linear-gradient(135deg, #ebf8ff, #bee3f8);
            border-left: 4px solid #3182ce;
            padding: 25px;
            margin: 30px 0;
            border-radius: 8px;
        }

        .highlight-box h3 {
            color: #1a365d;
            font-size: 1.3rem;
            margin-bottom: 15px;
            font-weight: 600;
        }

        .offices-list {
            display: flex;
            flex-wrap: wrap;
            gap: 15px;
            margin: 20px 0;
        }

        .office-tag {
            background: linear-gradient(135deg, #3182ce, #4299e1);
            color: white;
            padding: 8px 16px;
            border-radius: 20px;
            font-size: 0.9rem;
            font-weight: 500;
        }

        .cta-button {
            display: inline-block;
            background: linear-gradient(135deg, #2c5282, #3182ce);
            color: white;
            padding: 16px 40px;
            text-decoration: none;
            border-radius: 50px;
            font-weight: 600;
            font-size: 1.1rem;
            transition: all 0.3s ease;
            box-shadow: 0 4px 15px rgba(44, 82, 130, 0.3);
            margin-top: 20px;
        }

        .cta-button:hover {
            transform: translateY(-3px);
            box-shadow: 0 8px 25px rgba(44, 82, 130, 0.4);
        }

        /* Stats Section */
        .stats-section {
            background: #f7fafc;
            padding: 60px 0;
        }

        .stats-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 40px;
        }

        .stat-item {
            text-align: center;
            padding: 30px 20px;
            background: white;
            border-radius: 15px;
            box-shadow: 0 8px 25px rgba(0,0,0,0.08);
            transition: transform 0.3s ease;
        }

        .stat-item:hover {
            transform: translateY(-5px);
        }

        .stat-number {
            font-size: 3rem;
            font-weight: 700;
            color: #3182ce;
            margin-bottom: 10px;
        }

        .stat-label {
            font-size: 1.1rem;
            color: #4a5568;
            font-weight: 500;
        }

        /* Practice Areas Preview */
        .practice-preview {
            background: white;
            padding: 60px 0;
        }

        .practice-preview h3 {
            font-size: 2.2rem;
            color: #1a365d;
            text-align: center;
            margin-bottom: 50px;
        }

        .practice-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 20px;
        }

        .practice-item {
            background: linear-gradient(135deg, #f7fafc, #edf2f7);
            padding: 25px;
            border-radius: 12px;
            border-left: 4px solid #3182ce;
            transition: all 0.3s ease;
        }

        .practice-item:hover {
            transform: translateX(5px);
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
        }

        .practice-item h4 {
            color: #2c5282;
            font-weight: 600;
            margin-bottom: 8px;
        }

        /* Responsive Design */
        @media (max-width: 768px) {
            .hero-banner h1 {
                font-size: 2.5rem;
            }

            .hero-subtitle {
                font-size: 1.1rem;
            }

            .about-content {
                grid-template-columns: 1fr;
                gap: 40px;
            }

            .content-text h2 {
                font-size: 2.2rem;
            }

            .stats-grid {
                grid-template-columns: repeat(2, 1fr);
                gap: 20px;
            }

            .practice-grid {
                grid-template-columns: 1fr;
            }

            .offices-list {
                justify-content: center;
            }
        }

        /* Image placeholder */
        .law-illustration {
            width: 100%;
            height: 400px;
            background: linear-gradient(135deg, #e2e8f0, #cbd5e0);
            border-radius: 15px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: #4a5568;
            font-size: 1.1rem;
            text-align: center;
            position: relative;
            overflow: hidden;
        }

        .law-illustration::before {
            content: '⚖️';
            position: absolute;
            font-size: 5rem;
            opacity: 0.1;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
        }

        /* Why Choose Us Section */
        .why-choose-us {
            background: #f7fafc;
            padding: 80px 0;
        }

        .why-choose-us h3 {
            font-size: 2.5rem;
            color: #1a365d;
            text-align: center;
            margin-bottom: 60px;
            position: relative;
        }

        .why-choose-us h3::after {
            content: '';
            position: absolute;
            bottom: -10px;
            left: 50%;
            transform: translateX(-50%);
            width: 80px;
            height: 4px;
            background: linear-gradient(90deg, #3182ce, #4299e1);
            border-radius: 2px;
        }

        .features-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 40px;
            margin-top: 50px;
        }

        .feature-card {
            background: white;
            padding: 40px 30px;
            border-radius: 20px;
            text-align: center;
            box-shadow: 0 10px 30px rgba(0,0,0,0.08);
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
        }

        .feature-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 4px;
            background: linear-gradient(90deg, #3182ce, #4299e1);
            transform: scaleX(0);
            transition: transform 0.3s ease;
        }

        .feature-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 20px 40px rgba(0,0,0,0.12);
        }

        .feature-card:hover::before {
            transform: scaleX(1);
        }

        .feature-icon {
            width: 80px;
            height: 80px;
            background: linear-gradient(135deg, #3182ce, #4299e1);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 25px;
            color: white;
            transition: all 0.3s ease;
        }

        .feature-card:hover .feature-icon {
            transform: scale(1.1);
            box-shadow: 0 10px 25px rgba(49, 130, 206, 0.3);
        }

        .feature-card h4 {
            font-size: 1.4rem;
            color: #1a365d;
            margin-bottom: 20px;
            font-weight: 600;
        }

        .feature-card p {
            color: #4a5568;
            line-height: 1.7;
            font-size: 1rem;
        }

        /* CTA Section */
        .cta-section {
            background: linear-gradient(135deg, #1a365d 0%, #2c5282 50%, #3182ce 100%);
            color: white;
            padding: 80px 0;
            text-align: center;
            position: relative;
            overflow: hidden;
        }

        .cta-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="dots" width="10" height="10" patternUnits="userSpaceOnUse"><circle cx="5" cy="5" r="1" fill="white" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23dots)"/></svg>');
        }

        .cta-content {
            position: relative;
            z-index: 1;
        }

        .cta-section h2 {
            font-size: 2.8rem;
            margin-bottom: 20px;
            font-weight: 700;
            text-shadow: 2px 2px 4px rgba(0,0,0,0.2);
        }

        .cta-section p {
            font-size: 1.3rem;
            margin-bottom: 40px;
            opacity: 0.9;
            font-weight: 300;
        }

        .cta-appointment-btn {
            display: inline-block;
            background: white;
            color: #2c5282;
            padding: 18px 45px;
            text-decoration: none;
            border-radius: 50px;
            font-weight: 700;
            font-size: 1.2rem;
            transition: all 0.3s ease;
            box-shadow: 0 8px 25px rgba(0,0,0,0.2);
            text-transform: uppercase;
            letter-spacing: 1px;
        }

        .cta-appointment-btn:hover {
            transform: translateY(-3px);
            box-shadow: 0 12px 35px rgba(0,0,0,0.3);
            background: #f7fafc;
        }

        /* Responsive Updates */
        @media (max-width: 768px) {
            .why-choose-us h3 {
                font-size: 2rem;
            }

            .features-grid {
                grid-template-columns: 1fr;
                gap: 30px;
            }

            .feature-card {
                padding: 30px 20px;
            }

            .cta-section h2 {
                font-size: 2.2rem;
            }

            .cta-section p {
                font-size: 1.1rem;
            }

            .cta-appointment-btn {
                padding: 15px 35px;
                font-size: 1.1rem;
            }
        }
    
        /* Main Contact Section */
        .contact-section {
            padding: 100px 0;
            background: white;
            position: relative;
        }

        .contact-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 80px;
            align-items: start;
        }

        .contact-form-container {
            background: white;
            padding: 60px;
            border-radius: 24px;
            box-shadow: 0 20px 60px rgba(0,0,0,0.1);
            border: 1px solid rgba(255,255,255,0.2);
            backdrop-filter: blur(10px);
            position: relative;
            overflow: hidden;
        }

        .contact-form-container::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 4px;
            background: linear-gradient(90deg, #667eea, #764ba2);
        }

        .form-title {
            font-size: 2.5rem;
            font-weight: 700;
            color: #2d3748;
            margin-bottom: 1rem;
            background: linear-gradient(135deg, #667eea, #764ba2);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .form-subtitle {
            color: #718096;
            font-size: 1.1rem;
            margin-bottom: 3rem;
        }

        .form-group {
            margin-bottom: 2rem;
            position: relative;
        }

        .form-label {
            display: block;
            font-weight: 600;
            color: #4a5568;
            margin-bottom: 0.5rem;
            font-size: 0.95rem;
            text-transform: uppercase;
            letter-spacing: 0.5px;
        }

        .form-input, .form-textarea {
            width: 100%;
            padding: 16px 20px;
            border: 2px solid #e2e8f0;
            border-radius: 12px;
            font-size: 1rem;
            transition: all 0.3s ease;
            background: #f8fafc;
            font-family: inherit;
        }

        .form-input:focus, .form-textarea:focus {
            outline: none;
            border-color: #667eea;
            background: white;
            box-shadow: 0 0 0 4px rgba(102, 126, 234, 0.1);
            transform: translateY(-2px);
        }

        .form-textarea {
            resize: vertical;
            min-height: 120px;
        }

        .submit-btn {
            background: linear-gradient(135deg, #667eea, #764ba2);
            color: white;
            border: none;
            padding: 18px 40px;
            border-radius: 12px;
            font-size: 1.1rem;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
            text-transform: uppercase;
            letter-spacing: 1px;
            position: relative;
            overflow: hidden;
        }

        .submit-btn:hover {
            transform: translateY(-3px);
            box-shadow: 0 10px 30px rgba(102, 126, 234, 0.4);
        }

        .submit-btn:active {
            transform: translateY(-1px);
        }

        /* Contact Info */
        /* .contact-info {
            background: linear-gradient(135deg, #2d3748, #4a5568);
            padding: 60px 40px;
            border-radius: 24px;
            color: white;
            position: relative;
            overflow: hidden;
        }

        .contact-info::before {
            content: '';
            position: absolute;
            top: -50%;
            right: -50%;
            width: 200%;
            height: 200%;
            background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 70%);
            animation: rotate 20s linear infinite;
        }

        @keyframes rotate {
            from { transform: rotate(0deg); }
            to { transform: rotate(360deg); }
        }

        .contact-info-content {
            position: relative;
            z-index: 2;
        }

        .info-title {
            font-size: 2.2rem;
            font-weight: 700;
            margin-bottom: 1rem;
            color: white;
        }

        .info-subtitle {
            color: rgba(255,255,255,0.8);
            font-size: 1.1rem;
            margin-bottom: 3rem;
        }

        .contact-item {
            display: flex;
            align-items: center;
            margin-bottom: 2rem;
            padding: 1.5rem;
            background: rgba(255,255,255,0.1);
            border-radius: 16px;
            backdrop-filter: blur(10px);
            border: 1px solid rgba(255,255,255,0.2);
            transition: transform 0.3s ease;
        }

        .contact-item:hover {
            transform: translateX(10px);
        }

        .contact-icon {
            width: 50px;
            height: 50px;
            background: linear-gradient(135deg, #667eea, #764ba2);
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-right: 1rem;
            font-size: 1.2rem;
        }

        .contact-details h4 {
            font-weight: 600;
            margin-bottom: 0.25rem;
            font-size: 1rem;
        }

        .contact-details p {
            color: rgba(255,255,255,0.9);
            font-size: 0.95rem;
        } */

        /* Map Section */
        .map-section {
            height: 500px;
            position: relative;
            border-radius: 24px;
            overflow: hidden;
            margin: 60px 20px;
            box-shadow: 0 20px 60px rgba(0,0,0,0.15);
        }

        #map {
            width: 100%;
            height: 100%;
            border-radius: 24px;
        }

        /* Responsive Design */
        /* @media (max-width: 768px) {
            .hero-title {
                font-size: 2.5rem;
            }

            .contact-grid {
                grid-template-columns: 1fr;
                gap: 40px;
            }

            .contact-form-container, .contact-info {
                padding: 40px 30px;
            }

            .form-title {
                font-size: 2rem;
            }

            .info-title {
                font-size: 1.8rem;
            }

            .contact-section {
                padding: 60px 0;
            }
        }

        @media (max-width: 480px) {
            .hero-title {
                font-size: 2rem;
            }

            .contact-form-container, .contact-info {
                padding: 30px 20px;
            }

            .contact-item {
                flex-direction: column;
                text-align: center;
            }

            .contact-icon {
                margin-right: 0;
                margin-bottom: 1rem;
            }
        } */
          /* Hero Section */
        .hero-section {
            background: linear-gradient(135deg, rgba(102, 126, 234, 0.9), rgba(118, 75, 162, 0.9));
            padding: 80px 0;
            text-align: center;
            position: relative;
            overflow: hidden;
        }

        .hero-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="1" fill="white" opacity="0.1"/><circle cx="75" cy="75" r="1" fill="white" opacity="0.1"/><circle cx="50" cy="10" r="0.5" fill="white" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
            animation: float 20s ease-in-out infinite;
        }

        @keyframes float {
            0%, 100% { transform: translateY(0px) rotate(0deg); }
            50% { transform: translateY(-10px) rotate(1deg); }
        }

        .hero-content {
            position: relative;
            z-index: 2;
        }

        .hero-title {
            font-size: 3.5rem;
            font-weight: 700;
            color: white;
            margin-bottom: 1rem;
            text-shadow: 0 4px 20px rgba(0,0,0,0.3);
            animation: slideInUp 0.8s ease-out;
        }

        .hero-subtitle {
            font-size: 1.3rem;
            color: rgba(255,255,255,0.9);
            margin-bottom: 2rem;
            animation: slideInUp 0.8s ease-out 0.2s both;
        }

        .breadcrumb {
            display: flex;
            justify-content: center;
            gap: 0.5rem;
            animation: slideInUp 0.8s ease-out 0.4s both;
        }

        .breadcrumb a {
            color: rgba(255,255,255,0.8);
            text-decoration: none;
            transition: color 0.3s ease;
        }

        .breadcrumb a:hover {
            color: white;
        }

        .breadcrumb span {
            color: rgba(255,255,255,0.6);
        }

        @keyframes slideInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

         /* Custom marker styles */
        .custom-marker {
            background: none !important;
            border: none !important;
        }

        .marker-icon {
            background: linear-gradient(135deg, #667eea, #764ba2);
            width: 30px;
            height: 30px;
            border-radius: 50%;
            border: 3px solid white;
            box-shadow: 0 4px 12px rgba(0,0,0,0.3);
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 12px;
        }

        /* Leaflet popup styling */
        .leaflet-popup-content-wrapper {
            border-radius: 12px;
            box-shadow: 0 10px 30px rgba(0,0,0,0.2);
        }

        .leaflet-popup-tip {
            background: white;
        }

          /* Map Alternative Section */
        .map-alternative {
            background: #f8fafc;
            padding: 80px 0;
            text-align: center;
        }

        .map-card {
            background: white;
            padding: 60px;
            border-radius: 24px;
            box-shadow: 0 20px 60px rgba(0,0,0,0.1);
            max-width: 800px;
            margin: 0 auto;
        }

        .map-title {
            font-size: 2.5rem;
            font-weight: 700;
            color: #2d3748;
            margin-bottom: 1rem;
            background: linear-gradient(135deg, #667eea, #764ba2);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .map-address {
            font-size: 1.2rem;
            color: #4a5568;
            margin-bottom: 2rem;
            line-height: 1.8;
        }

        .directions-btn {
            display: inline-block;
            background: linear-gradient(135deg, #667eea, #764ba2);
            color: white;
            padding: 16px 32px;
            border-radius: 12px;
            text-decoration: none;
            font-weight: 600;
            font-size: 1.1rem;
            transition: all 0.3s ease;
            margin: 0 10px 10px 0;
        }

        .directions-btn:hover {
            transform: translateY(-3px);
            box-shadow: 0 10px 30px rgba(102, 126, 234, 0.4);
        }

         .brochure-section {
            background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
            position: relative;
            overflow: hidden;
        }
        
        .brochure-section::before {
            content: '';
            position: absolute;
            top: -50%;
            left: -50%;
            width: 200%;
            height: 200%;
            background: radial-gradient(circle, rgba(0,123,255,0.05) 0%, transparent 70%);
            animation: pulse 8s ease-in-out infinite;
        }
        
        @keyframes pulse {
            0%, 100% { transform: scale(1); opacity: 0.3; }
            50% { transform: scale(1.1); opacity: 0.1; }
        }
        
        .brochure-card {
            background: linear-gradient(135deg, #1a365d 0%, #2d5a87 100%);
            border-radius: 20px;
            box-shadow: 0 20px 40px rgba(0,0,0,0.1);
            position: relative;
            overflow: hidden;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            width: 100%;
            max-width: none;
        }
        
        .brochure-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 25px 50px rgba(0,0,0,0.15);
        }
        
        .brochure-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: linear-gradient(45deg, transparent 0%, rgba(255,255,255,0.1) 50%, transparent 100%);
            transform: translateX(-100%);
            transition: transform 0.6s ease;
        }
        
        .brochure-card:hover::before {
            transform: translateX(100%);
        }
        
        .legal-icon {
            font-size: 3rem;
            color: rgba(255,255,255,0.2);
            position: absolute;
            top: 20px;
            right: 30px;
            z-index: 1;
        }
        
        .download-btn {
            background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
            color: #1a365d;
            border: none;
            border-radius: 50px;
            padding: 15px 35px;
            font-weight: 600;
            font-size: 1.1rem;
            text-transform: uppercase;
            letter-spacing: 1px;
            transition: all 0.3s ease;
            box-shadow: 0 8px 20px rgba(0,0,0,0.1);
            position: relative;
            overflow: hidden;
        }
        
        .download-btn::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255,255,255,0.4), transparent);
            transition: left 0.5s ease;
        }
        
        .download-btn:hover::before {
            left: 100%;
        }
        
        .download-btn:hover {
            transform: translateY(-2px);
            box-shadow: 0 12px 25px rgba(0,0,0,0.15);
            color: #1a365d;
        }
        
        .download-btn i {
            margin-right: 10px;
            font-size: 1.2rem;
        }
        
        .firm-title {
            font-size: 2.2rem;
            font-weight: 300;
            margin-bottom: 15px;
            position: relative;
            z-index: 2;
        }
        
        .firm-title .highlight {
            font-weight: 700;
            color: #ffd700;
        }
        
        .firm-description {
            font-size: 1.1rem;
            line-height: 1.6;
            opacity: 0.9;
            position: relative;
            z-index: 2;
        }
        
        .practice-areas {
            display: flex;
            flex-wrap: wrap;
            gap: 10px;
            margin-top: 20px;
            position: relative;
            z-index: 2;
        }
        
        .practice-tag {
            background: rgba(255,255,255,0.15);
            color: white;
            padding: 5px 12px;
            border-radius: 20px;
            font-size: 0.85rem;
            font-weight: 500;
            backdrop-filter: blur(10px);
        }
        
        @media (max-width: 768px) {
            .firm-title {
                font-size: 1.8rem;
            }
            
            .legal-icon {
                font-size: 2rem;
                top: 15px;
                right: 20px;
            }
            
            .download-btn {
                padding: 12px 25px;
                font-size: 1rem;
            }
        }