/* ============================================
   Philadelphia Advocates - Redesigned Stylesheet
   ============================================ */

:root {
    --primary-color: #600315;
    --primary-dark: #47000e;
    --gold: #B78300;
    --gold-dark: #9a6f00;
    --gold-light: #d4a017;
    --text-dark: #1a1a1a;
    --text-medium: #333333;
    --text-light: #555555;
    --bg-light: #f8f7f5;
    --bg-section: #f2f0ec;
    --white: #ffffff;
    --border-color: #e0dcd5;
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.08);
    --shadow-md: 0 4px 20px rgba(0, 0, 0, 0.12);
    --shadow-lg: 0 8px 30px rgba(0, 0, 0, 0.15);
    --transition: all 0.3s ease;
}

/* ========== BASE & RESET ========== */
* { box-sizing: border-box; }

body {
    font-family: 'Open Sans', sans-serif;
    color: var(--text-dark);
    line-height: 1.7;
    margin: 0;
    overflow-x: hidden;
}

img { max-width: 100%; height: auto; }
a { transition: var(--transition); }
a:hover { text-decoration: none; }

.fairfont { font-family: 'Playfair Display', serif; }
.popfont { font-family: 'Poppins', sans-serif; }
.padnone { padding: 0; }
.padright0 { padding-right: 0; }
.padleft0 { padding-left: 0; }
.pad-0 { padding: 0 !important; }
.d-flex { display: flex; align-items: center; }
.text-center { text-align: center; }

/* ========== HEADER ========== */
header {
    background: var(--white);
    padding: 0;
    border-bottom: none;
    position: relative;
    z-index: 100;
}

/* Top contact bar */
.topbar {
    background: var(--primary-dark);
    padding: 9px 0;
}

.topbar-inner {
    display: flex;
    align-items: center;
    justify-content: flex-end;
}

.abcd {
    display: flex;
    align-items: center;
    width: 100%;
    margin-bottom: 0;
    padding-left: 0;
    list-style: none;
}

.abcd li {
    white-space: nowrap;
    padding: 0 18px;
    border-right: 1px solid rgba(255, 255, 255, 0.15);
    list-style: none;
}

.abcd li:first-child {
    padding-left: 0;
    margin-right: auto;
    border-right: none;
}

.abcd li:last-child {
    border-right: none;
    padding-right: 0;
}

.abcd li a {
    color: rgba(255, 255, 255, 0.88);
    font-weight: 400;
    font-size: 13px;
    letter-spacing: 0.3px;
    font-family: 'Open Sans', sans-serif;
}

.abcd li a i {
    margin-right: 7px;
    color: var(--gold);
    font-size: 12px;
}

.abcd li a:hover {
    color: var(--gold);
    text-decoration: none;
}

/* Logo row - combined logo + nav bar */
.logo-row {
    padding: 0;
    border-bottom: 3px solid var(--gold);
    background: var(--white);
    position: relative;
    z-index: 999;
}

.logo-row-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo-row-inner .logo {
    flex: 0 0 auto;
    /* padding: 12px 0; */
}

header .logo img {
    max-height: 100px;
    width: auto;
    height: auto;
    object-fit: contain;
}

/* ========== NAVIGATION (inside logo-row) ========== */
.nav-main {
    display: flex;
    align-items: center;
    margin-left: auto;
}

.nav-main > ul {
    margin-bottom: 0;
    padding-left: 0;
    text-align: right;
    padding: 0;
    display: flex;
    align-items: center;
}

.nav-main > ul > li {
    display: inline-block;
    padding: 0;
    position: relative;
    margin-bottom: 0;
    list-style: none;
}

.nav-main > ul > li > a {
    font-family: 'Open Sans', sans-serif;
    font-size: 13px;
    color: var(--primary-color);
    text-transform: uppercase;
    font-weight: 600;
    letter-spacing: 0.5px;
    display: inline-block;
    padding: 22px 14px;
    position: relative;
}

.nav-main > ul > li > a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 14px;
    right: 14px;
    width: auto;
    height: 3px;
    background: var(--gold);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.nav-main > ul > li > a:hover {
    text-decoration: none;
    color: var(--gold);
}

.nav-main > ul > li > a:hover::after {
    transform: scaleX(1);
}

/* Dropdowns */
.dropdown,
.dropdown1 {
    position: absolute;
    top: 100%;
    left: 0;
    background: var(--primary-dark);
    padding: 8px 0;
    width: 380px;
    z-index: 99999;
    display: none;
    border-top: 3px solid var(--gold);
    box-shadow: var(--shadow-lg);
    border-radius: 0 0 6px 6px;
}

.dropdown1 {
    width: 300px;
}

.nav-main > ul > li:hover > .dropdown,
.nav-main > ul > li:hover > .dropdown1 {
    display: block;
}

.dropdown li,
.dropdown1 li {
    display: block !important;
    padding: 0 !important;
    margin: 0 !important;
}

.dropdown a,
.dropdown1 a {
    font-size: 13px !important;
    display: block !important;
    padding: 9px 20px !important;
    text-transform: none !important;
    letter-spacing: 0 !important;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    color: rgba(255, 255, 255, 0.9) !important;
    text-align: left !important;
}

.dropdown li:last-child a,
.dropdown1 li:last-child a {
    border-bottom: none;
}

.dropdown a::after,
.dropdown1 a::after {
    display: none !important;
}

.dropdown a:hover,
.dropdown1 a:hover {
    background: rgba(183, 131, 0, 0.15) !important;
    color: var(--gold) !important;
}

/* ========== MAIN BANNER ========== */
.main-banner {
    background: url(../images/main-banner.jpg) no-repeat center center;
    background-size: cover;
    min-height: 620px;
    position: relative;
    display: flex;
    align-items: center;
    background-attachment: fixed;
}

.main-banner::after {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    background: linear-gradient(
        160deg,
        rgba(71, 0, 14, 0.95) 0%,
        rgba(96, 3, 21, 0.85) 35%,
        rgba(30, 0, 5, 0.65) 65%,
        rgba(0, 0, 0, 0.40) 100%
    );
}

.main-banner .row {
    position: relative;
    z-index: 1;
}

.main-banner .genhad {
    text-align: left;
    padding: 80px 0;
    position: relative;
    z-index: 1;
}

.main-banner .genhad h1 {
    font-size: 50px;
    font-weight: 800;
    color: var(--white);
    text-transform: uppercase;
    font-family: 'Playfair Display', serif;
    max-width: 580px;
    line-height: 1.15;
    margin-bottom: 25px;
    text-shadow: 0 3px 25px rgba(0, 0, 0, 0.35);
}

.main-banner .genhad h1 span {
    color: var(--gold);
}

.main-banner .genhad p {
    font-size: 16px;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.88);
    text-transform: uppercase;
    font-family: 'Open Sans', sans-serif;
    border-top: 2px solid var(--gold);
    padding-top: 20px;
    margin-top: 0;
    max-width: 580px;
    letter-spacing: 2px;
    line-height: 1.8;
}

/* ========== SECTION HEADINGS ========== */
.same-hd {
    font-weight: 700;
    color: var(--primary-color);
    font-size: 36px;
    text-align: center;
    text-transform: uppercase;
    position: relative;
    margin-bottom: 55px;
    font-family: 'Playfair Display', serif;
    letter-spacing: 0.5px;
}

.same-hd::before {
    content: '';
    position: absolute;
    width: 60px;
    height: 3px;
    background: var(--gold);
    left: 0;
    right: 0;
    margin: 0 auto;
    bottom: -18px;
}

.same-hd::after {
    content: '';
    position: absolute;
    width: 20px;
    height: 3px;
    background: var(--primary-color);
    left: calc(50% + 35px);
    bottom: -18px;
}

/* ========== SECTION 2 - PRACTICE AREAS ========== */
.section2 {
    background: var(--bg-light);
    padding: 70px 0 60px 0;
    position: relative;
}

.section2::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url(../images/section2-bg.jpg) no-repeat top center;
    background-size: cover;
    opacity: 0.04;
}

.section2 .container {
    position: relative;
    z-index: 1;
}

.section2 .row {
    display: flex;
    flex-wrap: wrap;
}

.section2 .row > .col-md-4 {
    display: flex;
    margin-bottom: 25px;
}

.section2 .practice {
    background: var(--white);
    padding: 0;
    text-align: left;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
    transition: all 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    border: 1px solid rgba(0, 0, 0, 0.06);
    display: flex;
    flex-direction: column;
    width: 100%;
    position: relative;
}

.section2 .practice::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-color), var(--gold));
    opacity: 0;
    transition: opacity 0.35s ease;
}

.section2 .practice:hover {
    box-shadow: 0 12px 35px rgba(96, 3, 21, 0.15);
    transform: translateY(-8px);
    border-color: transparent;
}

.section2 .practice:hover::after {
    opacity: 1;
}

.section2 .practice img {
    width: 100%;
    height: 180px;
    object-fit: cover;
    display: block;
}

.section2 .practice h3 {
    font-size: 16px;
    font-family: 'Playfair Display', serif;
    color: var(--primary-color);
    font-weight: 700;
    margin: 0;
    padding: 18px 22px 10px;
    line-height: 1.4;
}

.section2 .practice p {
    font-size: 13px;
    color: var(--text-light);
    margin-bottom: 0;
    padding: 0 22px 22px;
    line-height: 1.7;
    flex-grow: 1;
}

/* ========== SECTION 3 - WHY CHOOSE US ========== */
.section3 {
    background: url(../images/section3-bg.jpg) no-repeat center center;
    background-size: cover;
    color: var(--white);
    padding: 70px 0;
    position: relative;
}

.section3::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg,
        rgba(71, 0, 14, 0.95) 0%,
        rgba(96, 3, 21, 0.92) 50%,
        rgba(71, 0, 14, 0.95) 100%);
    z-index: 0;
}

.section3 .container {
    position: relative;
    z-index: 1;
}

/* Section 3 Top - Intro */
.sec3-top {
    margin-bottom: 50px;
    align-items: center;
}

.sec3-intro h2 {
    font-size: 32px;
    font-weight: 700;
    margin: 0 0 24px 0;
    line-height: 1.3;
    color: var(--gold);
}

.sec3-intro p {
    font-size: 15px;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.9);
    margin: 0;
}

.sec3-image img {
    width: 100%;
    border-radius: 10px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.3);
}

/* Section 3 Why Title */
.sec3-why {
    margin-bottom: 40px;
    text-align: center;
}

.sec3-title {
    font-size: 36px;
    font-weight: 700;
    color: var(--gold);
    margin: 0;
    position: relative;
    display: inline-block;
    padding-bottom: 15px;
}

.sec3-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
}

/* Feature Cards */
.sec3-features {
    margin-bottom: 50px;
}

.feature-card {
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 12px;
    padding: 30px 20px;
    text-align: center;
    transition: all 0.35s ease;
    height: 100%;
    margin-bottom: 20px;
}

.feature-card:hover {
    background: rgba(255, 255, 255, 0.12);
    border-color: var(--gold);
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(183, 131, 0, 0.2);
}

.feature-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 20px;
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.35s ease;
}

.feature-card:hover .feature-icon {
    transform: scale(1.1) rotate(5deg);
}

.feature-icon i {
    font-size: 28px;
    color: var(--white);
}

.feature-card h4 {
    font-size: 18px;
    font-weight: 700;
    color: var(--gold);
    margin: 0 0 12px 0;
    font-family: 'Playfair Display', serif;
}

.feature-card p {
    font-size: 13px;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.85);
    margin: 0;
}

/* Trust Statement */
.sec3-trust {
    margin-top: 30px;
}

.trust-statement {
    background: rgba(183, 131, 0, 0.12);
    border: 2px solid var(--gold);
    border-radius: 12px;
    padding: 35px 40px;
    text-align: center;
    position: relative;
}

.trust-statement i {
    font-size: 50px;
    color: var(--gold);
    margin-bottom: 15px;
    display: block;
}

.trust-statement h3 {
    font-size: 26px;
    font-weight: 700;
    color: var(--white);
    margin: 0 0 15px 0;
    font-family: 'Playfair Display', serif;
}

.trust-statement p {
    font-size: 15px;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.88);
    margin: 0;
}

.rht::after {
    content: '';
    position: absolute;
    background: url(../images/sprite.png) no-repeat -763px -23px;
    width: 21px;
    height: 531px;
    top: 0;
    bottom: 0;
    margin: auto;
    right: -60px;
}

/* ========== SECTION 4 - FOR CLIENTS ========== */
.section4 {
    padding: 70px 0;
    background: var(--bg-light);
}

/* Section 4 Header */
.sec4-header {
    text-align: center;
    margin-bottom: 50px;
}

.sec4-title-area {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    margin-bottom: 20px;
}

.sec4-title-area img {
    width: 60px;
    height: 60px;
    border-radius: 8px;
}

.sec4-title-area h2 {
    font-size: 36px;
    font-weight: 700;
    color: var(--primary-color);
    margin: 0;
    text-transform: uppercase;
}

.sec4-subtitle {
    font-size: 16px;
    line-height: 1.8;
    color: var(--text-medium);
    max-width: 900px;
    margin: 0 auto;
}

/* Section 4 Content */
.sec4-content {
    margin-bottom: 50px;
    align-items: stretch;
}

.sec4-left,
.sec4-right {
    height: 100%;
}

.sec4-intro-box {
    background: var(--white);
    padding: 35px;
    border-radius: 12px;
    border-left: 4px solid var(--gold);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    height: 100%;
}

.sec4-intro-box i {
    font-size: 50px;
    color: var(--gold);
    margin-bottom: 20px;
    display: block;
}

.sec4-intro-box p {
    font-size: 14px;
    line-height: 1.8;
    color: var(--text-medium);
    margin: 0;
}

.sec4-intro-box strong {
    color: var(--primary-color);
}

.sec4-right {
    background: var(--white);
    padding: 35px;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.sec4-right h3 {
    font-size: 22px;
    font-weight: 700;
    color: var(--primary-color);
    margin: 0 0 20px 0;
    font-family: 'Playfair Display', serif;
}

.sec4-expectations {
    padding: 0;
    margin: 0;
}

.sec4-expectations li {
    list-style: none;
    padding: 12px 0;
    display: flex;
    align-items: flex-start;
    gap: 12px;
    border-bottom: 1px solid var(--border-color);
}

.sec4-expectations li:last-child {
    border-bottom: none;
}

.sec4-expectations li i {
    color: var(--gold);
    font-size: 18px;
    margin-top: 2px;
    flex-shrink: 0;
}

.sec4-expectations li span {
    font-size: 14px;
    line-height: 1.7;
    color: var(--text-medium);
}

/* Commitment Cards */
.sec4-commitment {
    margin-top: 30px;
}

.commitment-card {
    background: var(--white);
    padding: 30px 25px;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    transition: all 0.35s ease;
    height: 100%;
    margin-bottom: 20px;
}

.commitment-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(96, 3, 21, 0.12);
}

.commit-icon {
    width: 65px;
    height: 65px;
    margin: 0 auto 20px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.35s ease;
}

.commitment-card:hover .commit-icon {
    transform: scale(1.1) rotate(5deg);
}

.commit-icon i {
    font-size: 26px;
    color: var(--white);
}

.commitment-card h4 {
    font-size: 19px;
    font-weight: 700;
    color: var(--primary-color);
    margin: 0 0 12px 0;
    font-family: 'Playfair Display', serif;
}

.commitment-card p {
    font-size: 13px;
    line-height: 1.7;
    color: var(--text-light);
    margin: 0;
}

/* Legacy styles for backwards compatibility */
.fs-25 {
    font-size: 22px;
    font-weight: 700;
    color: var(--primary-color);
    margin-top: 25px;
}

.law-list {
    position: relative;
    padding-left: 20px;
}

.law-list li {
    font-size: 15px;
    font-weight: 500;
    padding-bottom: 10px;
    color: var(--text-medium);
    line-height: 1.6;
}

/* ========== INNER BANNER ========== */
.inner-banner {
    background: url(../images/about-banner.jpg) no-repeat center center;
    background-size: cover;
    min-height: 340px;
    position: relative;
    display: flex;
    align-items: center;
    background-attachment: fixed;
}

.inner-banner::after {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    background: linear-gradient(
        135deg,
        rgba(96, 3, 21, 0.90) 0%,
        rgba(71, 0, 14, 0.80) 40%,
        rgba(30, 0, 5, 0.70) 100%
    );
}

.inner-banner .container {
    position: relative;
    z-index: 1;
}

.inner-banner-hd {
    z-index: 1;
    position: relative;
}

.inner-banner .inner-banner-hd h2 {
    font-size: 46px;
    color: var(--white);
    text-transform: uppercase;
    font-weight: 700;
    margin: 0;
    text-shadow: 0 2px 15px rgba(0, 0, 0, 0.3);
    letter-spacing: 1px;
}

.attorneys .inner-banner {
    background: url(../images/attorney-bg.jpg) no-repeat center center;
    background-size: cover;
}

.prac-area .inner-banner {
    background: url(../images/pracArea-bg.jpg) no-repeat center center;
    background-size: cover;
}

/* Breadcrumb */
.breadcrum {
    background: rgba(0, 0, 0, 0.45);
    position: absolute;
    z-index: 2;
    width: 100%;
    bottom: 0;
    padding: 12px 15px;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    width: 100%;
    left: 0;
}

.breadcrum ul {
    padding-left: 0;
    margin-bottom: 0;
}

.breadcrum ul li {
    display: inline-block;
    list-style: none;
}

.breadcrum ul li a {
    color: rgba(255, 255, 255, 0.85);
    font-size: 13px;
    text-transform: uppercase;
    padding-left: 10px;
    font-weight: 600;
    letter-spacing: 0.5px;
}

.breadcrum ul li a:hover {
    color: var(--gold);
}

.breadcrum ul li a i {
    padding-left: 6px;
}

/* ========== ABT-EDUCATIONAL (Content Pages) ========== */
.abt-educational {
    padding: 50px 0;
    background: var(--white);
}

.abt-educational .abt-edu-descrip h3 {
    font-size: 28px;
    font-weight: 700;
    text-transform: uppercase;
    color: var(--primary-color);
    padding-bottom: 18px;
    position: relative;
    margin-bottom: 28px;
    font-family: 'Playfair Display', serif;
}

.abt-educational .abt-edu-descrip h3::before {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 60px;
    height: 3px;
    background: var(--gold);
}

.abt-educational .abt-edu-descrip h3::after {
    content: '';
    position: absolute;
    left: 65px;
    bottom: 0;
    width: 20px;
    height: 3px;
    background: var(--primary-color);
}

.abt-lft {
    overflow: hidden;
}

.abt-educational .abt-lft img {
    float: left;
    margin-right: 25px;
    margin-bottom: 20px;
    border-radius: 6px;
    box-shadow: var(--shadow-md);
    max-width: 350px;
}

.abt-edu-descrip .abt-float-img {
    float: left;
    margin-right: 25px;
    margin-bottom: 10px;
    border-radius: 6px;
    box-shadow: var(--shadow-md);
    max-width: 350px;
    min-height: 300px;
    object-fit: cover;
}

.abt-educational .abt-edu-descrip p {
    font-size: 14px;
    color: var(--text-medium);
    margin-bottom: 20px;
    line-height: 1.8;
}

.abt-educational .abt-edu-descrip .abt-only-para p:first-child {
    margin-top: 20px;
}

/* h2 inside content */
.abt-educational h2,
.para h2 {
    font-size: 20px;
    font-weight: 600;
    color: var(--primary-color);
    margin: 30px 0 12px 0;
}

.abt-educational p {
    font-size: 14px;
    color: var(--text-medium);
    line-height: 1.8;
    margin-bottom: 16px;
}

/* Sidebar */
.abt-educational .asside .qlinks {
    padding: 28px;
    border: 1px solid rgba(0, 0, 0, 0.06);
    margin-bottom: 20px;
    margin-top: 22px;
    border-radius: 12px;
    background: var(--white);
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.06);
}

.abt-educational .qlinks h3 {
    font-size: 24px;
    color: var(--primary-color);
    font-weight: 700;
    position: relative;
    padding-bottom: 20px;
    margin-top: 0;
    margin-bottom: 15px;
}

.abt-educational .qlinks h3::before {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 50px;
    height: 3px;
    background: var(--gold);
}

.abt-educational .qlinks ul {
    padding-left: 0;
}

.abt-educational .qlinks ul li {
    list-style: none;
    position: relative;
    padding-left: 20px;
    padding-top: 8px;
    padding-bottom: 8px;
}

.abt-educational .qlinks ul li + li {
    border-top: 1px solid var(--border-color);
}

.abt-educational .qlinks ul li::before {
    content: "\f0a9";
    position: absolute;
    left: 0;
    font: normal normal normal 14px/1 FontAwesome;
    top: 12px;
    color: var(--gold);
}

.abt-educational .qlinks ul li a {
    color: var(--text-dark);
    font-size: 14px;
    font-weight: 600;
}

.abt-educational .qlinks ul li a:hover {
    color: var(--primary-color);
}

.abt-educational .asside-visual img {
    width: 100%;
    border-radius: 6px;
    box-shadow: var(--shadow-sm);
}

/* ========== TESTIMONIALS ========== */
.testimonials {
    background: var(--primary-dark);
    padding: 80px 0 70px;
    position: relative;
    overflow: hidden;
}

.testimonials::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(160deg, rgba(71, 0, 14, 1) 0%, rgba(96, 3, 21, 0.95) 40%, rgba(120, 8, 35, 0.92) 100%);
}

.testimonials::after {
    content: '\201C';
    position: absolute;
    top: -30px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 300px;
    color: rgba(255, 255, 255, 0.03);
    font-family: 'Playfair Display', serif;
    pointer-events: none;
    z-index: 0;
}

.testimonials .container {
    position: relative;
    z-index: 1;
}

.testimonials .same-hd {
    font-size: 32px;
    text-transform: capitalize;
    margin-bottom: 55px;
    color: var(--white);
}

.testimonials .same-hd::before {
    background: var(--gold);
}

.testimonials .same-hd::after {
    content: '';
    width: 20px;
    height: 3px;
    background: rgba(255, 255, 255, 0.4);
    left: calc(50% + 35px);
    bottom: -18px;
}

/* Custom Carousel */
.testi-carousel {
    position: relative;
    max-width: 850px;
    margin: 0 auto;
    padding: 0 50px;
}

.testi-track {
    position: relative;
    min-height: 180px;
}

.testi-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    opacity: 0;
    transform: translateX(30px);
    transition: opacity 0.5s ease, transform 0.5s ease;
    pointer-events: none;
}

.testi-slide.active {
    position: relative;
    opacity: 1;
    transform: translateX(0);
    pointer-events: auto;
}

.testi-slide.exit-left {
    opacity: 0;
    transform: translateX(-30px);
}

.testi-slide.exit-right {
    opacity: 0;
    transform: translateX(30px);
}

.testimonials .clien-review {
    text-align: center;
    padding: 10px 20px;
}

.testi-quote {
    font-size: 42px;
    color: var(--gold);
    display: block;
    margin-bottom: 25px;
    opacity: 0.6;
}

.testimonials .clien-review p {
    font-size: 18px;
    font-family: 'Libre Baskerville', serif;
    font-weight: 400;
    font-style: italic;
    color: rgba(255, 255, 255, 0.9);
    line-height: 2;
    text-align: center;
    margin: 0;
}

/* Carousel Arrows */
.testi-prev,
.testi-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.08);
    border: 2px solid rgba(255, 255, 255, 0.2);
    color: var(--white);
    width: 46px;
    height: 46px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    z-index: 2;
    font-size: 16px;
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
}

.testi-prev:hover,
.testi-next:hover {
    background: var(--gold);
    border-color: var(--gold);
    color: var(--white);
    transform: translateY(-50%) scale(1.08);
}

.testi-prev {
    left: -5px;
}

.testi-next {
    right: -5px;
}

/* Carousel Dots */
.testi-dots {
    text-align: center;
    margin-top: 30px;
}

.testi-dots span {
    display: inline-block;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    margin: 0 5px;
    cursor: pointer;
    transition: var(--transition);
}

.testi-dots span.active {
    background: var(--gold);
    transform: scale(1.2);
}

/* ========== T-ADVOCACY ========== */
.t-advocacy {
    background: url(../images/adovocacy-bg.jpg) no-repeat center center;
    background-size: cover;
    padding: 70px 0;
    position: relative;
}

.t-advocacy::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        135deg,
        rgba(30, 25, 15, 0.88) 0%,
        rgba(20, 15, 5, 0.82) 100%
    );
}

.t-advocacy .container {
    position: relative;
    z-index: 1;
}

.t-advocacy .same-hd {
    font-size: 32px;
    margin-bottom: 55px;
    color: var(--white);
}

.t-advocacy .same-hd::before {
    background: var(--gold);
}

.t-advocacy .same-hd::after {
    content: '';
    width: 20px;
    height: 3px;
    background: rgba(255, 255, 255, 0.4);
    left: calc(50% + 35px);
    bottom: -18px;
}

.t-advocacy .advo {
    text-align: center;
    background: var(--white);
    overflow: hidden;
    border-radius: 12px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
    transition: all 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.t-advocacy .advo:hover {
    transform: translateY(-8px);
    box-shadow: 0 16px 45px rgba(0, 0, 0, 0.2);
}

.t-advocacy .advo img {
    width: 100%;
    height: 220px;
    object-fit: cover;
}

.t-advocacy .advo .advocacy-des {
    padding: 20px 15px;
    width: 100%;
    min-height: 177px;
}

.t-advocacy .advo .advocacy-des h4 {
    font-size: 20px;
    color: var(--primary-color);
    font-weight: 700;
}

.t-advocacy .advo .advocacy-des h3 {
    color: var(--primary-color);
    font-size: 18px;
    font-weight: 600;
    position: relative;
    padding-bottom: 10px;
    margin-bottom: 20px;
    margin-top: 0;
    padding-top: 10px;
}

.t-advocacy .advo .advocacy-des h3::before {
    content: '';
    position: absolute;
    width: 60px;
    height: 3px;
    background: var(--gold);
    bottom: -5px;
    left: 50%;
    transform: translateX(-50%);
}

.t-advocacy .advo .advocacy-des p {
    font-size: 14px;
    color: var(--text-light);
    line-height: 1.7;
}

/* T-Practice variant */
.t-pract.t-advocacy .advo {
    margin: 0 0 0 1px;
    position: relative;
}

.t-pract.t-advocacy .advo:before {
    content: "";
    position: absolute;
    width: 98%;
    height: 98%;
    border: 1px solid #bb3920;
    top: 4px;
    left: 4px;
}

.t-pract.t-advocacy .same-hd { color: var(--white); }
.t-pract.t-advocacy .advo img { width: 100%; }
.t-pract.t-advocacy .advo .advocacy-des h3,
.t-pract.t-advocacy .advo h4 { color: #bb3920; }

/* ========== PARTNERS / ATTORNEYS ========== */
.partners {
    padding: 30px 0;
    background: var(--white);
}

.partners .part-shw img {
    width: 100%;
    border-radius: 6px;
    box-shadow: var(--shadow-md);
}

.partners .exper {
    padding-top: 15px;
    padding-bottom: 0;
}

.partners .exper h3 {
    font-weight: 700;
    font-size: 16px;
    color: var(--text-dark);
    margin-top: 0;
    text-transform: uppercase;
    position: relative;
}

.partners .exper h3::before {
    content: '';
    left: 0;
    background: url(../images/sprite.png) no-repeat;
    background-position: -63px -5px;
    display: inline-block;
    width: 37px;
    height: 34px;
    top: -3px;
    vertical-align: middle;
    margin-right: 4px;
}

.partners .exper.expr-2 h3::before { background-position: -115px -4px; }
.partners .exper.expr-3 h3::before { background-position: -161px 2px; width: 38px; height: 36px; }
.partners .exper.expr-4 h3::before { background-position: -209px -3px; }
.partners .exper.expr-5 h3::before { background-position: -257px -4px; width: 28px; }

.partners .exper ul {
    padding-left: 0;
}

.partners .exper ul li {
    list-style: none;
    position: relative;
    padding: 3px 0 0 20px;
    color: var(--text-medium);
    font-size: 14px;
}

.partners .exper ul li::before {
    content: "\f105";
    position: absolute;
    left: 0;
    font: normal normal normal 14px/1 FontAwesome;
    color: var(--gold);
    top: 7px;
    font-weight: 900;
}

.partners .partner-desc {
    width: 100%;
    float: left;
}

.partners .partner-desc p {
    font-size: 14px;
    color: var(--text-medium);
    padding-left: 15px;
    margin-top: 20px;
    line-height: 1.8;
}

/* Inner page heading */
.inner-pg-hd {
    font-size: 24px;
    text-transform: uppercase;
    color: var(--primary-color);
    padding-bottom: 18px;
    position: relative;
    margin-bottom: 20px;
}

.inner-pg-hd::before {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 80px;
    height: 3px;
    background: var(--gold);
}

.brder-bottom {
    border-bottom: 1px solid var(--border-color);
}

/* ========== LAW BOXES (Lawyers page) ========== */
.law-box {
    padding: 30px;
    border: 1px solid rgba(0, 0, 0, 0.06);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    background: var(--white);
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
    transition: all 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.law-box:hover {
    box-shadow: 0 10px 35px rgba(96, 3, 21, 0.12);
    transform: translateY(-4px);
    border-color: transparent;
}

.law-image {
    flex: 0 0 25%;
    max-width: 25%;
    padding-right: 25px;
}

.law-image img {
    width: 100%;
    border-radius: 6px;
    box-shadow: var(--shadow-sm);
}

.law-text h3 {
    font-size: 20px;
}

.law-text h4 {
    font-size: 15px;
    margin: 5px 0;
    color: var(--text-medium);
}

.law-text h4 a {
    color: var(--primary-color);
    font-weight: 600;
}

.law-text h4 a:hover {
    color: var(--gold);
}

.law-text p {
    font-size: 14px;
    color: var(--text-light);
    margin-top: 10px;
    line-height: 1.7;
}

.mt-5 { margin-top: 30px; }

/* ========== PRACTICE AREAS PAGES ========== */
.practice-areas.abt-educational { padding: 40px 0; }

.practice-areas .inner-pg-hd::before {
    width: 80px;
    height: 3px;
    background: var(--gold);
}

.practice-areas .practice {
    text-align: center;
    background: var(--white);
    width: 100%;
    float: left;
    margin-bottom: 25px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
    transition: all 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.practice-areas .practice:hover {
    box-shadow: 0 10px 35px rgba(96, 3, 21, 0.12);
    transform: translateY(-5px);
    border-color: transparent;
}

.practice-areas .practice img { width: 100%; }

.practice-areas .practice .practice-desc {
    padding: 20px 15px;
    border: 1px solid var(--border-color);
    border-top: 0;
    border-radius: 0 0 6px 6px;
}

.practice-areas .practice .practice-desc h4 {
    font-weight: 700;
    font-size: 18px;
    color: var(--primary-color);
    position: relative;
    margin-bottom: 25px;
    margin-top: 0;
    padding-top: 10px;
}

.practice-areas .practice .practice-desc h4::before {
    content: '';
    position: absolute;
    width: 50px;
    height: 3px;
    background: var(--gold);
    bottom: -12px;
    left: 50%;
    transform: translateX(-50%);
}

.practice-areas .practice .practice-desc p {
    font-size: 14px;
    color: var(--text-medium);
}

/* Para styling for practice content pages */
.para h2 {
    font-weight: 600;
    font-size: 20px;
    color: var(--primary-color);
    margin: 30px 0 12px 0;
}

.para p {
    line-height: 1.8;
}

/* ========== BENEFICIARY DETAILS ========== */
.bina-details {
    margin-top: 15px;
    background: var(--bg-light);
    padding: 25px;
    border-radius: 8px;
    border: 1px solid var(--border-color);
}

.bina-details h3 {
    color: var(--primary-color);
    margin-bottom: 15px;
    font-size: 20px;
}

.bina-details li {
    padding: 10px 0;
    border-bottom: 1px solid var(--border-color);
    font-size: 14px;
    color: var(--text-medium);
}

.bina-details li:last-child {
    border-bottom: none;
}

.bina-details ul li span {
    width: 50%;
    display: inline-block;
    font-weight: 700;
    color: var(--text-dark);
}

/* ========== PP-TERM (Privacy/Terms pages) ========== */
.pp-term {
    padding: 40px 0;
    background: var(--white);
}

.pp-term h4 {
    font-size: 20px;
    color: var(--primary-color);
    font-weight: 700;
    text-transform: capitalize;
    margin-top: 25px;
}

.pp-term p {
    font-size: 14px;
    color: var(--text-medium);
    line-height: 1.8;
    margin-bottom: 15px;
}

/* ========== FOOTER ========== */
footer {
    background: linear-gradient(180deg, var(--primary-dark) 0%, #1a0005 100%);
    padding: 60px 0 0;
    color: var(--white);
    position: relative;
}

footer .ft-main {
    display: flex;
    flex-wrap: wrap;
}

footer .ft-col {
    padding: 0 20px;
    margin-bottom: 30px;
}

footer .ft-about .logo {
    margin-bottom: 20px;
}

footer .ft-about .logo img {
    max-height: 80px;
    width: auto;
    height: auto;
    object-fit: contain;
}

footer .ft-desc {
    color: rgba(255, 255, 255, 0.7);
    font-size: 13px;
    line-height: 1.8;
    margin-bottom: 20px;
}

footer .ft-social a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border: 1px solid rgba(255, 255, 255, 0.25);
    border-radius: 50%;
    color: rgba(255, 255, 255, 0.85);
    margin-right: 8px;
    font-size: 14px;
    text-decoration: none;
    transition: var(--transition);
}

footer .ft-social a:hover {
    background: var(--gold);
    border-color: var(--gold);
    color: var(--white);
    text-decoration: none;
}

footer .ft-heading {
    font-family: 'Playfair Display', serif;
    font-size: 18px;
    color: var(--white);
    margin-bottom: 20px;
    padding-bottom: 12px;
    position: relative;
}

footer .ft-heading::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 40px;
    height: 2px;
    background: var(--gold);
}

footer ul { padding-left: 0; margin: 0; }

footer ul li {
    list-style: none;
    padding: 6px 0;
    position: relative;
    padding-left: 16px;
}

footer ul li::before {
    content: "\f105";
    position: absolute;
    left: 0;
    top: 8px;
    font: normal normal normal 12px/1 FontAwesome;
    color: var(--gold);
}

footer ul li + li {
    border-top: none;
}

footer ul li a {
    color: rgba(255, 255, 255, 0.75);
    text-decoration: none;
    font-size: 13px;
    transition: var(--transition);
}

footer ul li a:hover {
    text-decoration: none;
    color: var(--gold);
    padding-left: 4px;
}

footer .cntct .cntct-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 14px;
    gap: 12px;
}

footer .cntct .cntct-item i {
    color: var(--gold);
    font-size: 14px;
    width: 16px;
    text-align: center;
    margin-top: 3px;
    flex-shrink: 0;
}

footer .cntct a {
    color: rgba(255, 255, 255, 0.75);
    text-decoration: none;
    font-size: 13px;
    transition: var(--transition);
    display: inline;
}

footer .cntct a:hover {
    text-decoration: none;
    color: var(--gold);
}

footer .cntct p {
    color: rgba(255, 255, 255, 0.75);
    font-size: 13px;
    margin-bottom: 0;
    line-height: 1.6;
}

.br-clay { border-right: 1px solid rgba(255, 255, 255, 0.15); }
.bl-clay { border-left: 1px solid rgba(255, 255, 255, 0.15); }

footer .footer-bottom {
    background: rgba(0, 0, 0, 0.3);
    padding: 16px 0;
    margin-top: 10px;
    position: relative;
    width: 100%;
}

footer .footer-bottom p {
    margin-bottom: 0;
    text-transform: uppercase;
    text-align: left;
    font-size: 12px;
    color: rgba(255, 255, 255, 0.5);
    letter-spacing: 0.5px;
}

footer .footer-bottom .tp-nav ul { margin-bottom: 0; }

footer .footer-bottom .tp-nav ul li {
    display: inline-block;
    list-style: none;
    border-top: none;
    padding: 0;
}

footer .footer-bottom .tp-nav ul li::before { display: none; }

footer .footer-bottom .tp-nav ul li a {
    text-transform: uppercase;
    padding-right: 10px;
    padding-left: 10px;
    border-right: 1px solid rgba(255, 255, 255, 0.2);
    font-size: 12px;
    letter-spacing: 0.5px;
    color: rgba(255, 255, 255, 0.5);
}

footer .footer-bottom .tp-nav ul li a:hover {
    color: var(--gold);
}

footer .bdr-none { border-right: none !important; }

/* ========== HAMBURGER MENU BUTTON ========== */
.hamburger-btn {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 10px;
    z-index: 100000;
}

.hamburger-btn span {
    display: block;
    width: 28px;
    height: 3px;
    background: var(--primary-color);
    margin: 5px 0;
    transition: all 0.3s ease;
    border-radius: 2px;
}

.hamburger-btn.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 6px);
}

.hamburger-btn.active span:nth-child(2) {
    opacity: 0;
}

.hamburger-btn.active span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -7px);
}

/* ========== DROPDOWN TOGGLE ICON (desktop + mobile) ========== */
.dropdown-arrow {
    display: inline-block;
    margin-left: 6px;
    font-size: 10px;
    transition: transform 0.3s ease;
    opacity: 0.7;
}

/* Desktop: rotate on hover */
.nav-main > ul > li:hover > a .dropdown-arrow {
    transform: rotate(180deg);
    opacity: 1;
}

/* Mobile: rotate when submenu is open */
.nav-main > ul > li > a.arrow-active .dropdown-arrow {
    transform: rotate(180deg);
    opacity: 1;
    color: var(--gold);
}

/* ========== RESPONSIVE - TABLET (max-width: 991px) ========== */
@media (max-width: 991px) {
    /* Topbar */
    .topbar {
        padding: 7px 0;
    }

    .abcd {
        flex-wrap: nowrap;
    }

    .abcd li {
        padding: 2px 12px;
        font-size: 12px;
    }

    .abcd li a {
        font-size: 12px;
    }

    /* Logo row - 50/50 layout */
    .logo-row {
        padding: 0;
    }

    .logo-row-inner {
        flex-wrap: wrap;
    }

    .logo-row-inner .logo {
        flex: 0 0 50%;
        text-align: left;
        padding: 12px 0;
    }

    header .logo img {
        max-height: 50px;
        width: auto;
        height: auto;
    }

    .inner-pg-hd::before {
        display: none;
    }

    .law-image {
        display: none;
    }

    /* Nav collapses on tablet */
    .nav-main {
        flex: 0 0 50%;
        justify-content: flex-end;
        position: relative;
    }

    .hamburger-btn {
        display: block;
    }

    .nav-main > ul {
        display: none;
        position: absolute;
        top: 100%;
        right: 0;
        left: -100%;
        width: 200%;
        text-align: left;
        padding: 0;
        background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
        box-shadow: 0 6px 20px rgba(0, 0, 0, 0.25);
        z-index: 9999;
        flex-direction: column;
    }

    .nav-main > ul.nav-open {
        display: block;
    }

    .nav-main > ul > li {
        display: block;
        padding: 0;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }

    .nav-main > ul > li > a {
        display: block;
        padding: 12px 15px;
        font-size: 14px;
        color: var(--white);
    }

    .nav-main > ul > li > a::after {
        display: none;
    }

    .nav-main > ul > li:last-child {
        border-bottom: none;
    }

    .dropdown,
    .dropdown1 {
        position: static;
        width: 100%;
        display: none;
        background: rgba(0, 0, 0, 0.2);
        padding: 0;
        border-top: none;
        box-shadow: none;
        border-radius: 0;
    }

    .nav-main > ul > li:hover > .dropdown,
    .nav-main > ul > li:hover > .dropdown1 {
        display: none;
    }

    .nav-main ul li .dropdown.sub-open,
    .nav-main ul li .dropdown1.sub-open {
        display: block;
    }

    .dropdown li,
    .dropdown1 li {
        border-bottom: 1px solid rgba(255, 255, 255, 0.05) !important;
    }

    .dropdown a,
    .dropdown1 a {
        padding: 10px 20px !important;
        font-size: 13px !important;
    }

    /* Main Banner */
    .main-banner {
        min-height: 400px;
    }

    .main-banner .genhad {
        padding: 60px 0;
    }

    .main-banner .genhad h1 {
        font-size: 32px;
        max-width: 100%;
    }

    .main-banner .genhad p {
        font-size: 16px;
        max-width: 100%;
    }

    /* Section 2 */
    .section2 {
        padding: 50px 0 40px 0;
    }

    .same-hd {
        font-size: 26px;
    }

    /* Section 3 */
    .section3 {
        padding: 50px 0;
    }

    .sec3-top {
        margin-bottom: 40px;
    }

    .sec3-intro h2 {
        font-size: 28px;
    }

    .sec3-title {
        font-size: 32px;
    }

    .feature-card {
        margin-bottom: 20px;
    }

    .rht::after {
        display: none;
    }

    /* Section 4 */
    .section4 {
        padding: 50px 0;
    }

    .sec4-header {
        margin-bottom: 40px;
    }

    .sec4-title-area h2 {
        font-size: 32px;
    }

    .sec4-content {
        margin-bottom: 40px;
    }

    .sec4-left,
    .sec4-right {
        margin-bottom: 20px;
    }

    /* Inner Banner */
    .inner-banner {
        /* min-height: 220px; */
        padding: 15px;
    }

    .inner-banner .inner-banner-hd h2 {
        font-size: 32px;
    }

    /* Footer */
    footer .ft-main {
        flex-wrap: wrap;
    }

    footer .ft-col {
        width: 50%;
        margin-bottom: 30px;
    }

    footer .ft-about .logo {
        text-align: left;
    }

    .br-clay,
    .bl-clay {
        border: none;
    }

    footer .footer-bottom {
        position: static;
        margin-top: 10px;
    }

    footer .footer-bottom .row.d-flex {
        flex-wrap: wrap;
        text-align: center;
    }

    footer .footer-bottom .col-md-6 {
        width: 100%;
        margin-bottom: 5px;
    }

    footer .footer-bottom .pull-right {
        float: none !important;
        text-align: center;
    }

    footer .footer-bottom p {
        text-align: center;
        font-size: 11px;
    }

    /* Testimonials */
    .testi-carousel { padding: 0 40px; }
    .testimonials .clien-review { padding: 20px 15px; }
    .testi-prev { left: -5px; }
    .testi-next { right: -5px; }

    /* Partners */
    .partners .part-shw img { max-width: 100%; }

    /* General */
    .d-flex { flex-wrap: wrap; }

    img {
        max-width: 100%;
        height: auto;
    }

    .abt-educational .abt-lft img {
        float: none;
        width: 100%;
        margin-right: 0;
        max-width: 100%;
    }

    .abt-educational .abt-edu-descrip h3::before {
        width: 60px;
    }

    .bina-details ul li span {
        width: 100%;
        display: block;
    }

    .law-box {
        flex-direction: column;
        padding: 20px;
    }

    .pbpx-45 {
        padding-bottom: 0 !important;
    }

    /* Advocacy */
    .t-advocacy {
        padding: 50px 0;
    }

    .t-advocacy .advo .advocacy-des {
        min-height: auto;
    }
}

/* ========== RESPONSIVE - MOBILE (max-width: 767px) ========== */
@media (max-width: 767px) {
    /* Topbar - compact on mobile */
    .topbar {
        padding: 6px 0;
    }

    .abcd {
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: center;
        gap: 0;
    }

    .abcd li {
        padding: 2px 8px;
        border-right: 1px solid rgba(255,255,255,0.15);
        font-size: 11px;
    }

    .abcd li a {
        font-size: 11px;
    }

    .abcd li:first-child {
        width: 100%;
        text-align: center;
        border-right: none;
        padding-bottom: 4px;
        margin-bottom: 2px;
        border-bottom: 1px solid rgba(255,255,255,0.1);
    }

    /* Logo row + hamburger 50/50 */
    .logo-row-inner .logo {
        padding: 0px 0;
    }

    header .logo img {
        max-height: 75px;
        width: auto;
        height: auto;
    }

    .nav-main > ul > li > a {
        font-size: 13px;
        padding: 10px 15px;
    }

    .abcd li:first-child {
        margin-right: 0;
    }

    /* Main Banner */
    .main-banner {
        min-height: 350px;
    }

    .main-banner .genhad {
        padding: 50px 15px;
    }

    .main-banner .genhad h1 {
        font-size: 26px;
        line-height: 1.2;
    }

    .main-banner .genhad p {
        font-size: 14px;
    }

    /* Sections */
    .section2 {
        padding: 40px 0;
    }

    .section2 .row {
        flex-direction: column;
    }

    .section2 .row > .col-md-4 {
        margin-bottom: 15px;
    }

    .section2 .practice img {
        height: 150px;
    }

    .same-hd {
        font-size: 22px;
        margin-bottom: 40px;
    }

    .section3 {
        padding: 40px 0;
    }

    .sec3-intro h2,
    .sec3-title {
        font-size: 24px;
    }

    .sec3-top,
    .sec3-why {
        margin-bottom: 30px;
    }

    .feature-card {
        padding: 25px 20px;
    }

    .feature-icon {
        width: 60px;
        height: 60px;
        margin-bottom: 15px;
    }

    .feature-icon i {
        font-size: 24px;
    }

    .trust-statement {
        padding: 25px 20px;
    }

    .trust-statement i {
        font-size: 40px;
    }

    .trust-statement h3 {
        font-size: 20px;
    }

    .section4 {
        padding: 40px 0;
    }

    .sec4-title-area {
        flex-direction: column;
        gap: 10px;
    }

    .sec4-title-area h2 {
        font-size: 26px;
    }

    .sec4-intro-box,
    .sec4-right {
        padding: 25px;
        margin-bottom: 20px;
    }

    .sec4-intro-box i {
        font-size: 40px;
    }

    .commitment-card {
        padding: 25px 20px;
    }

    .section4 .for-usr h3 {
        font-size: 22px;
        line-height: 1.3;
    }

    /* Inner Banner */
    /* .inner-banner {
        min-height: 180px;
    } */

    .inner-banner .inner-banner-hd h2 {
        font-size: 24px;
    }

    .breadcrum ul li a {
        font-size: 12px;
        padding-left: 5px;
    }

    /* Content pages */
    .abt-educational {
        padding: 30px 0;
    }

    .abt-educational .abt-edu-descrip h3 {
        font-size: 20px;
    }

    .para h2 {
        font-size: 18px;
    }

    /* Footer */
    footer {
        padding: 40px 0 0;
    }

    footer .ft-col {
        width: 100%;
        margin-bottom: 25px;
    }

    footer .ft-about .logo {
        text-align: center;
    }

    footer .ft-about .logo img {
        max-width: 160px;
    }

    footer .ft-desc {
        text-align: center;
    }

    footer .ft-social {
        text-align: center;
    }

    footer .ft-heading {
        font-size: 16px;
    }

    footer .cntct a,
    footer .cntct p {
        font-size: 12px;
    }

    footer .footer-bottom .tp-nav ul li a {
        font-size: 10px;
        padding: 3px 6px;
    }

    /* Testimonials */
    .testimonials {
        padding: 40px 0 30px;
    }

    .testimonials .clien-review p {
        font-size: 14px;
        line-height: 1.8;
    }

    .testimonials .same-hd {
        font-size: 22px;
    }

    .testimonials .clien-review {
        padding: 10px 5px;
    }

    .testi-carousel {
        padding: 0 35px;
    }

    .testi-prev,
    .testi-next {
        width: 36px;
        height: 36px;
        font-size: 14px;
    }

    .testi-prev { left: -3px; }
    .testi-next { right: -3px; }

    .inner-banner {
        background-attachment: scroll;
    }

    .main-banner {
        background-attachment: scroll;
    }

    /* T-Advocacy */
    .t-advocacy {
        padding: 40px 0;
    }

    .t-advocacy .same-hd {
        font-size: 22px;
        margin-bottom: 30px;
    }

    .t-advocacy .advo .advocacy-des {
        min-height: auto;
    }

    .t-advocacy .advo img {
        height: 180px;
    }

    /* Law list */
    .law-list li {
        font-size: 14px;
    }

    .fs-25 {
        font-size: 18px;
    }

    /* Bina details */
    .bina-details {
        padding: 15px;
    }

    /* Partners */
    .partners {
        padding: 20px 0;
    }

    .inner-pg-hd {
        font-size: 20px;
    }
}
