/* IMPORTANT
   Never use global body color/background changes.
   Use page-specific classes only.
*/


/* =========================
   GLOBAL STYLES
========================= */
body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #ffcccc;
    color: #333;
}

/* =========================
   HEADER
========================= */
header {
    background: #ffcccc;
    padding: 15px 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

header img {
    max-width: 350px;
    height: auto;
}

header div {
    text-align: center;
    flex-grow: 1;
}

header h1,
header h2 {
    color: #000;
    margin: 0;
}

header p {
    font-size: 14px;
    font-style: italic;
    margin: 5px 0 0;
}

/* =========================
   HEADER CONTACT
========================= */
.header-contact {
    text-align: right;
    font-size: 14px;
}

.header-contact p {
    margin: 0 0 5px;
    font-weight: bold;
}

.header-contact a {
    color: #000;
    text-decoration: none;
}

.header-contact a:hover {
    text-decoration: underline;
}

/* =========================
   NAVIGATION
========================= */
nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    justify-content: center;
    background: #000;
}

nav ul li {
    margin: 0 15px;
}

nav ul li a {
    text-decoration: none;
    color: #fff;
    font-weight: bold;
    padding: 10px;
    display: block;
}

nav ul li a:hover {
    background: #1abc9c;
    border-radius: 5px;
}

/* =========================
   MAIN CONTENT / BLOG
========================= */
.services {
    background: transparent;
    padding: 50px 20px;
}

.blog-post {
    max-width: 1000px;
    margin: 0 auto;
    background: #ffffff;
    padding: 40px;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.blog-post h1,
.blog-post h2,
.blog-post h3 {
    color: #000;
}

.blog-post h2 {
    margin-top: 30px;
}

.blog-post p {
    line-height: 1.7;
    margin-bottom: 15px;
}

.blog-post ul {
    padding-left: 20px;
}

.blog-post li {
    margin-bottom: 8px;
}

/* =========================
   FORMS (If Any)
========================= */
input,
textarea,
select {
    width: 100%;
    padding: 10px;
    margin: 10px 0;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-size: 16px;
    background: #f9f9f9;
}

input:focus,
textarea:focus,
select:focus {
    border-color: #1abc9c;
    outline: none;
    box-shadow: 0 0 5px rgba(26, 188, 156, 0.5);
}

button {
    background: #1abc9c;
    color: #fff;
    padding: 10px 15px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 16px;
}

button:hover {
    background: #16a085;
}

/* =========================
   RELATED ARTICLES
========================= */
.related-articles ul {
    padding-left: 20px;
}

.related-articles a {
    color: #1a73e8;
    text-decoration: none;
}

.related-articles a:hover {
    text-decoration: underline;
}

/* =========================
   REVIEW BUTTON
========================= */
.review-button {
    display: inline-block;
    padding: 10px 20px;
    background-color: #4285F4;
    color: #fff;
    text-decoration: none;
    border-radius: 4px;
}

.review-button:hover {
    background-color: #3367D6;
}

/* =========================
   FOOTER
========================= */
footer {
    text-align: center;
    padding: 15px;
    background: #2c3e50;
    color: #fff;
    margin-top: 30px;
}

/* =========================
   MOBILE RESPONSIVE
========================= */
@media screen and (max-width: 768px) {

    header {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    header img {
        max-width: 100%;
        margin-bottom: 10px;
    }

    .header-contact {
        text-align: center;
        margin-top: 10px;
    }

    nav ul {
        flex-direction: column;
        align-items: center;
    }

    nav ul li {
        margin: 5px 0;
    }

    .services {
        padding: 30px 15px;
    }

    .blog-post {
        padding: 20px;
    }
}

/* =========================
   for family page services images
========================= */
.legal-services{
padding:70px 20px;
background:linear-gradient(180deg,#f8f9fb,#eef1f6);
}

.services-main-title{
text-align:center;
font-size:32px;
font-weight:700;
margin-bottom:45px;
color:#1b2b4b;
}

.services-container{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(260px,1fr));
gap:28px;
max-width:1200px;
margin:auto;
}

.service-category{
grid-column:1/-1;
font-size:22px;
font-weight:700;
margin-top:30px;
margin-bottom:10px;
color:#0b3d91;
border-left:6px solid #caa85c;
padding-left:12px;
}

.service-card{
display:flex;
align-items:center;
gap:18px;
background:#fff;
padding:18px;
border-radius:14px;
text-decoration:none;
color:#000;
box-shadow:0 8px 25px rgba(0,0,0,0.08);
transition:all .35s ease;
}

.service-card img{
width:80px;
height:80px;
min-width:80px;
object-fit:contain;
border-radius:50%;
background:#f4f6fb;
padding:14px;
box-sizing:border-box;
transition:.4s;
}

.service-text p{
font-weight:600;
font-size:16px;
margin:0;
color:#1a1a1a;
}

.service-text span{
font-size:13px;
color:#666;
}

.service-card:hover{
transform:translateY(-8px);
box-shadow:0 15px 35px rgba(0,0,0,0.15);
}

.service-card:hover img{
transform:scale(1.15);
background:#fff3dc;
}


/* =========================
   for family page services text
========================= */
.service-heading{
text-align:center;
color:#d4af37;
font-size:28px;
margin-bottom:30px;
}

.services-grid{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
gap:20px;
}

.family-card{
background:#000;
border:1px solid #d4af37;
border-radius:12px;
padding:20px;
position:relative;
overflow:hidden;
cursor:pointer;
transition:0.4s;
box-shadow:0 0 10px rgba(0,0,0,0.6);
}

.family-card:hover{
transform:translateY(-5px);
box-shadow:0 0 15px rgba(212,175,55,0.6);
}

.service-title{
color:#d4af37;
font-weight:bold;
font-size:18px;
text-align:center;
}

.service-desc{
position:absolute;
bottom:0;
left:0;
width:100%;
background:#000;
color:#fff;
padding:15px;
font-size:14px;
opacity:0;
transform:translateY(100%);
transition:0.4s;
}

.family-card:hover .service-desc{
opacity:1;
transform:translateY(0);
}

@media (max-width:768px){

.service-desc{
position:relative;
opacity:1;
transform:none;
background:transparent;
padding-top:10px;
}

.family-card{
padding:18px;
}

}

/* Manu Navbar */

.navbar {
    background:#111;
    padding:10px;
    display:flex;
    align-items:center;
    justify-content:center;
    flex-wrap:wrap;
}

.nav-list {
    list-style:none;
    display:flex;
    justify-content:center;
    margin:0;
    padding:0;
}

.nav-list li {
    margin:0 10px;
}

.nav-list a {
    color:white;
    text-decoration:none;
    font-size:15px;
    padding:8px 10px;
}

.nav-list a:hover {
    background:#444;
    border-radius:5px;
}

/* Mobile Button */

.menu-toggle{
    display:none;
    font-size:26px;
    color:white;
    cursor:pointer;
}

/* Mobile Responsive */

@media (max-width:768px){

    .navbar{
        justify-content:space-between;
    }

    .menu-toggle{
        display:block;
    }

    .nav-list{
        display:none;
        flex-direction:column;
        width:100%;
        background:#111;
    }

    .nav-list li{
        text-align:center;
        border-top:1px solid #333;
        margin:0;
        padding:10px 0;
    }

    .nav-list.active{
        display:flex;
    }

}

/* index page ka HERO SECTION */


/* HERO SECTION - PREMIUM */
.hero {
    position: relative;
    width: 100%;
    height: 420px;
    overflow: hidden;
    border-radius: 14px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

/* IMAGE */
.hero picture,
.hero img {
    width: 100%;
    height: 100%;
    display: block;
}

.hero img {
    object-fit: cover;
    transform: scale(1.02);
}

/* OVERLAY (GLASS + GRADIENT) */
.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;

    background: linear-gradient(
        rgba(0,0,0,0.65),
        rgba(0,0,0,0.45)
    );

    backdrop-filter: blur(3px);

    display: flex;
    justify-content: center;
    align-items: center;
}

/* CONTENT CENTER */
.hero-content {
    text-align: center;
    color: #fff;
    max-width: 800px;
    padding: 20px;
}

/* HEADING */
.hero-content h2 {
    font-size: 42px;
    font-weight: 800;
    color: #fff;

    background: rgba(0,0,0,0.45);
    padding: 10px 20px;
    border-radius: 8px;

    display: inline-block;

    text-shadow: 0 2px 8px rgba(0,0,0,0.9);
}

/* TEXT */
.hero-content p {
    font-size: 20px;
    margin-bottom: 25px;

    text-shadow: 0 2px 8px rgba(0,0,0,0.8);
}

/* BUTTON */
.btn {
    display: inline-block;
    background: linear-gradient(135deg, #e63946, #c1121f);
    color: #fff;
    padding: 14px 30px;
    text-decoration: none;
    border-radius: 8px;
    font-size: 18px;
    font-weight: 600;

    box-shadow: 0 6px 20px rgba(0,0,0,0.3);

    transition: all 0.3s ease;
}

.btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.4);
}

/* MOBILE */
@media (max-width: 768px) {
    .hero {
        height: 300px;
    }

    .hero-content h2 {
        font-size: 26px;
    }

    .hero-content p {
        font-size: 14px;
    }
}

/* index page ka HERO SECTION */

/* SPECIALIZATION */

.specialization{
background:url('special.jpg') no-repeat center center/cover;
display:flex;
flex-direction:column;
justify-content:center;
align-items:center;
text-align:center;
padding:50px 20px;
color:#fff;
}

.specialization-grid{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
gap:20px;
padding:20px;
}

.specialization-item{
padding:20px;
border-radius:5px;
box-shadow:0 4px 6px rgba(0,0,0,0.5);
}

/* MISSION VISION */

.mission-vision{
position:relative;
background:url('vision.jpg') no-repeat center center/cover;
height:250px;
width:100%;
display:flex;
flex-direction:column;
justify-content:center;
align-items:center;
text-align:center;
padding:50px 20px;
color:#fff;
}


/* WhatsApp Floating Button */

.whatsapp-float{
position:fixed;
bottom:25px;
Left:25px;
z-index:9999;
}

.whatsapp-float img{
width:55px;
height:55px;
border-radius:50%;
box-shadow:0 4px 10px rgba(0,0,0,0.3);
transition:transform .3s;
}

.whatsapp-float img:hover{
transform:scale(1.1);
}







.table-of-contents {
  background:#f9f9f9;
  padding:15px;
  border-left:4px solid #c0392b;
  border-radius:6px;
}

.table-of-contents ul {
  list-style:none;
  padding-left:0;
}

.table-of-contents li {
  margin:8px 0;
}

.table-of-contents a {
  text-decoration:none;
  color:#222;
  font-weight:500;
}

.table-of-contents a:hover {
  color:#c0392b;
}

html {
  scroll-behavior: smooth;
}




/* =========================
   PREMIUM BLOG PAGE DESIGN
========================= */

/* =========================
   PREMIUM BLOG PAGE DESIGN
========================= */

.blog-page .blog {
    background: linear-gradient(rgba(10,10,10,0.85), rgba(10,10,10,0.9)),
                url('special.jpg') no-repeat center center/cover;
    padding: 70px 20px;
    text-align: center;
    color: #fff;
}

/* Heading */
.blog-page .blog h2 {
    font-size: 34px;
    margin-bottom: 40px;
    font-weight: 700;
    letter-spacing: 1px;
    color: #d4af37;
}

/* Grid Layout */
.blog-page .blog-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: auto;
}

/* Glass Cards */
.blog-page .blog-post {
    background: rgba(255, 255, 255, 0.06);
    border-radius: 16px;
    padding: 22px;
    color: #fff;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(212, 175, 55, 0.25);
    box-shadow: 0 8px 30px rgba(0,0,0,0.6);
    transition: all 0.35s ease;
    text-align: left;
    position: relative;
    overflow: hidden;
}

/* FIX: overlay should not block clicks */
.blog-page .blog-post::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 16px;
    padding: 1px;
    background: linear-gradient(120deg, transparent, #d4af37, transparent);
    -webkit-mask:
        linear-gradient(#000 0 0) content-box,
        linear-gradient(#000 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    opacity: 0;
    transition: 0.4s;

    pointer-events: none; /* 🔥 IMPORTANT FIX */
}

/* Hover Border Glow */
.blog-page .blog-post:hover::before {
    opacity: 1;
}

/* Hover Lift */
.blog-page .blog-post:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 20px 50px rgba(0,0,0,0.8);
}

/* Title */
.blog-page .blog-post h3 {
    margin-bottom: 12px;
}

.blog-page .blog-post h3 a {
    color: #f5e6c8;
    font-size: 18px;
    font-weight: 600;
    text-decoration: none;
    display: block;        /* FIX */
    position: relative;    /* FIX */
    z-index: 2;            /* FIX */
}

.blog-page .blog-post h3 a:hover {
    color: #d4af37;
}

/* Description */
.blog-page .blog-post p {
    font-size: 14px;
    line-height: 1.6;
    color: #ddd;
}

/* Gold Accent Line */
.blog-page .blog-post::after {
    content: "";
    width: 40px;
    height: 3px;
    background: #d4af37;
    position: absolute;
    bottom: 15px;
    left: 22px;
    border-radius: 2px;
}

/* Mobile */
@media (max-width: 768px) {
    .blog-page .blog {
        padding: 50px 15px;
    }

    .blog-page .blog h2 {
        font-size: 26px;
    }
}
/* =========================
   BLOG PAGE (ONLY)
========================= */



/* =========================
   voice search
========================= */

.voice-search-box {
    display: flex;
    gap: 10px;
    margin: 20px 0;
}

.voice-search-box input {
    padding: 10px;
    width: 70%;
    font-size: 16px;
}

.voice-search-box button {
    padding: 10px 15px;
    font-size: 18px;
    cursor: pointer;
}

/* =========================
    voice search 
========================= */




/* HERO IMAGE - PREMIUM */
.hero-image {
    position: relative;
    width: 100%;
    height: 320px;
    overflow: hidden;
    border-radius: 14px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

/* IMAGE FIX */
.hero-image picture,
.hero-image img {
    width: 100%;
    height: 100%;
    display: block;
}

.hero-image img {
    object-fit: cover;
    transform: scale(1.02); /* slight zoom for premium feel */
}

/* PREMIUM OVERLAY (GRADIENT + GLOSS) */
.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;

    /* cinematic gradient */
    background: linear-gradient(
        rgba(0,0,0,0.65) 0%,
        rgba(0,0,0,0.45) 40%,
        rgba(0,0,0,0.55) 100%
    );

    /* glass gloss effect */
    backdrop-filter: blur(2px);

    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 20px;
}

/* TEXT - PREMIUM GLOW */
.hero-overlay h1 {
    color: #ffffff;
    font-size: 34px;
    max-width: 900px;
    line-height: 1.3;
    font-weight: 700;
    letter-spacing: 0.5px;

    /* glow + depth */
    text-shadow:
        0 2px 8px rgba(0,0,0,0.9),
        0 0 20px rgba(0,0,0,0.6);

    /* subtle animation feel */
    transition: all 0.3s ease;
}

/* OPTIONAL HOVER EFFECT (desktop premium feel) */
.hero-image:hover img {
    transform: scale(1.05);
}

.hero-image:hover h1 {
    transform: scale(1.02);
}

/* MOBILE */
@media (max-width: 768px) {
    .hero-image {
        height: 220px;
        border-radius: 10px;
    }

    .hero-overlay h1 {
        font-size: 22px;
    }
}
/* HERO IMAGE end */


/* mid IMAGE */
.blog-mid-figure2{
    max-width:900px;
    margin:40px auto;
    text-align:center;
    padding:15px;
    border-radius:16px;

    background:linear-gradient(180deg,#ffffff,#fffdf7);
    border:1px solid #f1e6c9;

    box-shadow:0 10px 30px rgba(0,0,0,0.12);
    position:relative;
}

.blog-mid-figure2 img{
    width:100%;
    height:auto;
    border-radius:12px;
    transition:0.4s;
}

.blog-mid-figure2 img:hover{
    transform:scale(1.02);
}

.blog-mid-figure2 figcaption{
    margin-top:12px;
    font-size:14px;
    color:#555;
    font-weight:500;
}

/* Label */
.blog-mid-figure2::before{
    content:"Legal Process";
    display:block;
    font-size:11px;
    font-weight:600;
    color:#caa85c;
    margin-bottom:6px;
    letter-spacing:1px;
}

/* Mobile */
@media(max-width:768px){

.blog-mid-figure2{
    margin:25px 10px;
    padding:10px;
}

.blog-mid-figure2 figcaption{
    font-size:13px;
}

}
/* mid IMAGE */





/* about us page our images sir my and gaurav */
/* ===== About Us Page - Team Section ===== */

/* GRID LAYOUT */
.team-container {
    max-width:1200px;
    margin:auto;
    display:grid;
    grid-template-columns: repeat(3, 1fr);
    gap:30px;
    padding:0 20px;
}

/* CARD */
.team-card {
    text-align:center;
    transition: all 0.3s ease;
}

.team-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 12px 30px rgba(0,0,0,0.2);
}

/* IMAGE BOX */
.team-img-box {
    width:100%;
    height:380px;
    overflow:hidden;
    border-radius:12px;
    background:#f5f5f5;
}

/* IMAGE */
.team-img-box img {
    width:100%;
    height:100%;
    object-fit:cover;
    object-position: top center;
    transition: transform 0.4s ease;
}

/* HOVER ZOOM */
.team-card:hover img {
    transform: scale(1.05);
}

/* TEXT */
.team-card h3 {
    margin-top:15px;
    font-size:22px;
    font-weight:700;
}

.team-card p {
    margin:6px 0;
    color:#333;
    line-height:1.4;
}

/* TABLET */
@media (max-width: 992px) {
    .team-container {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* MOBILE */
@media (max-width: 600px) {
    .team-container {
        grid-template-columns: 1fr;
    }

    .team-img-box {
        height:300px;
    }
}

/* about us page our images */


.scst-table-responsive {
  width: 100%;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}

.scst-legal-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 600px;
  font-size: 14px;
}

.scst-legal-table th,
.scst-legal-table td {
  border: 1px solid #ddd;
  padding: 10px;
  text-align: left;
  vertical-align: top;
}

.scst-legal-table th {
  background-color: #f5f7fa;
  font-weight: 600;
}

.scst-legal-table tr:nth-child(even) {
  background-color: #fafafa;
}

/* Mobile tweaks */
@media (max-width: 600px) {
  .scst-legal-table {
    font-size: 13px;
  }
}

/* ===== Lawyer registration  ===== */


/* ===== LAWGICALS DARK LUXURY THEME ===== */
/*
body{
    background: linear-gradient(135deg,#0b0f19,#111827);
    min-height:100vh;
    font-family:'Segoe UI',sans-serif;
    color:#f8fafc;
}

*/

.register-page{
    background: linear-gradient(135deg,#0b0f19,#111827);
    min-height:100vh;
    font-family:'Segoe UI',sans-serif;
    color:#f8fafc;
}

/* NAVBAR */

.register-navbar{
    background:#050505;
    border-bottom:1px solid rgba(212,175,55,.25);
    box-shadow:0 4px 25px rgba(0,0,0,.45);
}

.register-navbar .navbar-brand{
    color:#d4af37 !important;
    font-size:30px;
    font-weight:800;
    letter-spacing:.5px;
}

.register-brand{
    font-family:'Cinzel',serif;
    color:#d4af37 !important;
    font-size:32px;
    font-weight:700;
    text-decoration:none;
}

/* TITLE */

.register-title{
    text-align:center;
    margin-bottom:50px;
}

.register-title h2{
    color:#d4af37;
    font-size:48px;
    font-weight:800;
}

.register-title p{
    color:#cbd5e1;
    font-size:18px;
}

.register-title .text-muted{
    color:#94a3b8 !important;
}

/* CARD */

.register-card{
    background:#111827;
    border:1px solid rgba(212,175,55,.18);
    border-radius:22px;
    overflow:hidden;
    box-shadow:
        0 10px 40px rgba(0,0,0,.45),
        0 0 30px rgba(212,175,55,.05);
}

.register-header{
    background:linear-gradient(135deg,#1e293b,#0f172a);
    text-align:center;
    padding:25px;
    border-bottom:1px solid rgba(212,175,55,.15);
}

.register-header h4{
    color:#d4af37;
    font-size:30px;
    font-weight:700;
    margin:0;
}

/* FORM */



.register-form label,
.register-form .form-label {
    color: #d4af37 !important;
    font-weight: 600;
}

.register-form .form-control{
    background:#1e293b;
    border:1px solid #334155;
    color:#fff;
    border-radius:12px;
    padding:14px;
}

.register-form .form-control::placeholder{
    color:#94a3b8;
}

.register-form .form-control:focus{
    background:#1e293b;
    color:#fff;
    border-color:#d4af37;
    box-shadow:0 0 0 .15rem rgba(212,175,55,.20);
}

/* BUTTON */

.register-btn{
    background:linear-gradient(135deg,#d4af37,#b8860b);
    border:none;
    color:#111;
    font-size:18px;
    font-weight:700;
    padding:14px;
    border-radius:12px;
}

.register-btn:hover{
    background:linear-gradient(135deg,#e6c55a,#d4af37);
    transform:translateY(-2px);
    transition:.3s;
}

/* LOGIN */

.register-login{
    text-align:center;
    margin-top:20px;
    color:#cbd5e1;
}

.register-login a{
    color:#d4af37;
    text-decoration:none;
    font-weight:700;
}

.register-login a:hover{
    color:#f5d76e;
}

/* ALERTS */

.alert-success{
    background:#052e16;
    color:#bbf7d0;
    border:none;
}

.alert-danger{
    background:#450a0a;
    color:#fecaca;
    border:none;
}

/* MOBILE */

@media(max-width:768px){

    .register-title h2{
        font-size:34px;
    }

    .register-title p{
        font-size:16px;
    }

    .register-header h4{
        font-size:24px;
    }

    .register-navbar .navbar-brand{
        font-size:24px;
    }
}



/* =====================================
ORDER RULES TABLE - BLACK GOLD THEME
===================================== */
/* =====================================
   LAWGICALS TABLE
===================================== */

.order_rules-wrapper{
    width:100%;
    margin:30px 0;
    overflow:hidden;
}

.order_rules-responsive{
    width:100%;
    overflow-x:auto;
    -webkit-overflow-scrolling:touch;
}

.lawgicals-table{
    width:100%;
    min-width:1000px;
    margin-top:30px;
    border-collapse:collapse;
    font-family:"Segoe UI", Arial, sans-serif;
    background:#0b0b0b;
    color:#eaeaea;
    border:1px solid #c9a227;
    box-shadow:0 8px 25px rgba(0,0,0,0.5);
}

.lawgicals-table th{
    background:linear-gradient(135deg,#c9a227,#e6c45c);
    color:#000;
    padding:14px;
    border:1px solid #444;
    text-align:left;
    font-size:16px;
    font-weight:700;
    letter-spacing:0.5px;
    white-space:normal;
}

.lawgicals-table td{
    padding:12px;
    border:1px solid rgba(201,162,39,0.3);
    vertical-align:top;
    line-height:1.6;
    white-space:normal;
    word-break:break-word;
}

.lawgicals-table tr:nth-child(even){
    background:#111;
}

.lawgicals-table tr:nth-child(odd){
    background:#0b0b0b;
}

.lawgicals-table tr:hover{
    background:#1b1b1b;
}

.lawgicals-table td:first-child{
    font-weight:600;
    color:#e6c45c;
}

.plan-highlight{
    background:rgba(201,162,39,0.1);
    font-weight:600;
}

/* Buttons */

.choose-btn{
    display:inline-block;
    padding:8px 16px;
    background:#c9a227;
    color:#000;
    font-weight:bold;
    text-decoration:none;
    border-radius:4px;
    transition:.3s;
}

.choose-btn:hover{
    background:#e5c04d;
    color:#000;
}

.popular-badge{
    background:#c9a227;
    color:#000;
    padding:3px 8px;
    font-size:12px;
    border-radius:3px;
    font-weight:bold;
}

/* Mobile */

@media(max-width:768px){

    .lawgicals-table{
        min-width:1000px;
    }

    .lawgicals-table th,
    .lawgicals-table td{
        padding:10px;
        font-size:14px;
    }

}

.order_rules-wrapper h2{
    background:#0b0b0b;
    color:#c9a227;
    font-size:28px;
    margin-top:40px;
    padding:15px 20px;
    border-left:5px solid #c9a227;
    border-radius:6px;
    box-shadow:0 4px 12px rgba(0,0,0,0.4);
}

.order_rules-wrapper p{
    font-size:18px;
    color:#e6e6e6;
    background:#0b0b0b;
    padding:15px 20px;
    border-radius:6px;
    border-left:4px solid #c9a227;
    line-height:1.6;
    box-shadow:0 3px 10px rgba(0,0,0,0.3);
}



/* =====================================
   Lawyer TABLE
===================================== */

.lawyer-query-box{
    background:linear-gradient(145deg,#0b0b0b,#151515);
    border:1px solid #c9a227;
    border-radius:14px;
    padding:30px;
    margin:35px 0;
    box-shadow:0 10px 30px rgba(0,0,0,0.5);
    color:#e6e6e6;
    overflow:hidden;
}

.lawyer-query-box h3{
    color:#c9a227;
    margin:0 0 15px;
    font-size:28px;
    line-height:1.3;
}

.lawyer-query-box p{
    color:#e6e6e6;
    line-height:1.8;
    margin-bottom:15px;
    font-size:17px;
}

.lawyer-query-box strong{
    color:#e6c45c;
}

.lawyer-query-box ul{
    margin:20px 0;
    padding-left:22px;
}

.lawyer-query-box li{
    margin-bottom:12px;
    line-height:1.7;
    color:#f1f1f1;
}

.lawyer-query-box li::marker{
    color:#c9a227;
}

.lawyer-contact-btn{
    display:inline-block;
    margin-top:10px;
    padding:12px 24px;
    background:linear-gradient(135deg,#c9a227,#e6c45c);
    color:#000;
    font-weight:700;
    text-decoration:none;
    border-radius:8px;
    transition:all .3s ease;
}

.lawyer-contact-btn:hover{
    background:linear-gradient(135deg,#e6c45c,#f3d77a);
    color:#000;
    transform:translateY(-2px);
}

@media(max-width:768px){

    .lawyer-query-box{
        padding:20px;
        border-radius:10px;
    }

    .lawyer-query-box h3{
        font-size:22px;
    }

    .lawyer-query-box p,
    .lawyer-query-box li{
        font-size:15px;
    }

    .lawyer-contact-btn{
        width:100%;
        text-align:center;
        box-sizing:border-box;
    }

}




/* 

Paste above only 
IMPORTANT
   Never use global body color/background changes.
   Use page-specific classes only.
*/

