* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --gold: #d9b37c;
    --gold-dark: #b08a55;
    --bg-dark: #0a0a0a;
    --text-white: #ffffff;
    --text-gray: #c0c0c0;
    --font-english: 'Cinzel', serif;
    --font-bengali: 'Noto Serif Bengali', serif;
    --font-sans: 'Inter', sans-serif;
    --font-signature: 'Alex Brush', cursive;
}

body {
    background-color: var(--bg-dark);
    color: var(--text-white);
    font-family: var(--font-bengali);
    overflow-x: hidden; 
    overflow-y: auto;
    scroll-behavior: smooth;
}

.hero-container {
    min-height: 100vh;
    width: 100%;
    display: flex;
    flex-direction: column;
    position: relative;
    background-color: var(--bg-dark);
}

body.home-page .hero-container::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background-image: 
        linear-gradient(to right, var(--bg-dark) 0%, var(--bg-dark) 35%, transparent 60%),
        url('hero section.webp');
    background-position: left center, right center;
    background-size: 100% 100%, auto 115%;
    background-repeat: no-repeat, no-repeat;
}

body.home-page:not(.fonts-ready) .hero-container::before {
    opacity: 0;
}

body.home-page.fonts-ready .hero-container::before {
    animation: loadFadeIn 1.5s ease-in-out 0.2s both;
}

/* Load Animations */
@keyframes loadFadeUp {
    0% { opacity: 0; transform: translateY(30px); }
    100% { opacity: 1; transform: translateY(0); }
}

@keyframes loadFadeIn {
    0% { opacity: 0; }
    100% { opacity: 1; }
}

@keyframes loadHeaderSlide {
    0% { opacity: 0; transform: translateY(-100%); }
    100% { opacity: 1; transform: translateY(0); }
}

@keyframes loadGraphicFade {
    0% { opacity: 0; transform: scale(0.8); }
    100% { opacity: 0.6; transform: scale(1); }
}

/* Header */
.header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 30px 80px;
    height: 120px;
    z-index: 1000;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: transparent;
    transition: transform 0.4s cubic-bezier(0.33, 1, 0.68, 1), background-color 0.3s ease, padding 0.3s ease, height 0.3s ease;
}

body.home-page:not(.fonts-ready) .header {
    opacity: 0;
    transform: translateY(-100%);
}

body.home-page.fonts-ready .header {
    animation: loadHeaderSlide 0.8s cubic-bezier(0.33, 1, 0.68, 1) 2.5s backwards;
}

.header.header-scrolled {
    background-color: #0d0f12; /* Solid dark background, no glassmorphism */
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    height: 90px;
    padding: 15px 80px;
}

.header.header-hidden {
    transform: translateY(-100%);
}



.logo-area {
    display: flex;
    align-items: center;
    gap: 15px;
}

.logo-img {
    width: 65px;
    height: 65px;
    border-radius: 50%;
    overflow: hidden;
    border: 1px solid var(--gold);
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #000;
}

.actual-logo {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.logo-text h1, .logo-text .logo-h1 {
    font-family: var(--font-english);
    font-size: 17px;
    font-weight: 600;
    line-height: 1.3;
    letter-spacing: 1.5px;
    color: var(--text-white);
}

.logo-text p {
    font-family: var(--font-english);
    color: var(--gold);
    font-size: 10px;
    letter-spacing: 2px;
    margin-top: 4px;
}

.main-nav ul {
    display: flex;
    list-style: none;
    gap: 35px;
}

.main-nav a {
    text-decoration: none;
    color: var(--text-white);
    font-size: 16px;
    transition: color 0.3s;
    font-family: var(--font-bengali);
    opacity: 0.9;
    white-space: nowrap;
}

.main-nav a:hover, .main-nav a.active {
    color: var(--gold);
}

.main-nav a.active {
    border-bottom: 1px solid var(--gold);
    padding-bottom: 5px;
}

.mobile-socials, .mobile-login-li {
    display: none;
}

.contact-btn a {
    text-decoration: none;
    color: var(--text-white);
    border: 1px solid rgba(217, 179, 124, 0.4);
    padding: 12px 24px;
    border-radius: 4px;
    font-family: var(--font-sans);
    font-size: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s;
    background: rgba(217, 179, 124, 0.05);
    white-space: nowrap;
}

.contact-btn i {
    color: var(--gold);
}

.contact-btn a:hover {
    background: rgba(217, 179, 124, 0.15);
    border-color: var(--gold);
}

/* Main Content */
.main-content {
    flex-grow: 1;
    display: flex;
    align-items: center;
    padding: 120px 80px 0 80px; /* Added 120px top padding to compensate for fixed header */
    position: relative;
}

.text-content {
    max-width: 650px;
    margin-top: -30px; /* Slight adjustment vertically */
}

body.home-page:not(.fonts-ready) .text-content .main-title,
body.home-page:not(.fonts-ready) .text-content .subtitle,
body.home-page:not(.fonts-ready) .signature-area {
    opacity: 0;
}

body.home-page.fonts-ready .text-content .main-title {
    animation: loadFadeUp 0.8s ease-out 0.2s both;
}

body.home-page.fonts-ready .text-content .subtitle {
    animation: loadFadeUp 0.8s ease-out 0.5s both;
}

body.home-page.fonts-ready .signature-area {
    animation: loadFadeUp 0.8s ease-out 0.8s both;
}

.main-title {
    font-size: 100px;
    line-height: 1.25;
    margin-bottom: 25px;
    font-weight: 700;
}

.main-title .line-1 {
    color: var(--text-white);
    display: block;
}

.main-title .line-2 {
    color: var(--gold);
    display: block;
}

.subtitle {
    font-size: 28px;
    color: var(--text-gray);
    line-height: 1.8;
    margin-bottom: 45px;
    font-family: var(--font-bengali);
    opacity: 0.9;
}

.signature-area {
    margin-top: 30px;
}

.signature {
    font-family: var(--font-signature);
    color: var(--gold);
    font-size: 35px;
    margin-bottom: 5px;
    transform: rotate(-3deg);
    font-weight: 400;
}

.designation {
    font-family: var(--font-sans);
    color: var(--text-gray);
    font-size: 14px;
    letter-spacing: 0.5px;
}

/* Scroll Indicator */
.scroll-indicator {
    position: absolute;
    right: 80px;
    bottom: 0px; 
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    z-index: 5;
}

.scroll-indicator span {
    font-family: var(--font-english);
    font-size: 14px;
    letter-spacing: 5px;
    color: var(--gold);
    writing-mode: vertical-rl;
    transform: rotate(180deg);
}

.scroll-indicator .line {
    width: 2px;
    height: 100px;
    background-color: rgba(217, 179, 124, 0.2);
    position: relative;
    border-radius: 2px;
    overflow: hidden;
}

.scroll-indicator .dot {
    width: 100%;
    height: 12px;
    background-color: var(--gold);
    border-radius: 6px;
    position: absolute;
    top: -15px;
    animation: scrollDown 2s ease-in-out infinite;
}

@keyframes scrollDown {
    0% { top: -15px; opacity: 0; }
    30% { opacity: 1; }
    100% { top: 100px; opacity: 0; }
}

/* Right Graphic Circular Scale Text Placeholder */
.right-graphic {
    position: absolute;
    right: 15px; /* Aligned vertically with SCROLL */
    top: calc(15% + 100px); /* Positioned higher above SCROLL, compensated for header */
    width: 150px;
    height: 150px;
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0.6;
}

body.home-page:not(.fonts-ready) .right-graphic {
    opacity: 0;
}

body.home-page.fonts-ready .right-graphic {
    animation: loadGraphicFade 1.2s cubic-bezier(0.33, 1, 0.68, 1) 1.5s both;
}

.circular-text {
    position: absolute;
    width: 100%;
    height: 100%;
    animation: rotateText 25s linear infinite;
}

.circular-text svg {
    width: 100%;
    height: 100%;
}

.circular-text text {
    font-family: var(--font-english);
    font-size: 11px;
    fill: var(--gold);
    letter-spacing: 2px;
}

.justice-scale {
    color: var(--gold);
    font-size: 35px;
}

@keyframes rotateText {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* --- Section 2: Practice Areas --- */
.practice-areas-section {
    min-height: 100vh;
    width: 100%;
    background-color: #f6f3eb; /* Light cream */
    color: #1a1a1a;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
    padding: 100px 80px;
}

.practice-container {
    width: 100%;
    min-height: 100%;
    display: flex;
    flex-direction: column;
    gap: 60px;
}

/* Top Half */
.practice-top {
    display: flex;
    justify-content: space-between;
    gap: 40px;
}

.practice-intro {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.section-label {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
}
.section-label span {
    font-family: var(--font-english);
    color: var(--gold-dark);
    font-size: 13px;
    letter-spacing: 2px;
}
.label-line {
    width: 60px;
    height: 1px;
    background-color: var(--gold-dark);
}

.practice-title {
    font-size: 60px;
    line-height: 1.25;
    margin-bottom: 20px;
    font-weight: 600;
}
.practice-title span {
    color: var(--gold-dark);
}
.practice-desc {
    font-size: 20px;
    line-height: 1.8;
    color: #555;
    margin-bottom: 30px;
}
.view-all-btn {
    text-decoration: none;
    color: var(--gold-dark);
    font-family: var(--font-bengali);
    font-size: 18px;
    display: flex;
    align-items: center;
    gap: 12px;
}
.view-all-btn i {
    width: 32px;
    height: 32px;
    border: 1px solid var(--gold-dark);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 12px;
    transition: 0.3s;
}
.view-all-btn:hover i {
    background: var(--gold-dark);
    color: white;
}

/* Featured Card */
.featured-card {
    flex: 1.4;
    background: #111317;
    border-radius: 12px;
    display: flex;
    overflow: hidden;
    color: white;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}
.featured-img {
    flex: 1;
    background-size: cover;
    background-position: center;
}
.featured-content {
    flex: 1.1;
    padding: 30px 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 25px;
}
.card-num {
    font-family: var(--font-english);
    color: var(--gold);
    font-size: 32px;
}
.card-icon {
    font-size: 35px;
    color: var(--gold);
    opacity: 0.8;
}
.featured-content h3 {
    font-size: 26px;
    margin-bottom: 15px;
    font-weight: 600;
}
.featured-content p {
    font-size: 14px;
    color: #aaa;
    line-height: 1.7;
    margin-bottom: 30px;
}
.card-link {
    color: var(--gold);
    text-decoration: none;
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 10px;
    opacity: 0.9;
    transition: 0.3s;
}
.card-link:hover {
    opacity: 1;
    gap: 15px;
}

/* Bottom Cards Grid */
.cards-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 15px;
}

.service-card {
    background: #faf8f2;
    border-radius: 10px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    box-shadow: 0 4px 15px rgba(0,0,0,0.04);
}
.card-img {
    height: 160px; /* fixed height for beautiful image preview */
    background-size: cover;
    background-position: center;
    position: relative;
    padding: 15px;
    display: flex;
    justify-content: space-between;
}
.card-img::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: linear-gradient(180deg, rgba(0,0,0,0.7) 0%, rgba(0,0,0,0.2) 100%);
}
.card-img > * {
    position: relative;
    z-index: 2;
}
.card-img .card-num {
    font-size: 22px;
}
.card-img .card-icon {
    font-size: 22px;
}

.card-info {
    padding: 15px 20px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}
.card-info h4 {
    font-size: 16px;
    margin-bottom: 8px;
    color: #222;
    font-weight: 600;
}
.card-info p {
    font-size: 12px;
    color: #666;
    line-height: 1.6;
    flex-grow: 1;
}
.icon-link {
    color: var(--gold-dark);
    text-decoration: none;
    margin-top: 10px;
    width: 25px; height: 25px;
    border: 1px solid rgba(176, 138, 85, 0.4);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 10px;
    transition: 0.3s;
}
.icon-link:hover {
    background: var(--gold-dark);
    color: white;
}

/* Footer Area */
.section-footer {
    height: 8%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: rgba(0,0,0,0.03);
    padding: 0 40px;
    border-radius: 8px;
}
.footer-left {
    display: flex;
    align-items: center;
    gap: 15px;
}
.quote-icon {
    font-size: 45px;
    color: var(--gold-dark);
    font-family: Georgia, serif;
    line-height: 0;
    position: relative;
    top: 15px;
}
.quote-text {
    font-size: 16px;
    font-weight: 600;
    color: #222;
}
.footer-mid {
    color: #777;
    font-size: 13px;
    letter-spacing: 0.5px;
}
.footer-right .signature {
    color: #1a1a1a;
    font-size: 35px;
    margin: 0;
    transform: rotate(-3deg);
}

/* --- Section 3: Why Choose Us --- */
.why-choose-section {
    min-height: 100vh;
    width: 100%;
    display: flex;
    flex-direction: column;
}

/* Top Part */
.why-choose-top {
    display: flex;
    width: 100%;
}

.why-left {
    flex: 1.1;
    background-color: #0d0f12;
    padding: 80px 80px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.why-title {
    font-size: 45px;
    line-height: 1.25;
    margin-bottom: 20px;
    color: white;
    font-weight: 600;
}
.why-title span {
    color: var(--gold-dark);
}
.why-desc {
    color: #999;
    font-size: 15px;
    line-height: 1.7;
    margin-bottom: 30px;
}

.features-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
}
.feature-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    padding-bottom: 15px;
    border-bottom: 1px solid rgba(255,255,255,0.05);
}
.feature-item:last-child {
    border-bottom: none;
    padding-bottom: 0;
}
.feature-icon {
    color: var(--gold-dark);
    font-size: 22px;
    margin-top: 3px;
    width: 30px;
    text-align: center;
}
.feature-text h4 {
    color: white;
    font-size: 17px;
    margin-bottom: 5px;
    font-weight: 500;
}
.feature-text p {
    color: #888;
    font-size: 13px;
    line-height: 1.5;
}

.why-mid {
    flex: 0.9;
    background-size: cover;
    background-position: center;
    position: relative;
}

.why-right {
    flex: 1;
    background-color: #eeebe1;
    padding: 80px 80px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
}
.why-right::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: url('https://images.unsplash.com/photo-1589829085413-56de8ae18c73?q=80&w=800&auto=format&fit=crop') center/cover;
    opacity: 0.03;
    pointer-events: none;
}
.quote-container {
    position: relative;
    z-index: 2;
}
.quote-container .quote-icon {
    font-size: 60px;
    color: var(--gold-dark);
    font-family: Georgia, serif;
    line-height: 0.5;
    display: block;
    margin-bottom: 30px;
}
.quote-container .quote-text {
    font-size: 28px;
    line-height: 1.6;
    color: #1a1a1a;
    font-weight: 600;
    margin-bottom: 40px;
}
.quote-line {
    width: 60px;
    height: 1px;
    background-color: var(--gold-dark);
    margin-bottom: 30px;
}
.quote-container .signature {
    font-family: var(--font-signature);
    font-size: 45px;
    margin-bottom: 10px;
    color: var(--gold-dark);
    transform: rotate(-3deg);
}
.designation {
    font-family: var(--font-english);
    font-size: 11px;
    letter-spacing: 1px;
    color: #555;
}

/* Bottom Timeline */
.timeline-area {
    background-color: #0d0f12;
    padding: 60px 80px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    border-top: 1px solid rgba(255,255,255,0.05);
}
.timeline-title {
    color: var(--gold);
    font-size: 28px;
    margin-bottom: 40px;
    font-weight: 600;
    text-align: center;
}
.timeline-container {
    position: relative;
    width: 100%;
}
.timeline-track {
    position: absolute;
    top: 35px; /* middle of icons */
    left: 40px;
    right: 40px;
    height: 1px;
    background: repeating-linear-gradient(90deg, var(--gold) 0, var(--gold) 5px, transparent 5px, transparent 10px);
    opacity: 0.3;
}
.timeline-nodes {
    display: flex;
    justify-content: space-between;
    position: relative;
    z-index: 2;
}
.timeline-node {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    width: 15%;
}

.node-icon {
    width: 70px;
    height: 70px;
    border: 1px solid var(--gold);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #0d0f12;
    color: var(--gold);
    font-size: 26px;
    margin-bottom: 15px;
    box-shadow: 0 0 15px rgba(217, 179, 124, 0.1);
    transition: all 0.3s ease;
}
.node-year {
    font-family: var(--font-english);
    color: var(--gold);
    font-size: 18px;
    margin-bottom: 10px;
    font-weight: 600;
}
.node-desc {
    color: #bbb;
    font-size: 13px;
    line-height: 1.5;
}

/* --- Section 4: Featured Cases & Testimonials --- */
.cases-section {
    min-height: 100vh;
    width: 100%;
    background-color: #f6f3eb; /* Match section 2 */
    color: #1a1a1a;
    display: flex;
    flex-direction: column;
    padding: 100px 80px;
    gap: 80px;
}

/* Top Row: Featured Cases */
.cases-top-row {
    display: flex;
    gap: 50px;
    width: 100%;
}
.cases-intro {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}
.cases-title {
    font-size: 38px;
    line-height: 1.3;
    margin-bottom: 25px;
    color: #111;
}
.cases-title span {
    color: var(--gold-dark);
}
.cases-desc {
    color: #555;
    font-size: 15px;
    line-height: 1.7;
    margin-bottom: 40px;
}
.cases-grid {
    flex: 2.2;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}
.case-card {
    background: #faf8f2;
    border-radius: 8px;
    overflow: hidden;
    border: 1px solid rgba(0,0,0,0.05);
    display: flex;
    flex-direction: column;
}
.case-img {
    height: 180px;
    background-size: cover;
    background-position: center;
    position: relative;
    display: flex;
    align-items: flex-end;
}
.case-tag {
    background: rgba(0,0,0,0.6);
    color: #ddd;
    font-size: 11px;
    padding: 6px 12px;
    margin: 15px;
    border-radius: 4px;
}
.case-content {
    padding: 25px 20px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}
.case-content h3 {
    font-size: 17px;
    color: #222;
    margin-bottom: 12px;
    line-height: 1.4;
}
.case-content p {
    font-size: 13px;
    color: #666;
    line-height: 1.6;
    margin-bottom: 25px;
    flex-grow: 1;
}
.case-meta {
    display: flex;
    flex-direction: column;
    gap: 8px;
    border-top: 1px solid rgba(0,0,0,0.05);
    padding-top: 15px;
}
.meta-item {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #777;
    font-size: 12px;
}
.meta-item i {
    color: var(--gold-dark);
}

/* Bottom: Client Stories */
.client-stories-container {
    background-color: #111317;
    border-radius: 12px;
    padding: 50px;
    display: flex;
    gap: 50px;
    color: white;
}
.stories-intro {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding-bottom: 20px;
}
.stories-title {
    font-size: 32px;
    line-height: 1.3;
    margin-bottom: 30px;
    color: white;
}
.stories-grid {
    flex: 2.2;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}
.story-card {
    background-color: #1a1d24;
    border-radius: 8px;
    padding: 25px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}
.story-text-area {
    position: relative;
    margin-bottom: 30px;
}
.client-img {
    width: 60px;
    height: 60px;
    border-radius: 8px;
    object-fit: cover;
    float: left;
    margin-right: 15px;
    margin-bottom: 10px;
}
.quote-mark {
    color: var(--gold);
    font-size: 24px;
    margin-bottom: 10px;
    display: block;
}
.story-text {
    font-size: 13px;
    color: #bbb;
    line-height: 1.6;
    clear: none;
}
.story-footer {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
}
.client-info h4 {
    color: var(--gold);
    font-size: 14px;
    margin-bottom: 4px;
}
.client-info p {
    color: #777;
    font-size: 12px;
}
.stars i {
    color: var(--gold);
    font-size: 10px;
    margin-left: 2px;
}

/* --- Section 5: Legal Insights & Consultation --- */
.insights-section {
    width: 100%;
    background-color: #f6f3eb; /* Match section 2 */
    color: #1a1a1a;
    display: flex;
    flex-direction: column;
    padding: 100px 80px;
    gap: 50px;
}

/* Insights Header */
.insights-header-row {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    width: 100%;
}
.insights-intro {
    flex: 1;
}
.insights-title {
    font-size: 38px;
    line-height: 1.3;
    margin-bottom: 20px;
    color: #111;
}
.insights-title span {
    color: var(--gold-dark);
}
.insights-desc {
    color: #555;
    font-size: 15px;
    line-height: 1.7;
}
.insights-tabs {
    display: flex;
    gap: 0;
    border: 1px solid rgba(0,0,0,0.1);
    border-radius: 4px;
    overflow: hidden;
}
.tab-btn {
    background: transparent;
    border: none;
    padding: 12px 25px;
    font-family: var(--font-bengali);
    font-size: 14px;
    color: #444;
    cursor: pointer;
    border-right: 1px solid rgba(0,0,0,0.1);
    transition: 0.3s;
}
.tab-btn:last-child {
    border-right: none;
}
.tab-btn.active {
    background: #111317;
    color: var(--gold);
}
.tab-btn:hover:not(.active) {
    background: rgba(0,0,0,0.05);
}
.filter-btn {
    padding: 12px 20px;
    color: var(--gold-dark);
}

/* Insights Grid */
.insights-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}
.insight-card {
    background: #faf8f2;
    border-radius: 8px;
    overflow: hidden;
    border: 1px solid rgba(0,0,0,0.05);
    display: flex;
    flex-direction: column;
}
.insight-img {
    height: 180px;
    background-size: cover;
    background-position: center;
    position: relative;
    display: flex;
    align-items: flex-end;
}
.insight-tag {
    background: rgba(0,0,0,0.8);
    color: var(--gold);
    font-size: 11px;
    padding: 6px 12px;
    margin: 15px;
    border-radius: 4px;
}
.insight-content {
    padding: 25px 20px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}
.insight-content h3 {
    font-size: 18px;
    color: #222;
    margin-bottom: 12px;
    line-height: 1.4;
}
.insight-content p {
    font-size: 13px;
    color: #666;
    line-height: 1.6;
    margin-bottom: 25px;
    flex-grow: 1;
}
.insight-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid rgba(0,0,0,0.05);
    padding-top: 15px;
}
.insight-footer .date {
    color: #777;
    font-size: 12px;
    display: flex;
    align-items: center;
    gap: 8px;
}
.insight-footer .date i {
    color: var(--gold-dark);
}
.link-arrow {
    color: var(--gold-dark);
    font-size: 14px;
}

/* Consultation Banner */
.consultation-banner {
    background: linear-gradient(90deg, rgba(17,19,23,0.1) 0%, rgba(17,19,23,0.95) 25%, rgba(17,19,23,0.9) 70%, rgba(17,19,23,0.5) 100%), url('consultation-image.webp');
    background-size: cover;
    background-position: center;
    border-radius: 12px;
    padding: 60px 240px 60px 300px; /* Right padding set to 240px */
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: white;
    margin-top: 20px;
}
.consult-left {
    flex: 1;
}
.consult-title {
    font-size: 32px;
    margin-bottom: 15px;
}
.consult-desc {
    color: #bbb;
    font-size: 14px;
    margin-bottom: 25px;
    line-height: 1.6;
}
.consult-features {
    display: flex;
    gap: 25px;
}
.consult-features span {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    color: #ddd;
}
.consult-features span i {
    color: var(--gold);
}
.consult-right {
    display: flex;
    gap: 20px;
}
.contact-box {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 20px 25px;
    border-radius: 8px;
}
.contact-box > i {
    font-size: 24px;
    color: var(--gold);
}
.contact-info h4 {
    font-size: 18px;
    margin-bottom: 5px;
}
.contact-info p {
    font-size: 12px;
    color: #bbb;
}
.outline-box {
    border: 1px solid rgba(176, 138, 85, 0.3);
    background: rgba(0,0,0,0.3);
}
.outline-box .contact-info h4 {
    font-family: var(--font-english);
    color: white;
}
.solid-box {
    background-color: var(--gold-dark);
    cursor: pointer;
    transition: 0.3s;
}
.solid-box > i, .solid-box .contact-info h4, .solid-box .contact-info p, .solid-box .arrow-icon {
    color: #fff;
}
.solid-box:hover {
    background-color: #9a7848;
}
.arrow-icon {
    margin-left: 10px;
}

/* --- FOOTER --- */
.site-footer {
    background-color: #0d0f12;
    color: #bbb;
    padding: 80px 80px 30px 80px;
}
.footer-container {
    width: 100%;
}
.footer-grid {
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
    gap: 40px;
    margin-bottom: 60px;
}

/* Brand Column */
.brand-col .footer-logo {
    margin-bottom: 25px;
}
.brand-col .logo-area {
    margin-bottom: 0;
}
.brand-desc {
    font-size: 15px;
    line-height: 1.8;
    margin-bottom: 30px;
    color: #999;
    max-width: 330px;
}
.social-links {
    display: flex;
    gap: 15px;
}
.social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border: 1px solid rgba(176, 138, 85, 0.4);
    border-radius: 50%;
    color: var(--gold-dark);
    text-decoration: none;
    transition: 0.3s;
}
.social-links a:hover {
    background: var(--gold-dark);
    color: #111;
}

/* Links Columns */
.footer-title {
    color: var(--gold);
    font-size: 18px;
    margin-bottom: 30px;
    font-weight: 500;
}
.links-col ul {
    list-style: none;
    padding: 0;
}
.links-col ul li {
    margin-bottom: 15px;
}
.links-col ul li a {
    color: #ccc;
    text-decoration: none;
    font-size: 16px;
    transition: 0.3s;
    display: flex;
    align-items: center;
    gap: 12px;
}
.links-col ul li a i {
    color: var(--gold-dark);
    font-size: 10px;
}
.links-col ul li a:hover {
    color: var(--gold);
}

/* Contact Column */
.contact-list {
    list-style: none;
    padding: 0;
}
.contact-list li {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid rgba(255,255,255,0.05);
}
.contact-list li:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}
.contact-list li i {
    color: var(--gold-dark);
    font-size: 16px;
    margin-top: 4px;
}
.contact-list li p {
    font-size: 16px;
    color: #ccc;
    line-height: 1.6;
}

/* Footer Bottom */
.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255,255,255,0.05);
    font-size: 13px;
    color: #888;
}
.footer-bottom-links {
    display: flex;
    align-items: center;
    gap: 15px;
}
.footer-bottom-links a {
    color: #888;
    text-decoration: none;
    transition: 0.3s;
}
.footer-bottom-links a:hover {
    color: var(--gold);
}
.footer-bottom-links .divider {
    color: #444;
}

/* =========================================================================
   ABOUT US PAGE STYLES
   ========================================================================= */

/* --- Hero Section --- */
.about-hero {
    min-height: unset !important;
    height: auto !important;
    padding-bottom: 60px;
    background-image: none !important;
    background-color: #0d0f12 !important;
    display: flex;
    flex-direction: column;
    position: relative;
    z-index: 20;
    overflow: hidden;
}

/* Hide the stats-bar on inner pages (about, services, etc.) */
.about-hero .stats-bar-wrapper,
.consult-hero .stats-bar-wrapper,
.services-hero .stats-bar-wrapper,
.exp-hero .stats-bar-wrapper,
.blog-hero .stats-bar-wrapper,
.contact-hero .stats-bar-wrapper {
    display: none;
}
.about-hero-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding-top: 180px; /* Increased to clear fixed header */
    color: white;
}
.about-main-title {
    font-size: 48px;
    margin-bottom: 15px;
}
.about-main-title span {
    color: var(--gold);
}
.about-subtitle {
    font-size: 15px;
    color: #ccc;
    max-width: 450px;
    line-height: 1.6;
    margin-top: 20px;
}
.title-separator {
    color: var(--gold-dark);
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 10px;
}
.title-separator::before,
.title-separator::after {
    content: '';
    display: block;
    width: 30px;
    height: 1px;
    background-color: var(--gold-dark);
}
.text-center {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}
.section-header.light-text h2 {
    color: white;
}

/* --- Intro Section --- */
.about-intro-section {
    display: flex;
    padding: 100px 80px;
    gap: 60px;
    background-color: #faf8f2;
    align-items: center;
}
.intro-image {
    flex: 1;
    position: relative;
}
.intro-image .image-wrapper {
    width: 100%;
    height: 450px;
    background-size: cover;
    background-position: center;
    border-radius: 8px;
    position: relative;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}
.intro-overlay-logo {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: rgba(17, 19, 23, 0.85);
    padding: 30px 40px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    gap: 20px;
    color: var(--gold);
    box-shadow: 0 0 0 1px rgba(176, 138, 85, 0.3);
}
.intro-overlay-logo i {
    font-size: 32px;
}
.intro-overlay-logo h3 {
    font-size: 20px;
    color: white;
    margin-bottom: 5px;
}
.intro-overlay-logo p {
    font-size: 11px;
    color: var(--gold);
}
.floating-badge {
    position: absolute;
    bottom: -25px;
    right: -25px;
    background: #111317;
    color: white;
    padding: 20px;
    border-radius: 8px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    border: 1px solid var(--gold-dark);
}
.floating-badge i {
    color: var(--gold);
    font-size: 24px;
}
.floating-badge p {
    font-size: 12px;
    text-align: center;
}
.intro-text {
    flex: 1;
}
.intro-text h2 {
    font-size: 36px;
    line-height: 1.3;
    margin-bottom: 25px;
    color: #111;
}
.intro-text p {
    font-size: 15px;
    line-height: 1.8;
    color: #555;
    margin-bottom: 35px;
}

/* --- Stats Section --- */
.about-stats-section {
    background-color: #111317;
    padding: 60px 80px;
    color: white;
}
.stats-grid {
    display: flex;
    justify-content: space-between;
    align-items: center;
    text-align: center;
    max-width: 1200px;
    margin: 0 auto;
}
.about-stats-section .stat-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}
.stat-item i {
    color: var(--gold);
    font-size: 32px;
    margin-bottom: 10px;
}
.stat-item h3 {
    font-size: 28px;
    font-weight: 700;
}
.stat-item p {
    font-size: 14px;
    color: #bbb;
}

/* --- Core Values Section --- */
.core-values-section {
    background-color: #f6f3eb;
    padding: 100px 80px;
}
.section-header {
    margin-bottom: 60px;
}
.section-header h2 {
    font-size: 32px;
    color: #111;
    margin-bottom: 15px;
}
.values-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}
.value-card {
    background: white;
    padding: 40px 30px;
    border-radius: 8px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0,0,0,0.03);
    transition: 0.3s;
    border: 1px solid rgba(0,0,0,0.05);
}
.value-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.08);
}
.value-card .icon-circle {
    width: 60px;
    height: 60px;
    background: #f6f3eb;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    color: var(--gold-dark);
    font-size: 24px;
    transition: 0.3s;
}
.value-card:hover .icon-circle {
    background: var(--gold-dark);
    color: white;
}
.value-card h3 {
    font-size: 18px;
    color: #222;
    margin-bottom: 15px;
}
.value-card p {
    font-size: 14px;
    color: #666;
    line-height: 1.6;
}

/* --- Journey Timeline Section --- */
.journey-section {
    background-color: #0d0f12;
    padding: 100px 80px;
    color: white;
}
.journey-timeline {
    position: relative;
    display: flex;
    justify-content: space-between;
    margin-top: 80px;
}
.journey-track {
    position: absolute;
    top: 61px; /* middle of icon (year height + half icon height) */
    left: 40px;
    right: 40px;
    height: 1px;
    background: repeating-linear-gradient(90deg, var(--gold) 0, var(--gold) 5px, transparent 5px, transparent 10px);
    z-index: 1;
}
.journey-node {
    position: relative;
    z-index: 2;
    flex: 1;
    text-align: center;
    padding: 0 15px;
}
.node-year {
    color: var(--gold);
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 15px;
}
.journey-node .node-icon {
    width: 60px;
    height: 60px;
    background: #111317;
    border: 1px solid var(--gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    color: var(--gold);
    font-size: 20px;
    box-shadow: 0 0 10px rgba(176,138,85,0.2);
}
.journey-node h3 {
    font-size: 16px;
    color: white;
    margin-bottom: 10px;
}
.journey-node p {
    font-size: 12px;
    color: #bbb;
    line-height: 1.6;
}

/* --- Why Choose Us --- */
.why-choose-us-section {
    background-color: #faf8f2;
    padding: 100px 80px;
}
.why-choose-content {
    display: flex;
    gap: 50px;
    align-items: center;
}
.why-list {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 20px;
}
.why-item {
    display: flex;
    align-items: center;
    gap: 15px;
    background: white;
    padding: 15px 25px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.02);
    border-left: 3px solid var(--gold);
}
.why-item i {
    color: var(--gold-dark);
    font-size: 20px;
}
.why-item p {
    font-size: 15px;
    color: #444;
    font-weight: 500;
}
.why-image {
    flex: 1.2;
}
.why-image img {
    width: 100%;
    max-height: 450px;
    object-fit: cover;
    border-radius: 12px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.1);
}

/* --- CTA Banner --- */
.about-cta-section {
    background-color: #f6f3eb; /* Matches footer background top transition */
    padding: 0 80px 80px 80px;
}
.cta-banner {
    background: linear-gradient(to right, #0d0f12, #1a1d24);
    border-radius: 12px;
    padding: 50px 60px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.cta-left {
    display: flex;
    align-items: center;
    gap: 30px;
}
.cta-icon {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background: rgba(176,138,85,0.1);
    color: var(--gold);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    border: 1px solid rgba(176,138,85,0.3);
}
.cta-text h2 {
    color: var(--gold);
    font-size: 24px;
    margin-bottom: 8px;
}
.cta-text p {
    color: #ccc;
    font-size: 14px;
}
.btn-primary {
    background: var(--gold);
    color: #111;
    border: none;
    border-radius: 4px;
    text-decoration: none;
    font-weight: 600;
    font-family: var(--font-bengali);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px 28px;
    transition: all 0.3s ease;
    cursor: pointer;
}
.btn-primary:hover {
    background: var(--gold-dark);
    color: #111;
}
.cta-btn {
    padding: 15px 30px;
    font-size: 16px;
    display: flex;
    align-items: center;
    gap: 10px;
}

/* Stats Bar */
.stats-bar-wrapper {
    width: 100%;
    display: flex;
    justify-content: flex-start;
    z-index: 10;
    padding: 0 80px;
    margin-top: auto;
    margin-bottom: 45px;
}

body.home-page:not(.fonts-ready) .stats-bar-wrapper {
    opacity: 0;
}

body.home-page.fonts-ready .stats-bar-wrapper {
    animation: loadFadeUp 0.8s ease-out 1.8s both;
}

.stats-bar {
    width: 100%;
    max-width: 1000px;
    height: 110px;
    border: 1px solid rgba(217, 179, 124, 0.2);
    border-radius: 12px;
    background: linear-gradient(180deg, rgba(15,15,15,0.9) 0%, rgba(5,5,5,0.97) 100%);
    backdrop-filter: blur(8px);
    display: flex;
    align-items: center;
    justify-content: space-around;
    padding: 0 40px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.5);
}

.stats-bar .stat-item {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 20px;
}

.stat-item .icon {
    font-size: 32px;
    color: var(--gold);
    width: 45px;
    display: flex;
    justify-content: center;
}

.stat-text h3 {
    font-size: 30px;
    font-family: var(--font-sans);
    font-weight: 500;
    margin-bottom: 3px;
    color: var(--text-white);
}

.stat-text p {
    font-size: 15px;
    color: var(--text-gray);
    font-family: var(--font-bengali);
}

.divider {
    width: 1px;
    height: 60px;
    background-color: rgba(255,255,255,0.08);
}

/* Responsive adjustments if needed, though strictly requested for 100vh perfectly */
@media (max-width: 1300px) {
    .main-title { font-size: 55px; }
    .right-graphic { right: 120px; width: 200px; height: 200px; }
    .stats-bar { margin: 0 40px 30px 40px; }
    .header { padding: 20px 40px; }
    .main-content { padding: 0 40px; }
    .scroll-indicator { right: 40px; }
}

/* =========================================================================
   SERVICES PAGE STYLES
   ========================================================================= */

/* --- Hero Section --- */
.services-hero {
    min-height: unset !important;
    height: auto !important;
    padding-bottom: 60px;
    display: flex;
    flex-direction: column;
    background-image: linear-gradient(rgba(17, 19, 23, 0.8), rgba(17, 19, 23, 0.9)), url('amader seba top container image.webp');
    background-position: center;
    background-size: cover;
}
.services-hero-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 160px 80px 0 80px;
    color: white;
}
.breadcrumb {
    font-size: 13px;
    color: #888;
    margin-bottom: 30px;
}
.breadcrumb a {
    color: var(--gold);
    text-decoration: none;
}
.breadcrumb i {
    font-size: 10px;
    margin: 0 10px;
}
.services-main-title {
    font-size: 48px;
    line-height: 1.2;
    margin-bottom: 15px;
    font-weight: 700;
}
.services-main-title span {
    color: var(--gold);
    font-size: 54px;
}
.title-separator.left-aligned {
    justify-content: flex-start;
    margin-bottom: 25px;
}
.services-subtitle {
    font-size: 15px;
    color: #ccc;
    line-height: 1.8;
    max-width: 650px;
}

/* --- Services Grid Section --- */
.services-grid-section {
    background-color: #faf8f2;
    padding: 100px 80px;
}
.services-grid-section .section-header {
    margin-bottom: 60px;
}
.section-desc {
    color: #666;
    font-size: 15px;
}
.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}
.service-card {
    background: white;
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.03);
    border: 1px solid rgba(0,0,0,0.04);
    transition: all 0.3s ease;
}
.service-card:hover {
    box-shadow: 0 15px 35px rgba(0,0,0,0.06);
    transform: translateY(-5px);
}
.service-header {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 25px;
}
.service-icon {
    width: 60px;
    height: 60px;
    background: #111317;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold);
    font-size: 24px;
}
.service-card h3 {
    font-size: 20px;
    color: #111;
}
.service-card p {
    font-size: 14.5px;
    color: #555;
    line-height: 1.7;
    margin-bottom: 30px;
}
.service-link {
    color: var(--gold-dark);
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: color 0.3s;
}
.service-link:hover {
    color: #0d0f12;
}

/* --- Why Choose Compact --- */
.why-choose-compact {
    background: #111317;
    padding: 60px 80px;
    color: white;
    text-align: center;
}
.compact-title {
    font-size: 28px;
    margin-bottom: 50px;
    color: white;
}
.compact-features {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    max-width: 1200px;
    margin: 0 auto;
}
.compact-item {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
    position: relative;
}
.compact-item:not(:last-child)::after {
    content: '';
    position: absolute;
    right: 0;
    top: 10px;
    height: 40px;
    width: 1px;
    background: rgba(255,255,255,0.1);
}
.compact-item i {
    color: var(--gold);
    font-size: 32px;
}
.compact-item p {
    font-size: 14px;
    color: #bbb;
    line-height: 1.5;
}

/* --- CTA Section --- */
.services-cta-section {
    background-color: #faf8f2;
    padding: 80px;
}
.services-cta-container {
    background: #fdfdf9;
    border: 1px solid rgba(176,138,85,0.2);
    border-radius: 12px;
    padding: 40px 60px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: 0 10px 30px rgba(0,0,0,0.03);
}
.cta-card {
    display: flex;
    align-items: center;
    gap: 20px;
}
.cta-icon-box.dark-icon {
    width: 60px;
    height: 60px;
    background: #111317;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold);
    font-size: 24px;
}
.cta-info p {
    color: #555;
    font-size: 13px;
    margin-bottom: 5px;
}
.cta-info h4 {
    font-size: 26px;
    color: #111;
}
.cta-info .dark-p {
    font-size: 16px;
    font-weight: 600;
    color: #111;
    margin-bottom: 2px;
}
.cta-info .small-p {
    font-size: 12px;
    color: #777;
    margin-bottom: 0;
}
.cta-divider {
    width: 1px;
    height: 60px;
    background: rgba(0,0,0,0.1);
}
.cta-action-btn {
    background: var(--gold);
    color: #111;
    border: none;
    padding: 12px 25px;
    border-radius: 4px;
    font-weight: 600;
    margin-left: 30px;
}
.cta-action-btn:hover {
    background: var(--gold-dark);
}

/* =========================================================================
   EXPERIENCE PAGE STYLES
   ========================================================================= */

/* --- Hero Section --- */
.exp-hero {
    min-height: unset !important;
    height: auto !important;
    padding-bottom: 100px;
    display: flex;
    flex-direction: column;
    background-image: linear-gradient(rgba(17, 19, 23, 0.75), rgba(17, 19, 23, 0.95)), url('amader oviggota top container image.webp');
    background-position: center;
    background-size: cover;
}
.exp-hero-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 160px 80px 0 80px;
    color: white;
}
.exp-main-title {
    font-size: 48px;
    line-height: 1.2;
    margin-bottom: 15px;
    font-weight: 700;
}
.exp-main-title span {
    color: var(--gold);
    font-size: 54px;
}
.exp-subtitle {
    font-size: 15px;
    color: #ccc;
    line-height: 1.8;
    max-width: 650px;
}

/* --- Stats Section --- */
.exp-stats-section {
    background-color: #f6f3eb;
    padding: 0 80px 60px 80px;
}
.exp-stats-container {
    background: white;
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.12);
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 25px 40px;
    margin-top: -60px;
    position: relative;
    z-index: 10;
}
.exp-stat-box {
    text-align: center;
    flex: 1;
    padding: 0 10px;
}
.exp-stat-box i {
    color: var(--gold-dark);
    font-size: 24px;
    margin-bottom: 8px;
}
.exp-stat-box h3 {
    font-size: 24px;
    color: #111;
    margin-bottom: 3px;
}
.exp-stat-box h4 {
    font-size: 13px;
    color: #333;
    margin-bottom: 3px;
    font-weight: 600;
}
.exp-stat-box p {
    font-size: 11px;
    color: #777;
    line-height: 1.4;
}
.exp-stat-divider {
    width: 1px;
    background: rgba(0,0,0,0.05);
    margin: 0 15px;
}

/* --- Areas of Experience --- */
.exp-areas-section {
    background-color: #faf8f2;
    padding: 80px;
}
.exp-areas-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}
.exp-area-card {
    background: #0d0f12;
    color: white;
    padding: 40px 30px;
    border-radius: 8px;
    text-align: center;
    transition: 0.3s;
    border: 1px solid rgba(176,138,85,0.2);
}
.exp-area-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.1);
    border-color: var(--gold);
}
.exp-area-icon {
    font-size: 36px;
    color: var(--gold);
    margin-bottom: 20px;
}
.exp-area-card h3 {
    font-size: 18px;
    margin-bottom: 15px;
}
.exp-area-card p {
    font-size: 13px;
    color: #aaa;
    line-height: 1.6;
}

/* --- Notable Experiences --- */
.notable-exp-section {
    background-color: #f6f3eb;
    padding: 80px;
}
.notable-exp-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}
.notable-item {
    background: white;
    padding: 25px 30px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    gap: 20px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.02);
}
.notable-icon {
    width: 50px;
    height: 50px;
    background: #111317;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold);
    font-size: 20px;
    flex-shrink: 0;
}
.notable-text {
    flex-grow: 1;
}
.notable-text h3 {
    font-size: 16px;
    color: #111;
    margin-bottom: 5px;
}
.notable-text p {
    font-size: 13px;
    color: #666;
}
.success-badge {
    background: #e8f5e9;
    color: #2e7d32;
    padding: 6px 15px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
}

/* --- Trust Banner --- */
.trust-banner-section {
    padding: 0 80px 80px 80px;
    background: #f6f3eb;
}
.trust-banner-container {
    background: linear-gradient(to right, #0a0d14, #121620);
    border-radius: 12px;
    padding: 50px 60px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border: 1px solid rgba(176,138,85,0.2);
    position: relative;
    overflow: hidden;
}
.trust-banner-container::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    box-shadow: inset 0 0 50px rgba(176,138,85,0.05);
    pointer-events: none;
}
.trust-left {
    display: flex;
    align-items: center;
    gap: 30px;
    z-index: 2;
}
.trust-icon {
    font-size: 48px;
    color: var(--gold);
}
.trust-text h3 {
    color: var(--gold);
    font-size: 22px;
    margin-bottom: 10px;
}
.trust-text p {
    color: #ccc;
    font-size: 14px;
    line-height: 1.6;
    max-width: 600px;
}
.trust-right {
    z-index: 2;
}
.btn-outline-white {
    border: 1px solid rgba(255,255,255,0.3);
    color: white;
    padding: 12px 25px;
    border-radius: 4px;
    text-decoration: none;
    font-size: 14px;
    transition: 0.3s;
}
.btn-outline-white:hover {
    border-color: var(--gold);
    color: var(--gold);
}

/* =========================================================================
   CONSULTATION PAGE STYLES
   ========================================================================= */

/* --- Hero Section --- */
.consult-hero {
    min-height: unset !important;
    height: auto !important;
    padding-bottom: 60px;
    display: flex;
    flex-direction: column;
    background-image: linear-gradient(rgba(17, 19, 23, 0.75), rgba(17, 19, 23, 0.95)), url('amader somporke top container image.webp');
    background-position: center 30%;
    background-size: cover;
}
.consult-hero-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 160px 80px 0 80px;
    color: white;
}
.consult-main-title {
    font-size: 48px;
    line-height: 1.2;
    margin-bottom: 15px;
    font-weight: 700;
}
.consult-main-title span {
    color: var(--gold);
    font-size: 54px;
}
.consult-subtitle {
    font-size: 15px;
    color: #ccc;
    line-height: 1.8;
    max-width: 650px;
}

/* --- Intro Section --- */
.consult-intro-section {
    display: flex;
    background-color: #faf8f2;
    padding: 100px 80px;
    gap: 60px;
    align-items: center;
}
.consult-intro-section .intro-text {
    flex: 1.2;
}
.consult-intro-section .intro-image {
    flex: 1;
    position: relative;
}
.consult-benefits {
    list-style: none;
    margin-top: 30px;
}
.consult-benefits li {
    font-size: 15px;
    color: #444;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 15px;
}
.consult-benefits li i {
    color: var(--gold);
    font-size: 18px;
}

/* --- Process Steps --- */
.consult-process-section {
    background-color: #f6f3eb;
    padding: 80px;
}
.process-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-top: 50px;
}
.process-step {
    background: white;
    padding: 40px 30px;
    border-radius: 8px;
    text-align: center;
    position: relative;
    box-shadow: 0 5px 20px rgba(0,0,0,0.03);
    transition: 0.3s;
}
.process-step:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.06);
}
.step-number {
    position: absolute;
    top: -20px;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 40px;
    background: var(--gold);
    color: #111;
    font-weight: 700;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    box-shadow: 0 5px 15px rgba(176,138,85,0.3);
}
.step-icon {
    font-size: 36px;
    color: #111317;
    margin-bottom: 20px;
    margin-top: 10px;
}
.process-step h3 {
    font-size: 18px;
    color: #111;
    margin-bottom: 10px;
}
.process-step p {
    font-size: 13px;
    color: #666;
    line-height: 1.6;
}

/* --- Form Section --- */
.consult-form-section {
    background-color: #111317;
    padding: 100px 80px;
    color: white;
}
.form-section-container {
    display: flex;
    gap: 60px;
    max-width: 1200px;
    margin: 0 auto;
}
.consult-form-area {
    flex: 2;
    background: #1a1d24;
    padding: 50px;
    border-radius: 12px;
    border: 1px solid rgba(255,255,255,0.05);
}
.form-header h2 {
    font-size: 32px;
    margin-bottom: 10px;
}
.form-header p {
    font-size: 14px;
    color: #aaa;
    margin-bottom: 30px;
}
.appointment-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}
.form-row {
    display: flex;
    gap: 20px;
}
.form-group {
    display: flex;
    flex-direction: column;
    flex: 1;
    gap: 8px;
}
.form-group label {
    font-size: 13px;
    color: #bbb;
}
.form-group input, .form-group select, .form-group textarea {
    background: #0d0f12;
    border: 1px solid rgba(255,255,255,0.1);
    color: white;
    padding: 15px;
    border-radius: 4px;
    font-family: inherit;
    font-size: 14px;
    transition: 0.3s;
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
    outline: none;
    border-color: var(--gold);
}
.select-wrapper {
    position: relative;
    display: flex;
    align-items: center;
}
.select-wrapper select {
    width: 100%;
    appearance: none;
    -webkit-appearance: none;
    cursor: pointer;
}
.select-icon {
    position: absolute;
    right: 15px;
    color: #888;
    pointer-events: none;
}
.btn-submit {
    background: var(--gold);
    color: #111;
    border: none;
    padding: 15px;
    font-size: 16px;
    font-weight: 600;
    border-radius: 4px;
    cursor: pointer;
    margin-top: 10px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    transition: 0.3s;
}
.btn-submit:hover {
    background: var(--gold-dark);
}

.consult-contact-info {
    flex: 1;
    padding: 20px 0;
}
.consult-contact-info h3 {
    font-size: 24px;
    color: var(--gold);
    margin-bottom: 15px;
}
.contact-desc {
    font-size: 14px;
    color: #bbb;
    margin-bottom: 40px;
    line-height: 1.6;
}
.info-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 30px;
}
.info-list li {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}
.info-list li i {
    width: 45px;
    height: 45px;
    background: rgba(176,138,85,0.1);
    color: var(--gold);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-size: 18px;
    flex-shrink: 0;
}
.info-list li h4 {
    font-size: 16px;
    color: white;
    margin-bottom: 5px;
}
.info-list li p {
    font-size: 14px;
    color: #aaa;
    line-height: 1.5;
}

/* =========================================================================
   BLOG PAGE STYLES
   ========================================================================= */

/* --- Hero Section --- */
.blog-hero {
    min-height: unset !important;
    height: auto !important;
    padding-bottom: 60px;
    display: flex;
    flex-direction: column;
    background-image: linear-gradient(rgba(17, 19, 23, 0.75), rgba(17, 19, 23, 0.95)), url('blog section top image.webp');
    background-position: center;
    background-size: cover;
}
.blog-hero-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 160px 80px 0 80px;
    color: white;
}
.blog-main-title {
    font-size: 48px;
    line-height: 1.2;
    margin-bottom: 15px;
    font-weight: 700;
}
.blog-main-title span {
    color: var(--gold);
    font-size: 54px;
}
.blog-subtitle {
    font-size: 15px;
    color: #ccc;
    line-height: 1.8;
    max-width: 650px;
}

/* --- Layout --- */
.blog-layout-section {
    background-color: #faf8f2;
    padding: 60px 80px;
}
.blog-container {
    display: flex;
    gap: 40px;
    max-width: 1300px;
    margin: 0 auto;
}
.blog-main {
    flex: 2.2;
}
.blog-sidebar {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 30px;
}

/* --- Main Content --- */
.blog-main-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
    padding-bottom: 15px;
    border-bottom: 1px solid rgba(0,0,0,0.1);
}
.blog-main-header h2 {
    font-size: 24px;
    color: #111;
}
.search-box {
    display: flex;
    border: 1px solid #ddd;
    border-radius: 4px;
    overflow: hidden;
    background: white;
}
.search-box input {
    border: none;
    padding: 10px 15px;
    font-family: inherit;
    font-size: 14px;
    outline: none;
}
.search-box button {
    background: var(--gold);
    color: #111;
    border: none;
    padding: 0 15px;
    cursor: pointer;
}
.blog-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}
.blog-card {
    background: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0,0,0,0.03);
    transition: 0.3s;
    border: 1px solid rgba(0,0,0,0.04);
}
.blog-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.06);
}
.blog-img {
    height: 200px;
    background-size: cover;
    background-position: center;
    position: relative;
}
.category-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    background: #111317;
    color: var(--gold);
    font-size: 12px;
    padding: 5px 12px;
    border-radius: 3px;
    font-weight: 600;
}
.blog-content {
    padding: 25px;
}
.blog-meta {
    display: flex;
    gap: 15px;
    font-size: 12px;
    color: #888;
    margin-bottom: 15px;
}
.blog-meta span i {
    color: var(--gold);
    margin-right: 5px;
}
.blog-content h3 {
    font-size: 18px;
    color: #111;
    margin-bottom: 15px;
    line-height: 1.4;
}
.blog-content p {
    font-size: 13.5px;
    color: #555;
    line-height: 1.6;
    margin-bottom: 20px;
}
.read-more {
    color: var(--gold-dark);
    font-size: 13px;
    font-weight: 600;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 5px;
    transition: 0.3s;
}
.read-more:hover {
    color: #111;
}

/* --- Pagination --- */
.pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    margin-top: 50px;
}
.page-link {
    width: 35px;
    height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: white;
    color: #333;
    text-decoration: none;
    border-radius: 4px;
    border: 1px solid #eee;
    font-size: 14px;
    transition: 0.3s;
}
.page-link:hover, .page-link.active {
    background: var(--gold);
    color: white;
    border-color: var(--gold);
}
.page-dots {
    color: #888;
}

/* --- Sidebar --- */
.widget-box {
    background: white;
    padding: 30px;
    border-radius: 8px;
    border: 1px solid rgba(0,0,0,0.04);
    box-shadow: 0 5px 20px rgba(0,0,0,0.02);
}
.widget-title {
    font-size: 18px;
    color: #111;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 1px solid rgba(0,0,0,0.05);
}
.category-list {
    list-style: none;
}
.category-list li {
    margin-bottom: 12px;
}
.category-list li:last-child {
    margin-bottom: 0;
}
.category-list a {
    text-decoration: none;
    color: #555;
    font-size: 14px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    transition: 0.3s;
}
.category-list a:hover {
    color: var(--gold-dark);
}
.category-list a i {
    width: 25px;
    color: #888;
}
.category-list a span {
    color: #aaa;
    font-size: 12px;
}

.recent-posts-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
}
.recent-post-item {
    display: flex;
    gap: 15px;
    align-items: center;
}
.recent-img {
    width: 60px;
    height: 60px;
    background-size: cover;
    background-position: center;
    border-radius: 4px;
    flex-shrink: 0;
}
.recent-info h4 {
    font-size: 13px;
    margin-bottom: 5px;
    line-height: 1.4;
}
.recent-info h4 a {
    color: #222;
    text-decoration: none;
    transition: 0.3s;
}
.recent-info h4 a:hover {
    color: var(--gold-dark);
}
.recent-info .date {
    font-size: 11px;
    color: #888;
}

.newsletter-widget {
    background: #111317;
    padding: 30px;
    border-radius: 8px;
    color: white;
    text-align: center;
}
.nl-icon {
    font-size: 32px;
    color: var(--gold);
    margin-bottom: 15px;
}
.newsletter-widget p {
    font-size: 13px;
    color: #ccc;
    margin-bottom: 20px;
    line-height: 1.5;
}
.newsletter-widget form {
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.newsletter-widget input {
    padding: 12px;
    border-radius: 4px;
    border: 1px solid rgba(255,255,255,0.1);
    background: white;
    color: #111;
    font-family: inherit;
    font-size: 13px;
    outline: none;
}
.newsletter-widget button {
    background: var(--gold);
    color: #111;
    border: none;
    padding: 12px;
    border-radius: 4px;
    font-weight: 600;
    cursor: pointer;
    font-family: inherit;
    transition: 0.3s;
}
.newsletter-widget button:hover {
    background: var(--gold-dark);
}

/* =========================================================================
   CONTACT PAGE STYLES
   ========================================================================= */

/* --- Hero Section --- */
.contact-hero {
    min-height: unset !important;
    height: auto !important;
    padding-bottom: 60px;
    display: flex;
    flex-direction: column;
    background-image: linear-gradient(rgba(17, 19, 23, 0.75), rgba(17, 19, 23, 0.95)), url('amader oviggota top container image.webp');
    background-position: center;
    background-size: cover;
}
.contact-hero-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 160px 80px 0 80px;
    color: white;
}
.contact-main-title {
    font-size: 48px;
    line-height: 1.2;
    margin-bottom: 15px;
    font-weight: 700;
}
.contact-subtitle {
    font-size: 15px;
    color: #ccc;
    line-height: 1.8;
    max-width: 650px;
}

/* --- Utility Background --- */
.bg-light {
    background-color: #faf8f2;
    color: #333;
}

/* --- Info Grid --- */
.contact-info-section {
    padding: 60px 80px;
}
.contact-info-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    max-width: 1300px;
    margin: 0 auto;
}
.info-box-card {
    background: white;
    padding: 40px 30px;
    border-radius: 8px;
    border: 1px solid rgba(0,0,0,0.05);
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0,0,0,0.02);
}
.info-icon {
    width: 60px;
    height: 60px;
    background: #111317;
    color: var(--gold);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-size: 24px;
    margin-bottom: 20px;
}
.info-text h3 {
    font-size: 18px;
    color: #111;
    margin-bottom: 10px;
}
.info-text p {
    font-size: 13.5px;
    color: #666;
    line-height: 1.6;
}
.info-text p.highlight {
    color: #111;
    font-weight: 600;
    margin-bottom: 5px;
}

/* --- Form & Map Section --- */
.contact-form-map-section {
    padding: 0 80px 60px 80px;
}
.form-map-container {
    display: flex;
    gap: 30px;
    max-width: 1300px;
    margin: 0 auto;
}
.contact-form-card, .contact-map-card {
    flex: 1;
    background: white;
    padding: 50px;
    border-radius: 8px;
    border: 1px solid rgba(0,0,0,0.05);
    box-shadow: 0 5px 20px rgba(0,0,0,0.02);
}
.mb-30 {
    margin-bottom: 30px;
}
.section-header p {
    font-size: 14px;
    color: #666;
    margin-top: 15px;
}

.contact-message-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}
.form-row-2 {
    display: flex;
    gap: 20px;
}
.form-group-c {
    flex: 1;
    position: relative;
}
.form-group-c input, .form-group-c select, .form-group-c textarea {
    width: 100%;
    padding: 15px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-family: inherit;
    font-size: 14px;
    color: #333;
    background: #fff;
    outline: none;
    transition: 0.3s;
}
.form-group-c input:focus, .form-group-c select:focus, .form-group-c textarea:focus {
    border-color: var(--gold);
}
.select-wrapper-c select {
    appearance: none;
    -webkit-appearance: none;
    cursor: pointer;
}
.btn-submit-contact {
    background: var(--gold);
    color: #111;
    border: none;
    padding: 15px;
    border-radius: 4px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    font-family: inherit;
    transition: 0.3s;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
}
.btn-submit-contact:hover {
    background: var(--gold-dark);
}

.map-wrapper {
    width: 100%;
    height: 350px;
    border-radius: 8px;
    overflow: hidden;
    margin-bottom: 20px;
}
.map-placeholder {
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}
.map-pin {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}
.map-pin i {
    font-size: 40px;
    color: #ea4335;
    filter: drop-shadow(0 4px 6px rgba(0,0,0,0.3));
}
.pin-text {
    background: white;
    padding: 10px 15px;
    border-radius: 4px;
    font-size: 12px;
    color: #333;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}
.btn-dark-map {
    display: block;
    width: 100%;
    background: #111317;
    color: var(--gold);
    text-align: center;
    padding: 15px;
    border-radius: 4px;
    text-decoration: none;
    font-size: 16px;
    font-weight: 600;
    transition: 0.3s;
}
.btn-dark-map:hover {
    background: #000;
}

/* --- Why Contact --- */
.why-contact-section {
    padding: 0 80px 80px 80px;
    max-width: 1300px;
    margin: 0 auto;
}
.mb-40 {
    margin-bottom: 40px;
}
.why-contact-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}
.why-contact-item {
    text-align: center;
    padding: 20px;
}
.wc-icon {
    font-size: 36px;
    color: #111317;
    margin-bottom: 15px;
}
.why-contact-item p {
    font-size: 13px;
    color: #444;
    font-weight: 600;
    line-height: 1.5;
}

/* --- CTA Banner --- */
.contact-cta-section {
    padding: 0 80px 80px 80px;
}
.contact-cta-banner {
    background: #111317;
    max-width: 1300px;
    margin: 0 auto;
    border-radius: 8px;
    padding: 50px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: white;
}
.cta-banner-left {
    display: flex;
    align-items: center;
    gap: 30px;
}
.cta-banner-icon {
    width: 70px;
    height: 70px;
    background: var(--gold);
    color: #111;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-size: 28px;
}
.cta-banner-text h3 {
    font-size: 24px;
    color: var(--gold);
    margin-bottom: 8px;
}
.cta-banner-text p {
    font-size: 14px;
    color: #bbb;
}
.btn-cta-gold {
    background: var(--gold);
    color: #111;
    padding: 15px 30px;
    border-radius: 4px;
    text-decoration: none;
    font-size: 20px;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: 0.3s;
}
.btn-cta-gold:hover {
    background: var(--gold-dark);
}

/* =========================================================================
   ADVOCATE PERSONAL BIO SECTION (about.html)
   ========================================================================= */

.advocate-bio-section {
    background: #111317;
    padding: 100px 80px;
    position: relative;
    overflow: hidden;
}

/* Subtle decorative background pattern */
.advocate-bio-section::before {
    content: '';
    position: absolute;
    top: -100px;
    right: -100px;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(176,138,85,0.05) 0%, transparent 70%);
    pointer-events: none;
}

.bio-container {
    display: flex;
    gap: 80px;
    max-width: 1300px;
    margin: 0 auto;
    align-items: flex-start;
}

/* --- Left Column --- */
.bio-left {
    flex: 1;
    position: relative;
}

.bio-quote-mark {
    font-size: 60px;
    color: var(--gold);
    opacity: 0.3;
    line-height: 1;
    margin-bottom: -20px;
}

.bio-opening-quote {
    font-family: var(--font-bengali);
    font-size: 22px;
    font-style: italic;
    color: var(--gold);
    line-height: 1.7;
    border-left: 3px solid var(--gold);
    padding-left: 25px;
    margin: 0 0 35px 0;
    font-weight: 600;
}

.bio-signature-area {
    margin-bottom: 40px;
    padding-left: 28px;
}

.bio-author-img {
    width: 380px;
    max-width: 100%;
    height: 350px;
    border-radius: 12px;
    object-fit: cover;
    border: 2px solid var(--gold);
    margin-bottom: 30px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
}

.bio-signature-text {
    font-family: var(--font-signature);
    font-size: 42px;
    color: white;
    line-height: 1.1;
    letter-spacing: 1px;
}

.bio-designation {
    font-size: 12px;
    color: var(--gold);
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-top: 5px;
}

/* Specialization Tags */
.bio-spec-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    padding-left: 5px;
}

.bio-spec-tags span {
    display: flex;
    align-items: center;
    gap: 8px;
    background: rgba(176,138,85,0.08);
    border: 1px solid rgba(176,138,85,0.25);
    color: #ccc;
    font-size: 13px;
    padding: 8px 16px;
    border-radius: 30px;
    transition: 0.3s;
}

.bio-spec-tags span:hover {
    background: rgba(176,138,85,0.15);
    border-color: var(--gold);
    color: var(--gold);
}

.bio-spec-tags span i {
    color: var(--gold);
    font-size: 12px;
}

/* --- Right Column --- */
.bio-right {
    flex: 1.4;
}

.bio-right h2 {
    font-size: 34px;
    color: white;
    margin-bottom: 30px;
    font-weight: 600;
}

.bio-paragraphs {
    display: flex;
    flex-direction: column;
    gap: 18px;
    margin-bottom: 45px;
}

.bio-paragraphs p {
    font-size: 15.5px;
    color: #bbb;
    line-height: 1.85;
}

.bio-paragraphs p strong {
    color: var(--gold);
    font-weight: 600;
}

/* Ethics Pillars */
.bio-ethics {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.ethics-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    padding: 20px 25px;
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.06);
    border-radius: 8px;
    transition: 0.3s;
}

.ethics-item:hover {
    background: rgba(176,138,85,0.06);
    border-color: rgba(176,138,85,0.2);
    transform: translateX(5px);
}

.ethics-item > i {
    font-size: 24px;
    color: var(--gold);
    width: 30px;
    flex-shrink: 0;
    margin-top: 3px;
}

.ethics-item h4 {
    font-size: 16px;
    color: white;
    margin-bottom: 5px;
    font-weight: 600;
}

.ethics-item div p {
    font-size: 13.5px;
    color: #888;
    line-height: 1.5;
}

/* =========================================================================
   LIFE & EDUCATION TIMELINE SECTION (about.html)
   ========================================================================= */

.timeline-section {
    background: #f6f3eb;
    padding: 100px 80px;
    position: relative;
    z-index: 10;
    clear: both;
    display: block;
}
.timeline-wrapper { max-width: 1300px; margin: 0 auto; }

/* Personal Info Banner */
.timeline-personal-banner {
    display: flex;
    align-items: center;
    justify-content: center;
    background: #111317;
    border-radius: 12px;
    padding: 30px 50px;
    margin-bottom: 70px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.12);
}
.tpb-item {
    display: flex;
    align-items: center;
    gap: 15px;
    flex: 1;
    justify-content: center;
}
.tpb-item > i { font-size: 26px; color: var(--gold); flex-shrink: 0; }
.tpb-item span {
    display: block;
    font-size: 11px;
    color: #888;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 4px;
}
.tpb-item strong { font-size: 15px; color: white; font-weight: 600; }
.tpb-divider { width: 1px; height: 50px; background: rgba(255,255,255,0.08); flex-shrink: 0; }

/* Timeline Stacked layout (Education then Career) */
.life-timeline-stacked {
    display: flex;
    flex-direction: column;
    gap: 60px;
}
.life-timeline-stacked .timeline-column {
    width: 100%;
    display: flex;
    flex-direction: column;
}
.timeline-col-title {
    font-size: 14px; font-weight: 700; color: #111;
    text-transform: uppercase; letter-spacing: 2px;
    margin-bottom: 30px;
    display: flex; align-items: center; gap: 10px;
    padding-right: 40px;
}
.timeline-column-right .timeline-col-title { padding-right: 0; padding-left: 40px; }
.timeline-col-title i { color: var(--gold); font-size: 18px; }

/* Center line is hidden in stacked mode */
.timeline-center-line {
    display: none;
}
.timeline-center-line::before {
    content: '';
    position: absolute;
    top: 0; bottom: 0; left: 50%;
    width: 2px;
    background: linear-gradient(to bottom, var(--gold-dark), rgba(176,138,85,0.15));
    transform: translateX(-50%);
    z-index: 0;
}
.tcl-icon {
    width: 44px; height: 44px;
    background: var(--gold); color: #111;
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-size: 16px; z-index: 1;
    position: sticky; top: 120px;
    box-shadow: 0 4px 15px rgba(176,138,85,0.4);
}

/* Individual timeline item */
.tl-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 22px;
}
/* Force ALL timeline items to render left-aligned in stacked mode */
.life-timeline-stacked .tl-item.tl-left,
.life-timeline-stacked .tl-item.tl-right {
    flex-direction: row;
    text-align: left;
    padding-left: 15px;
}

.tl-year {
    font-size: 12px; font-weight: 700; color: #999;
    white-space: nowrap; padding-top: 10px;
    min-width: 48px; font-family: var(--font-sans);
}

/* Dot */
.tl-dot {
    width: 38px; height: 38px;
    background: white;
    border: 2px solid #ddd;
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-size: 13px; color: #bbb; flex-shrink: 0; z-index: 1;
    box-shadow: 0 2px 8px rgba(0,0,0,0.07);
    transition: 0.3s;
}
.tl-dot-gold {
    background: var(--gold); border-color: var(--gold);
    color: #111 !important;
    box-shadow: 0 4px 15px rgba(176,138,85,0.35);
}
.tl-dot-large { width: 46px; height: 46px; font-size: 18px; }
.tl-dot-active {
    background: #1a7a4a; border-color: #1a7a4a;
    color: white !important;
    animation: pulse-green 2.5s infinite;
}
@keyframes pulse-green {
    0%, 100% { box-shadow: 0 0 0 0 rgba(26,122,74,0.4); }
    50% { box-shadow: 0 0 0 10px rgba(26,122,74,0); }
}

/* Card */
.tl-card {
    background: white;
    border-radius: 10px;
    padding: 16px 18px;
    flex: 1;
    border: 1px solid rgba(0,0,0,0.05);
    box-shadow: 0 3px 12px rgba(0,0,0,0.04);
    transition: 0.3s;
}
.tl-card:hover { box-shadow: 0 8px 25px rgba(0,0,0,0.1); transform: translateY(-2px); }
.tl-card h4 { font-size: 14px; color: #111; margin-bottom: 4px; font-weight: 700; }
.tl-institution {
    font-size: 11px; color: var(--gold-dark); font-weight: 700;
    margin-bottom: 6px; text-transform: uppercase; letter-spacing: 0.5px;
}
.tl-card > p:last-of-type { font-size: 12.5px; color: #888; line-height: 1.5; margin: 0; }

.tl-card-highlight { border-left: 3px solid var(--gold); background: #fffdf6; }

.tl-card-career { border-left: 3px solid var(--gold); background: #111317; }
.tl-card-career h4 { color: #eee !important; }
.tl-card-career > p { color: #aaa !important; }
.tl-card-career .tl-institution { color: var(--gold) !important; }

.tl-badge {
    display: inline-block;
    background: var(--gold); color: #111;
    font-size: 10px; font-weight: 700;
    padding: 3px 10px; border-radius: 20px;
    text-transform: uppercase; letter-spacing: 1px;
    margin-bottom: 8px;
}

.tl-card-present { border: 2px solid #1a7a4a; background: #f0faf5; }
.tl-card-present h4 { color: #1a7a4a !important; }

.tl-present-stats {
    display: flex; gap: 15px;
    margin-top: 12px; padding-top: 12px;
    border-top: 1px solid rgba(26,122,74,0.15);
}
.tl-present-stats div { display: flex; flex-direction: column; align-items: center; text-align: center; }
.tl-present-stats strong { font-size: 16px; font-weight: 700; color: #1a7a4a; font-family: var(--font-sans); }
.tl-present-stats span { font-size: 10px; color: #888; margin-top: 2px; }


/* Hover Effects for Practice Cards */
.featured-card, .service-card {
    transition: box-shadow 0.4s ease, transform 0.4s ease;
}
.featured-card:hover, .service-card:hover {
    transform: translateY(0) !important; /* Force no floating up */
    box-shadow: 0 15px 40px rgba(0,0,0,0.08) !important;
}
.featured-img, .card-img {
    transition: transform 0.6s cubic-bezier(0.33, 1, 0.68, 1);
}
.featured-card:hover .featured-img,
.service-card:hover .card-img {
    transform: scale(1.08);
}


/* ===== HIGH COURT ENROLLMENT TRUST SECTION ===== */
.hc-enrollment-section {
    background: linear-gradient(135deg, #0d1117 0%, #111820 50%, #0a0f16 100%);
    padding: 90px 80px;
    border-top: 1px solid rgba(176, 138, 85, 0.2);
    border-bottom: 1px solid rgba(176, 138, 85, 0.2);
    position: relative;
    overflow: hidden;
}

.hc-enrollment-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(176, 138, 85, 0.06) 0%, transparent 70%);
    pointer-events: none;
}

.hc-enrollment-section::after {
    content: '§';
    position: absolute;
    right: 60px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 280px;
    color: rgba(176, 138, 85, 0.04);
    font-family: serif;
    pointer-events: none;
    line-height: 1;
}

.hce-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 70px;
    align-items: flex-start;
    position: relative;
    z-index: 1;
}

/* Icon Column */
.hce-icon-col {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    flex-shrink: 0;
}

.hce-seal {
    position: relative;
    width: 120px;
    height: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hce-seal-ring {
    width: 110px;
    height: 110px;
    border-radius: 50%;
    border: 2px solid var(--gold);
    background: rgba(176, 138, 85, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 44px;
    color: var(--gold);
    position: relative;
    z-index: 2;
    box-shadow: 0 0 30px rgba(176, 138, 85, 0.2), inset 0 0 30px rgba(176, 138, 85, 0.05);
}

.hce-pulse-ring {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 110px;
    height: 110px;
    border-radius: 50%;
    border: 1px solid rgba(176, 138, 85, 0.4);
    animation: hcePulse 2.5s ease-out infinite;
    z-index: 1;
}

.hce-pulse-ring-2 {
    animation-delay: 1.25s;
}

@keyframes hcePulse {
    0% { transform: translate(-50%, -50%) scale(1); opacity: 0.6; }
    100% { transform: translate(-50%, -50%) scale(1.7); opacity: 0; }
}

.hce-verified-badge {
    background: linear-gradient(135deg, #1a3a1a, #0d240d);
    border: 1px solid #2d7a2d;
    color: #5cb85c;
    font-size: 12px;
    padding: 7px 14px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    gap: 6px;
    font-family: var(--font-sans);
    white-space: nowrap;
}

/* Content */
.hce-content {
    flex: 1;
}

.hce-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(176, 138, 85, 0.1);
    border: 1px solid rgba(176, 138, 85, 0.3);
    color: var(--gold);
    font-size: 12px;
    font-family: var(--font-sans);
    letter-spacing: 1px;
    text-transform: uppercase;
    padding: 6px 16px;
    border-radius: 4px;
    margin-bottom: 18px;
}

.hce-title {
    font-size: 32px;
    color: #fff;
    font-family: var(--font-bengali);
    font-weight: 700;
    margin-bottom: 18px;
    line-height: 1.3;
}

.hce-desc {
    color: #aaa;
    font-size: 15px;
    line-height: 1.9;
    margin-bottom: 35px;
    font-family: var(--font-bengali);
}

.hce-desc strong {
    color: var(--gold);
}

.hce-cards {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
    margin-bottom: 30px;
}

.hce-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(176, 138, 85, 0.15);
    border-radius: 8px;
    padding: 16px 20px;
    display: flex;
    align-items: center;
    gap: 14px;
    transition: all 0.3s ease;
}

.hce-card:hover {
    background: rgba(176, 138, 85, 0.07);
    border-color: rgba(176, 138, 85, 0.4);
    transform: translateY(-2px);
}

.hce-card > i {
    font-size: 22px;
    color: var(--gold);
    flex-shrink: 0;
}

.hce-card div {
    display: flex;
    flex-direction: column;
    gap: 3px;
}

.hce-card strong {
    color: #fff;
    font-size: 13.5px;
    font-family: var(--font-bengali);
    font-weight: 600;
}

.hce-card span {
    color: #888;
    font-size: 12px;
    font-family: var(--font-sans);
}

.hce-footer-note {
    background: rgba(176, 138, 85, 0.05);
    border-left: 3px solid var(--gold);
    padding: 14px 20px;
    border-radius: 0 6px 6px 0;
    display: flex;
    align-items: flex-start;
    gap: 12px;
    color: #bbb;
    font-size: 14px;
    line-height: 1.7;
    font-family: var(--font-bengali);
}

.hce-footer-note > i {
    color: var(--gold);
    font-size: 18px;
    flex-shrink: 0;
    margin-top: 2px;
}

@media (max-width: 900px) {
    .hc-enrollment-section {
        padding: 60px 24px;
    }
    .hce-inner {
        flex-direction: column;
        align-items: center;
        gap: 40px;
    }
    .hce-cards {
        grid-template-columns: 1fr;
    }
    .hce-title {
        font-size: 24px;
    }
}

/* WhatsApp Floating Button */
.whatsapp-float-btn {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background-color: #25D366;
    color: white;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
    z-index: 990;
    transition: all 0.3s ease;
    text-decoration: none;
}
.whatsapp-float-btn:hover {
    background-color: #20ba5a;
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.6);
}
/* Tooltip style */
.whatsapp-float-btn .tooltip-text {
    visibility: hidden;
    width: 100px;
    background-color: #111;
    color: #fff;
    text-align: center;
    border-radius: 6px;
    padding: 6px 0;
    position: absolute;
    z-index: 10000;
    right: 75px;
    font-size: 13px;
    font-family: var(--font-bengali);
    opacity: 0;
    transition: opacity 0.3s;
    box-shadow: 0 4px 10px rgba(0,0,0,0.15);
    white-space: nowrap;
}
.whatsapp-float-btn:hover .tooltip-text {
    visibility: visible;
    opacity: 1;
}
/* Pulse effect */
.whatsapp-float-btn::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background-color: #25D366;
    opacity: 0.7;
    z-index: -1;
    animation: wa-pulse 2s infinite;
}
@keyframes wa-pulse {
    0% {
        transform: scale(1);
        opacity: 0.7;
    }
    100% {
        transform: scale(1.5);
        opacity: 0;
    }
}

/* ==========================================================================
   MOBILE RESPONSIVE — All Pages, All Containers
   Breakpoints: 1024px (Tablet), 768px (Mobile), 480px (Small Mobile)
   ========================================================================== */

/* ── HAMBURGER MENU ─────────────────────────────────────────────────────── */
.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 8px;
    position: relative;
    z-index: 2000;
    background: none;
    border: none;
}
.hamburger span {
    display: block;
    width: 26px;
    height: 2px;
    background: var(--gold);
    border-radius: 2px;
    transition: all 0.3s ease;
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ── LAPTOP: 1025px to 1440px ───────────────────────────────────────────── */
@media (max-width: 1440px) {
    .header {
        padding: 20px 40px;
        height: 100px;
    }
    .header.header-scrolled {
        padding: 12px 40px;
        height: 80px;
    }
    .main-nav ul {
        gap: 15px;
    }
    .main-nav a {
        font-size: 14.5px;
    }
    .logo-area {
        gap: 10px;
    }
    .logo-img {
        width: 52px;
        height: 52px;
    }
    .logo-text h1, .logo-text .logo-h1 {
        font-size: 14px;
    }
    .logo-text p {
        font-size: 8px;
        letter-spacing: 1px;
    }
    .contact-btn a {
        padding: 10px 18px;
        font-size: 14px;
    }
}

/* ── TABLET: 1024px ──────────────────────────────────────────────────────── */
@media (max-width: 1024px) {
    /* ── Header: Hamburger ── */
    .hamburger { display: flex; }
    .main-nav {
        position: fixed;
        top: 0; left: 0; right: 0; bottom: 0;
        width: 100%;
        background: rgba(0,0,0,0.7);
        box-shadow: none;
        display: flex;
        flex-direction: column;
        align-items: flex-end;
        justify-content: flex-start;
        padding: 0;
        z-index: 1500;
        opacity: 0;
        pointer-events: none;
        transform: none;
        transition: opacity 0.35s ease;
    }
    .main-nav.nav-open { 
        opacity: 1; 
        pointer-events: auto; 
    }
    .main-nav ul {
        width: 280px;
        height: 100dvh;
        background: #111111;
        box-shadow: -5px 0 25px rgba(0,0,0,0.7);
        padding: 85px 25px 30px;
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        gap: 0;
        margin: 0;
        transform: translateX(100%);
        transition: transform 0.35s ease;
        overflow-y: auto;
    }
    .main-nav.nav-open ul { 
        transform: translateX(0); 
    }
    .main-nav a { 
        font-size: 16px; 
        padding: 13px 0; 
        display: block; 
        width: 100%;
        border-bottom: 1px solid rgba(255,255,255,0.08);
    }
    .mobile-socials {
        display: block !important;
        margin-top: 20px;
        width: 100%;
        padding-top: 20px;
        border-top: 1px solid rgba(255,255,255,0.08);
    }
    .mobile-socials span {
        display: block;
        font-size: 13px;
        color: var(--gold);
        margin-bottom: 15px;
        letter-spacing: 1px;
        text-transform: uppercase;
    }
    .m-social-icons {
        display: flex;
        gap: 15px;
    }
    .m-social-icons a {
        display: flex !important;
        align-items: center;
        justify-content: center;
        width: 36px;
        height: 36px;
        border-radius: 50%;
        background: rgba(255,255,255,0.05);
        color: #fff;
        border: none !important;
        padding: 0 !important;
        font-size: 16px !important;
    }
    .mobile-login-li {
        display: block !important;
        width: 100%;
        margin-top: 25px;
    }
    .mobile-login-btn {
        display: flex !important;
        align-items: center;
        justify-content: center;
        gap: 8px;
        width: 100%;
        padding: 14px 0 !important;
        background: var(--gold);
        color: #000 !important;
        border: none !important;
        border-radius: 6px;
        font-family: var(--font-english);
        font-weight: 600;
        font-size: 15px !important;
        text-transform: uppercase;
        letter-spacing: 1px;
        transition: all 0.3s ease;
    }
    .mobile-login-btn:hover {
        background: #b3945a;
        transform: translateY(-2px);
    }
    .contact-btn { display: none; }
    .header { padding: 18px 24px; height: 76px; }
    .header.header-scrolled { padding: 12px 24px; height: 65px; }
    .logo-img { width: 48px; height: 48px; }
    .logo-text h1, .logo-text .logo-h1 { font-size: 13px; }
    .logo-text p { font-size: 8px; letter-spacing: 1px; }

    /* Hero */
    .main-content { padding: 120px 30px 0 30px; }
    .main-title { font-size: 70px; }
    .subtitle { font-size: 22px; }
    .scroll-indicator { right: 30px; }
    .right-graphic { display: none; }

    /* Practice Areas */
    .practice-areas-section { padding: 80px 30px; }
    .practice-title { font-size: 42px; }
    .cards-grid { grid-template-columns: repeat(3, 1fr); }

    /* Why Choose Us */
    .why-left { padding: 60px 40px; }
    .why-right { padding: 60px 40px; }
    .why-title { font-size: 34px; }
    .timeline-area { padding: 50px 30px; }

    /* Cases & Insights */
    .cases-section { padding: 80px 30px; }
    .insights-section { padding: 80px 30px; }
    .cases-grid { grid-template-columns: repeat(2, 1fr); }
    .stories-grid { grid-template-columns: repeat(2, 1fr); }
    .insights-grid { grid-template-columns: repeat(2, 1fr); }

    /* Consultation Banner */
    .consultation-banner { padding: 50px 40px; }

    /* Footer */
    .site-footer { padding: 60px 30px 30px; }
    .footer-grid { grid-template-columns: 1fr 1fr; gap: 30px; }

    /* Inner Pages */
    .services-hero-content { padding: 140px 30px 0; }
    .about-intro-section { padding: 80px 30px; }
    .about-stats-section { padding: 50px 30px; }
    .process-grid, .contact-info-grid, .why-contact-grid { grid-template-columns: repeat(2, 1fr); }
}

/* ── MOBILE: 768px ───────────────────────────────────────────────────────── */
@media (max-width: 768px) {
    /* ── Hero Section ── */
    body.home-page .hero-container::before {
        background-image: linear-gradient(to right, rgba(10,10,10,0.85) 0%, rgba(10,10,10,0.4) 100%), url('hero section.webp');
        background-position: 70% center;
        background-size: cover;
    }
    .main-content { padding: 140px 24px 0; align-items: flex-start; }
    .main-title { font-size: 42px; line-height: 1.2; }
    .subtitle { font-size: 16px; margin-bottom: 25px; }
    .signature-area .signature { font-size: 24px; margin-bottom: 8px; }
    .signature-area .designation { font-size: 13px; color: #ffffff; opacity: 0.95; font-weight: 500; text-shadow: 0 1px 2px rgba(0,0,0,0.8); }
    .scroll-indicator { display: none; }
    .right-graphic { display: none; }
    
    .stats-bar-wrapper { padding: 0 20px; margin-bottom: 25px; margin-top: 30px; position: relative; }
    .stats-bar { 
        height: auto; 
        padding: 20px 15px; 
        display: grid; 
        grid-template-columns: 1fr 1fr; 
        gap: 20px 10px; 
        margin: 0; 
    }
    .stats-bar .divider { display: none; }
    .stats-bar .stat-item { 
        flex-direction: column; 
        gap: 8px; 
        text-align: center;
        justify-content: center;
    }
    .stat-item .icon { width: auto; font-size: 24px; margin-bottom: 0; display: flex; justify-content: center; }
    .stat-item h3 { font-size: 24px; }
    .stat-item p { font-size: 11px; }

    /* ── Practice Areas ── */
    .practice-areas-section { padding: 50px 24px; }
    .practice-top { flex-direction: column; gap: 20px; }
    .practice-title { font-size: 32px; }
    .practice-desc { font-size: 15px; margin-bottom: 15px; }
    .featured-card { flex-direction: column; }
    .featured-img { min-height: 150px; }
    .featured-content { padding: 20px; }
    .featured-content h3 { font-size: 20px; margin-bottom: 10px; }
    .featured-content p { margin-bottom: 15px; }
    .cards-grid { grid-template-columns: repeat(2, 1fr); gap: 10px; }
    .service-card { flex-direction: column; min-height: unset; }
    .service-card .card-img { width: 100%; height: 120px; flex-shrink: 0; flex-direction: row; justify-content: space-between; padding: 12px; }
    .service-card .card-img .card-num, .service-card .card-img .card-icon { font-size: 16px; }
    .service-card .card-info { padding: 12px 10px; display: flex; flex-direction: column; justify-content: flex-start; flex-grow: 1; }
    .service-card .card-info h4 { font-size: 14px; margin-bottom: 6px; }
    .service-card .card-info p { font-size: 11px; line-height: 1.4; margin-bottom: 10px; }
    .service-card .icon-link { margin-top: auto; }
    .section-footer { flex-direction: column; gap: 16px; padding: 20px; text-align: center; }

    /* ── Why Choose Us ── */
    .why-choose-top { flex-direction: column; }
    .why-left { padding: 60px 24px; }
    .why-mid { min-height: 240px; }
    .why-right { padding: 60px 24px; }
    .why-title { font-size: 30px; }
    .quote-container .quote-text { font-size: 20px; }
    .timeline-area { padding: 50px 24px; }
    .timeline-nodes { flex-direction: column; align-items: flex-start; gap: 30px; }
    .timeline-track { display: none; }
    .timeline-node { flex-direction: row; width: 100%; text-align: left; gap: 20px; }
    .node-icon { width: 50px; height: 50px; font-size: 20px; flex-shrink: 0; margin-bottom: 0; }

    /* ── Cases & Testimonials ── */
    .cases-section { padding: 60px 24px; gap: 50px; }
    .cases-top-row { flex-direction: column; }
    .cases-grid { grid-template-columns: 1fr; }
    .client-stories-container { flex-direction: column; padding: 30px 24px; gap: 30px; }
    .stories-grid { grid-template-columns: 1fr; }

    /* ── Insights & Blogs ── */
    .insights-section { padding: 60px 24px; }
    .insights-header-row { flex-direction: column; align-items: flex-start; gap: 20px; }
    .insights-tabs { flex-wrap: wrap; }
    .insights-grid { grid-template-columns: 1fr; }
    .consultation-banner {
        flex-direction: column;
        gap: 30px;
        padding: 40px 24px;
        background-position: center;
    }
    .consult-right { flex-direction: column; width: 100%; }
    .contact-box { width: 100%; }
    .consult-features { flex-direction: column; gap: 12px; }

    /* ── Footer ── */
    .site-footer { padding: 50px 24px 20px; }
    .footer-grid { grid-template-columns: repeat(2, 1fr); gap: 36px; }
    .brand-col, .contact-col { grid-column: 1 / -1; }
    .footer-bottom { flex-direction: column; gap: 16px; text-align: center; }
    .footer-bottom-links { flex-wrap: wrap; justify-content: center; }

    /* ── Inner Page: Services Hero ── */
    .services-hero-content { padding: 120px 24px 0; }
    .services-main-title { font-size: 32px; }
    .services-main-title span { font-size: 36px; }

    /* ── Inner Page: Services Grid ── */
    .services-grid-section { padding: 50px 20px !important; }
    .services-grid { grid-template-columns: repeat(2, 1fr) !important; gap: 10px !important; }
    .service-card { padding: 20px !important; text-align: center; }
    .service-header { flex-direction: column; gap: 12px; margin-bottom: 15px; }
    .service-icon { width: 50px; height: 50px; font-size: 20px; margin: 0 auto; }
    .service-card h3 { font-size: 16px; }
    .service-card p { font-size: 12px; line-height: 1.5; margin-bottom: 20px; }
    .service-link { font-size: 12px; justify-content: center; }

    /* ── Inner Page: Services Why Choose Compact ── */
    .why-choose-compact { padding: 50px 24px !important; }
    .compact-features { flex-direction: column !important; gap: 40px !important; }
    .compact-item { width: 100%; text-align: center; }
    .compact-item:not(:last-child)::after {
        width: 40px !important;
        height: 1px !important;
        right: 50% !important;
        margin-right: -20px;
        top: auto !important;
        bottom: -20px !important;
    }

    /* ── Inner Page: Services CTA Section ── */
    .services-cta-section { padding: 50px 24px; }
    .services-cta-container { flex-direction: column; gap: 30px; padding: 40px 24px; text-align: center; }
    .cta-card { flex-direction: column; text-align: center; gap: 15px; }
    .cta-divider { width: 100%; height: 1px; margin: 10px 0; }
    .cta-action-btn { margin-left: 0; }

    /* ── Inner Page: About ── */
    .about-hero-content { padding-top: 130px; }
    .about-main-title { font-size: 32px; }
    .about-intro-section, .consult-intro-section { flex-direction: column; padding: 60px 24px; gap: 40px; align-items: stretch; }
    .about-intro-section .intro-image, .about-intro-section .intro-text, .consult-intro-section .intro-image, .consult-intro-section .intro-text { width: 100%; }
    .intro-image .image-wrapper { height: 280px; }
    .floating-badge { right: -10px; bottom: -15px; padding: 14px; }
    .about-stats-section { padding: 50px 24px; }
    .stats-grid { flex-wrap: wrap; gap: 30px; justify-content: center; }
    .values-grid { grid-template-columns: 1fr; gap: 20px; }

    /* ── Inner Page: Experience ── */
    .exp-hero .about-hero-content { padding-top: 130px; }
    .exp-stats-section { padding: 0 24px 50px 24px; }
    .exp-stats-container {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
        padding: 30px 20px;
        margin-top: -30px;
    }
    .exp-stat-divider { display: none; }
    .exp-areas-section { padding: 50px 24px; }
    .exp-areas-grid { grid-template-columns: 1fr; gap: 20px; }
    .exp-area-card { padding: 30px 20px; }

    .notable-exp-section { padding: 50px 24px; }
    .notable-exp-grid { gap: 15px; }
    .notable-item { flex-direction: column; text-align: center; padding: 20px 10px; gap: 10px; }
    .notable-text h3 { font-size: 14px; margin-bottom: 8px; }
    .notable-text p { font-size: 11px; margin-bottom: 0; }
    .success-badge { margin: 5px auto 0 auto; padding: 4px 12px; font-size: 11px; }

    .trust-banner-section { padding: 0 24px 50px 24px; }
    .trust-banner-container {
        flex-direction: column;
        text-align: center;
        padding: 40px 24px;
        gap: 30px;
    }
    .trust-left {
        flex-direction: column;
        gap: 15px;
    }
    .trust-text p { max-width: 100%; }

    /* ── Inner Page: Consultation ── */
    .consult-hero { padding-bottom: 30px; }
    .consult-hero .about-hero-content { padding-top: 130px; }
    .consult-process-section { padding: 50px 24px; }
    .process-grid { grid-template-columns: 1fr; margin-top: 30px; gap: 20px; }
    .consult-form-section { padding: 60px 24px !important; }
    .form-section-container { flex-direction: column !important; }
    .consult-form-area, .consult-contact-info { padding: 30px 20px !important; }
    .form-row, .form-row-2 { flex-direction: column; gap: 15px; }

    /* ── Inner Page: Blog List ── */
    .blog-hero .about-hero-content { padding-top: 130px; }
    .blog-layout-section { padding: 50px 24px; }
    .blog-container { flex-direction: column !important; }
    .blog-grid { grid-template-columns: repeat(2, 1fr) !important; padding: 0 !important; gap: 15px; }
    .blog-sidebar { padding: 0; }
    
    /* Blog Cards Compact View for Mobile 2-column */
    .blog-img { height: 110px; }
    .category-badge { font-size: 10px; padding: 3px 8px; top: 10px; left: 10px; }
    .blog-content { padding: 12px; }
    .blog-meta { gap: 5px; flex-direction: column; margin-bottom: 8px; }
    .blog-meta span { font-size: 10px; }
    .blog-content h3 { font-size: 14px; margin-bottom: 8px; line-height: 1.3; }
    .blog-content p { display: none; }
    .read-more { font-size: 11px; }

    /* ── Blog Single Pages ── */
    .blog-single-hero main { padding: 120px 24px 40px !important; }
    .blog-single-hero h1 { font-size: 26px !important; }
    .blog-single-hero main > div { flex-wrap: wrap; gap: 10px !important; }
    section > div[style*="max-width:900px"] { padding: 0 16px !important; }

    /* ── Inner Page: Contact ── */
    .contact-hero .about-hero-content { padding-top: 130px; }
    .contact-main-section { flex-direction: column !important; padding: 60px 24px !important; gap: 40px !important; }
    .contact-info-section { padding: 50px 24px; }
    .contact-info-grid { grid-template-columns: 1fr; gap: 20px; }
    .contact-form-map-section { padding: 0 24px 50px 24px !important; }
    .form-map-container { flex-direction: column !important; gap: 30px; }
    .contact-form-card, .contact-map-card { padding: 30px 20px !important; }
    .why-contact-section { padding: 0 24px 50px 24px !important; }
    .why-contact-grid { grid-template-columns: repeat(2, 1fr); gap: 15px; }

    /* ── Advocate Bio Section Mobile ── */
    .advocate-bio-section { padding: 60px 24px; }
    .bio-container { flex-direction: column; gap: 40px; }
    .bio-signature-area { padding-left: 0; text-align: center; }
    .bio-author-img { height: auto; aspect-ratio: 38/35; width: 100%; margin-bottom: 20px; }
    .bio-designation { font-size: 12px; line-height: 1.5; }
    .bio-spec-tags { justify-content: center; flex-wrap: wrap; }

    /* ── High Court Enrollment Page ── */
    .hce-inner { flex-direction: column !important; }
    .hce-cards { grid-template-columns: 1fr !important; }

    /* ── About Page: Timeline Banner ── */
    .timeline-personal-banner {
        flex-direction: column;
        padding: 30px 24px;
        gap: 15px;
    }
    .tpb-item {
        width: 100%;
        justify-content: flex-start;
    }
    .tpb-divider {
        width: 100%;
        height: 1px;
        margin: 5px 0;
    }

    /* ── About Page: Journey Timeline ── */
    .journey-section { padding: 60px 24px; }
    .journey-timeline {
        overflow-x: auto;
        padding-bottom: 20px;
        justify-content: flex-start;
        -webkit-overflow-scrolling: touch;
        margin-left: -24px;
        margin-right: -24px;
        padding-left: 24px;
        padding-right: 24px;
    }
    .journey-timeline::-webkit-scrollbar { height: 4px; }
    .journey-timeline::-webkit-scrollbar-thumb { background: var(--gold); border-radius: 4px; }
    .journey-node { flex: 0 0 160px; }
    .journey-track { min-width: 800px; left: 24px; right: auto; }

    /* ── About Page: Why Choose Us ── */
    .why-choose-section { padding: 60px 24px; }
    .why-choose-content { flex-direction: column; gap: 30px; }
    .why-image, .why-image img { width: 100%; height: auto; border-radius: 12px; }

    /* ── CTA Banner Mobile Fix ── */
    .about-cta-section { padding: 0 24px 50px 24px; }
    .contact-cta-section { padding: 0 24px 50px 24px; }
    .cta-banner, .contact-cta-banner {
        flex-direction: column !important;
        text-align: center;
        padding: 40px 24px !important;
        gap: 30px !important;
    }
    .cta-left, .cta-banner-left {
        flex-direction: column;
        gap: 15px;
    }
    .cta-right, .cta-banner-right {
        justify-content: center !important;
    }
}

/* ── SMALL MOBILE: 480px ─────────────────────────────────────────────────── */
@media (max-width: 480px) {
    /* Hero */
    .main-title { font-size: 38px; }
    .subtitle { font-size: 16px; }
    .signature-area .signature { font-size: 18px; }

    /* Practice */
    .practice-title { font-size: 28px; }

    /* Cards */
    .featured-content h3 { font-size: 18px; }
    .featured-content p { font-size: 13px; }

    /* Why */
    .why-title { font-size: 26px; }
    .quote-container .quote-text { font-size: 17px; }

    /* Cases */
    .cases-title { font-size: 28px; }
    .stories-title { font-size: 24px; }

    /* Insights */
    .insights-title { font-size: 26px; }

    /* Footer */
    .footer-title { font-size: 16px; }
    .brand-desc { font-size: 13px; }

    /* Blog single */
    .blog-single-hero h1 { font-size: 22px !important; }
    section > div[style*="max-width:900px"] { font-size: 15px !important; }

    /* About */
    .about-main-title { font-size: 26px; }
    .intro-text h2 { font-size: 26px; }

    /* Services */
    .services-main-title { font-size: 26px; }
    .services-main-title span { font-size: 30px; }

    /* CTA Buttons */
    .consult-right { gap: 12px; }
    .contact-box { padding: 16px 18px; }
    .contact-info h4 { font-size: 15px; }
    .contact-info p { font-size: 11px; }
}

/* Line break for mobile designation */
.mobile-break { display: none; }
@media (max-width: 768px) {
    .mobile-break { display: block; }
}
