body{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'poppins', sans-serif;
}
:root {
    --law-about-tx-white: #ffffff;
    --law-about-tx-dark: #12191b;
    --law-about-tx-gray: #f8f9fa;
}

.law-about-tx-success-section {
    padding: 100px 0%;
    background-color: var(--law-about-tx-white);
    font-family: 'poppins', sans-serif;
    overflow: hidden;
    padding-top: 200px;
}

.law-about-tx-container {
    max-width: 1400px;
    margin: 0 ;
    position: relative;
}

/* Top Text Block */
.law-about-tx-text-wrap {
    background-color: var(--law-about-tx-gray);
    padding: 50px;
    width: 45%;
    margin-left: auto;
    position: relative;
    z-index: 10;

}

.law-about-tx-text-wrap p {
    font-size: 15px;
    line-height: 1.8;
    color: #555;
    margin-bottom: 20px;
}

/* Visual Section */
.law-about-tx-visual-box {
    margin-top: -350px; /* Pulls image behind the text box */
    position: relative;
    width: 100%;
}

.law-about-tx-image-bg img {
    width: 90%;
    height: 800px;
    object-fit: cover;
    display: block;
}

/* Typography Overlay */
.law-about-tx-title-overlay {
    position: absolute;
    bottom: 50px;
    left: 0px;
    display: flex;
    align-items: flex-end;
    color: var(--law-about-tx-white);
}

.law-about-tx-main-word {
    font-size: clamp(60px, 12vw, 180px);
    font-weight: 300;
    margin: 0 0px;
    letter-spacing: 5px;
    line-height: 0.8;
}

/* Custom Stretched 'U' */
.law-about-tx-stretch-u {
    position: relative;
    display: inline-block;
}

/* Left side of U stretching up */
.law-about-tx-stretch-u::before {
    content: '';
    position: absolute;
    top: -400px;
    left: 14px;
    width: 12px;
    height: 450px;
    background-color: var(--law-about-tx-white);
}

/* Right side of U stretching up */
.law-about-tx-stretch-u::after {
    content: '';
    position: absolute;
    top: -400px;
    right: 19px;
    width: 12px;
    height: 450px;
    background-color: var(--law-about-tx-white);
}

.law-about-tx-vertical-the, 
.law-about-tx-vertical-story {
    writing-mode: vertical-rl;
    transform: rotate(180deg);
    font-size: 40px;
    font-weight: bold;
    letter-spacing: 5px;
}
.law-about-tx-vertical-the{
  font-size: 4rem;
}

/* --- Minimalist Animation --- */
@keyframes lawFadeInUp {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}

.law-about-tx-fade-in {
    animation: lawFadeInUp 1s ease forwards;
}

/* --- RESPONSIVE 786px (Tablet) --- */
@media (max-width: 786px) {
    .law-about-tx-text-wrap { width: 90%; margin: 0 auto 30px; }
    .law-about-tx-visual-box { margin-top: 0; width: 100%; }
    .law-about-tx-image-bg img { height: 400px; }
    .law-about-tx-title-overlay { left: 20px; bottom: 20px; }
    .law-about-tx-vertical-the, .law-about-tx-vertical-story { font-size: 24px; }
    .law-about-tx-success-section {
    
    padding-top: 100px;
}
.law-about-tx-stretch-u::before {
        top: -234px;
        left: 7px;
        width: 9px;
        height: 240px;

}

/* Right side of U stretching up */
.law-about-tx-stretch-u::after {
        top: -235px;
        right: 12px;
        width: 9px;
        height: 250px;
}
.law-about-tx-container {
    display: flex;
    flex-direction: column-reverse;
}
}

/* --- RESPONSIVE 425px (Mobile) --- */
@media (max-width: 425px) {
    .law-about-tx-text-wrap { padding: 25px; }
    .law-about-tx-main-word { font-size: 50px;letter-spacing: 0px; }
    .law-about-tx-stretch-u::before, .law-about-tx-stretch-u::after { width: 4px; top: -150px; }
.law-about-tx-success-section {
    
    padding-top: 70px;
}
.law-about-tx-container {
    display: flex;
    flex-direction: column-reverse;
}
.law-about-tx-stretch-u::before {
    top: -234px;
    left: 4px;
    width: 5px;
    height: 240px;
}

/* Right side of U stretching up */
.law-about-tx-stretch-u::after {
    top: -235px;
    right: 4px;
    width: 5px;
    height: 250px;
}
}
:root {
    --law-brand-dark: #002329;
    --law-btn-bg: #eeeeee;
}

.law-final-case-section {
    padding: 80px 0%;
    font-family: 'poppins', sans-serif;
}

.law-final-case-container {
    max-width: 1400px;
    margin: 0;
}

.law-final-case-item {
    display: flex;
    align-items: center;
    border-bottom: 2px solid var(--law-brand-dark);
    gap: 40px;
    padding: 80px 40px 0px 40px;
}

.law-final-case-num {
    font-size: 7rem;
    font-weight: 800;
    color: var(--law-brand-dark);
    min-width: 140px;
}

.law-final-case-info {
    flex-grow: 1;
}

.law-final-year {
    display: block;
    font-weight: bold;
    margin-bottom: 5px;
}

.law-final-title {
    font-size: 20px;
    margin: 0;
    color: #333;
}

.law-final-case-btn {
    background: var(--law-btn-bg);
    color: #333;
    text-decoration: none;
    padding: 12px 25px;
    font-size: 14px;
    border-radius: 4px;
    transition: 0.3s;
}

.law-final-case-btn:hover {
    background: #ddd;
}

/* View More Button Styling */
.law-final-view-more-wrap {
    text-align: center;
    margin-top: 100px;
    margin-bottom: 100px;
}

.law-final-view-btn {
    border: none;
    background: #b59449;
    padding: 20px 80px;
    font-size: 24px;
    font-weight: bold;
    color: white;
    cursor: pointer;
    transition: 0.3s;
}

.law-final-view-btn:hover {
    background: var(--law-brand-dark);
    color: #fff;
}
/* Animation Class */
.law-smooth-reveal {
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

/* Jab element screen par aaye (Visible state) */
.law-smooth-reveal.visible {
    opacity: 1;
    transform: translateY(0);
}
.law-final-case-btn, .law-final-view-btn {
    transition: transform 0.3s ease, box-shadow 0.3s ease, background-color 0.3s ease;
}

.law-final-case-btn:hover, .law-final-view-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}
.law-final-case-item {
    transition: background-color 0.4s ease;
}

.law-final-case-item:hover {
    background-color: #fafafa;
}

.law-final-case-item:hover .law-final-case-num {
    transform: scale(1.05);
    transition: transform 0.4s ease;
    color: #c69533; /* Gold accent on hover */
}
/* Responsive */
@media (max-width: 768px) {
    .law-final-case-item { flex-direction: column; text-align: left; align-items: flex-start; gap: 10px; }
    .law-final-case-num { font-size: 50px; min-width: auto; }
}
