/* General Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'inter';
}



/* ===================================
   MOBILE ONLY FIXED WIDTH (1200px)
   Desktop stays 1400px
   =================================== */

@media (max-width: 991px) {

    html, body {
        min-width: 1200px;
        width: 1200px;
        margin: 0 auto;
        overflow-x: auto;
    }

}


:root {
    --gold-color: #c5a880;
    --dark-bg: #1a1a1a;
    --text-white: #ffffff;
    --nav-bg: #fdf5e6;
    /* Soft cream color from image */
}
.ct-note-bar{
    height: 50px;
    background-color: black;
}
.ct-container {
    max-width: 1200px;
    width: 100%;
    margin: 0 auto;
    padding: 20px !important;
}

/* Header Styles */
.ct-main-header {
    background-color: var(--nav-bg);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.ct-nav-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.ct-logo {
    font-weight: 800;
    font-size: 1.5rem;
    display: flex;
    align-items: center;
    gap: 10px;
}

.ct-nav-links {
    display: flex;
    list-style: none;
    gap: 30px;
}

.ct-nav-links a {
    text-decoration: none;
    color: #333;
    font-weight: 500;
    transition: color 0.3s;
}

.ct-nav-links a:hover {
    color: var(--gold-color);
}

.ct-btn-primary {
    background-color: var(--gold-color);
    color: black;
    padding: 12px 25px;
    text-decoration: none;
    font-weight: bold;
    font-size: 0.9rem;
    transition: opacity 0.3s;
}
/* =========================
   MOBILE HEADER BASE
========================= */

.ct-mobile-header {
    display: none;
    background-color: var(--nav-bg);
    border-bottom: 1px solid #ddd;
}

.ct-mobile-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
}

/* Logo */
.ct-mobile-logo {
    font-weight: 800;
    font-size: 1.3rem;
    display: flex;
    align-items: center;
    gap: 8px;
}

/* Toggle */
.ct-mobile-toggle {
    display: none;
}

/* Hamburger */
.ct-hamburger {
    display: flex;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
}

.ct-hamburger span {
    width: 26px;
    height: 3px;
    background: #000;
    border-radius: 2px;
}

/* =========================
   SIDEBAR
========================= */

.ct-mobile-sidebar {
    position: fixed;
    top: 0;
    left: -100%;
    width: 280px;
    height: 100vh;
    background-color: var(--nav-bg);
    padding: 70px 20px 25px;
    transition: 0.35s ease;
    z-index: 999;
}

/* Open Sidebar */
.ct-mobile-toggle:checked ~ .ct-mobile-sidebar {
    left: 0;
}

/* Close Button */
.ct-close-btn {
    position: absolute;
    top: 15px;
    right: 15px;
    font-size: 2rem;
    cursor: pointer;
    color: #000;
}

/* Links */
.ct-mobile-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.ct-mobile-links li {
    margin-bottom: 18px;
}

.ct-mobile-links a {
    text-decoration: none;
    color: #333;
    font-weight: 500;
    font-size: 1rem;
}

/* Button */
.ct-mobile-btn {
    display: inline-block;
    margin-top: 25px;
    text-align: center;
}

/* =========================
   RESPONSIVE SWITCH
========================= */

@media (max-width: 1024px) {
    .ct-main-header {
        display: none;
    }

    .ct-mobile-header {
        display: block;
    }
}
/* Hero Section Styles */
.ct-hero-section {
    position: relative;
    height: 600px;
    min-height: 600px;
    background: url('https://images.unsplash.com/photo-1589829545856-d10d557cf95f?auto=format&fit=crop&q=80&w=2000') no-repeat center center/cover;
    display: flex;
    align-items: center;
    color: var(--text-white);
}

.ct-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
    /* Darkens the image for text readability */
}

.ct-hero-content {
    position: relative;
    z-index: 2;
}

.ct-hero-badge {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 20px;
}

.ct-hero-title {
    font-size: clamp(2.5rem, 6vw, 5rem);
    /* Responsive font sizing */
    line-height: 1.1;
    font-weight: 600;
    margin-bottom: 40px;
}

.ct-hero-actions {
    display: flex;
    align-items: center;
    gap: 30px;
    margin-bottom: 60px;
}

.ct-btn-outline {
    border: 1px solid var(--text-white);
    padding: 15px 35px;
    color: var(--text-white);
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s;
}

.ct-btn-outline:hover {
    background: var(--text-white);
    color: #000;
}

.ct-video-trigger {
    display: flex;
    align-items: center;
    gap: 15px;
    cursor: pointer;
}

.ct-play-icon {
    width: 60px;
    height: 60px;
    border: 2px solid var(--text-white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
}

/* Feature Bar */
.ct-hero-features {
    display: inline-flex;
    border: 1px solid rgba(255, 255, 255, 0.6);
    padding: 20px 40px;
    gap: 40px;
}

.ct-feature-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.1rem;
}

.ct-feature-item i {
    font-size: 1.4rem;
}

/* Responsive Design */
@media (max-width: 992px) {

    .ct-navbar,
    .ct-header-btn {
        display: none;
        /* Usually hidden behind a hamburger menu on mobile */
    }

    .ct-hero-features {
        flex-direction: column;
        gap: 15px;
        padding: 20px;
        width: 100%;
    }
}

@media (max-width: 600px) {
    .ct-hero-actions {
        flex-direction: column;
        align-items: flex-start;
    }
}

/* About Section */

.ct-about-section {
    background-color: var(--ct-cream);
    padding: 100px 0;
}

.ct-about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 100px;
    align-items: center;
    margin-bottom: 80px;
}

/* Overlapping Image Logic */
.ct-about-image-wrapper {
    position: relative;
    padding-bottom: 50px;
}

.ct-image-large img {
    width: 85%;
    height: 500px;
    object-fit: cover;
    display: block;
}

.ct-image-small {
    position: absolute;
    bottom: -30px;
    right: 0;
    width: 65%;
    border: 12px solid var(--ct-cream);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.ct-image-small img {
    width: 100%;
    display: block;
}

/* Floating Rotating Badge */
.ct-floating-badge {
    position: absolute;
    top: 30%;
    right: 5%;
    width: 110px;
    height: 110px;
    border-radius: 50%;
    z-index: 5;
    animation: rotateText 20s linear infinite;
    background: black;
}

@keyframes rotateText {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

.ct-badge-icon {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: white;
    font-size: 1.5rem;
}

/* Content Text Styles */
.ct-about-title {
    font-size: 3rem;
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 25px;
}

.ct-about-desc {
    color: #555;
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 30px;
}

.ct-check-list {
    list-style: none;
    margin-bottom: 40px;
}

.ct-check-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
    font-weight: 600;
}

.ct-about-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.ct-btn-gold {
    background-color: #c5a880;
    color: #000;
    padding: 18px 35px;
    text-decoration: none;
    font-weight: bold;
    display: inline-block;
}

.ct-experience-box {
    background: #000;
    color: #fff;
    padding: 30px;
    text-align: center;
    width: 180px;
}

.ct-experience-box h3 {
    font-size: 2rem;
    margin: 10px 0 5px;
}

/* CTA & Card */
.ct-about-footer-flex {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.ct-black-experience-card {
    background: var(--ct-black);
    color: white;
    padding: 30px;
    width: 200px;
    text-align: center;
    display: flex;
    flex-direction: column;
}

.ct-card-number {
    font-size: 2.2rem;
    font-weight: 700;
}

.ct-card-text {
    font-size: 0.8rem;
    opacity: 0.8;
}

/* Bottom Stats Bar */
.ct-stats-container {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    border-top: 1px solid rgba(0, 0, 0, 0.1);
    padding-top: 50px;
}

.ct-stat-box {
    display: flex;
    align-items: center;
    gap: 15px;
}

.ct-stat-icon i {
    font-size: 2.5rem;
    color: var(--ct-black);
}

.ct-stat-data h3 {
    font-size: 1.8rem;
    font-weight: 800;
}

.ct-stat-data p {
    font-size: 0.9rem;
    font-weight: 600;
    color: #333;
}

/* Responsive */
@media (max-width: 991px) {
    .ct-about-grid {
        grid-template-columns: 1fr;
        gap: 60px;
    }

    .ct-stats-container {
        grid-template-columns: 1fr 1fr;
        gap: 30px;
    }

    .ct-image-large img {
        width: 100%;
    }
}

@media (max-width: 500px) {
    .ct-stats-container {
        grid-template-columns: 1fr;
    }

    .ct-about-footer-flex {
        flex-direction: column;
        gap: 20px;
        align-items: flex-start;
    }
}

/* Unique Services Section Styles */
.ct-services-section {
    padding: 100px 0;
    background-color: #ffffff;
    font-family: 'Inter', sans-serif;
}

.ct-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header Area */
.ct-services-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 60px;
}

.ct-sub-title {
    display: block;
    font-weight: 700;
    font-size: 1.1rem;
    margin-bottom: 15px;
}

.ct-main-title {
    font-size: 3rem;
    font-weight: 700;
    line-height: 1.1;
    color: #000;
}

.ct-btn-explore {
    background-color: #c5a880;
    color: #000;
    padding: 18px 35px;
    text-decoration: none;
    font-weight: 700;
    display: inline-block;
    transition: background 0.3s ease;
}

/* Grid Layout */
.ct-services-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
    margin-bottom: 60px;
}

.ct-service-card {
    background-color: #fdf5e6;
    /* Soft cream background */
    padding: 40px 30px;
    display: flex;
    flex-direction: column;
    min-height: 350px;
}

.ct-service-icon {
    font-size: 2.5rem;
    margin-bottom: 30px;
    color: #000;
}

.ct-service-name {
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.3;
}

.ct-service-desc {
    font-size: 1rem;
    color: #444;
    line-height: 1.5;
    margin-bottom: auto;
    /* Pushes Read More to bottom */
    padding-bottom: 30px;
}

.ct-read-more {
    text-decoration: none;
    color: #000;
    font-weight: 700;
    font-size: 1.1rem;
    padding-top: 20px;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
}

/* Section Footer */
.ct-services-footer {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
}

.ct-badge-free {
    background-color: #c5a880;
    padding: 10px 25px;
    font-weight: 700;
    font-size: 1.1rem;
}

.ct-footer-text {
    font-size: 1.2rem;
    color: #000;
}

/* Responsive Adjustments */
@media (max-width: 1024px) {
    .ct-services-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .ct-main-title {
        font-size: 2.5rem;
    }
}

@media (max-width: 768px) {
    .ct-services-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 30px;
    }

    .ct-services-grid {
        grid-template-columns: 1fr;
    }

    .ct-services-footer {
        flex-direction: column;
        text-align: center;
    }
}

/* Unique Stand With You Section Styles */
.ct-stand-section {
    padding: 120px 0;
    background-color: #fdf5e6;
    /* Cream background from image */
    overflow: hidden;
}

.ct-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.ct-stand-grid {
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    gap: 80px;
    align-items: flex-start;
}

/* Overlapping Image Logic */
.ct-stand-visuals {
    position: relative;
    height: 550px;
}

.ct-stand-img-top {
    position: absolute;
    top: 0;
    left: 0;
    width: 85%;
    z-index: 2;
}

.ct-stand-img-top img {
    width: 450px;
    height: 450px;
    object-fit: cover;
}

.ct-stand-img-bottom {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 70%;
    z-index: 1;
}

.ct-stand-img-bottom img {
    width: 400px;
    height: 400px;
    object-fit: cover;
}

/* Content Area */
.ct-stand-subtitle {
    display: block;
    font-weight: 700;
    font-size: 1rem;
    margin-bottom: 20px;
    text-transform: capitalize;
}

.ct-stand-title {
    font-size: 3rem;
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 30px;
    color: #000;
}

.ct-stand-description {
    font-size: 1.1rem;
    line-height: 1.6;
    color: #333;
    margin-bottom: 40px;
}

/* White Cards Styling */
.ct-info-cards-row {
    display: flex;
    gap: 20px;
}

.ct-info-card {
    background: #ffffff;
    padding: 40px 30px;
    flex: 1;
    min-height: 250px;
}

.ct-card-icon {
    font-size: 2.2rem;
    margin-bottom: 25px;
    color: #000;
}

.ct-info-card h3 {
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 15px;
}

.ct-info-card p {
    font-size: 0.95rem;
    line-height: 1.5;
    color: #555;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .ct-stand-title {
        font-size: 2.8rem;
    }

    .ct-stand-grid {
        grid-template-columns: 1fr;
        gap: 60px;
    }

    .ct-stand-visuals {
        height: 500px;
        max-width: 600px;
        margin: 0 auto;
    }
}

@media (max-width: 600px) {
    .ct-stand-title {
        font-size: 2.2rem;
    }

    .ct-info-cards-row {
        flex-direction: column;
    }

    .ct-stand-visuals {
        height: 400px;
    }
}

/* Process Section Root Styles */
.ct-process-section {
    background-color: #1a1a1a;
    color: #ffffff;
    padding-bottom: 100px;
}

.ct-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Dark Stats Bar Styles */
.ct-process-stats {
    padding: 60px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    margin-bottom: 80px;
}

.ct-stats-grid-dark {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.ct-stat-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 10px;
}

.ct-stat-header i {
    font-size: 2rem;
}

.ct-stat-header span {
    font-size: 2.2rem;
    font-weight: 700;
}

.ct-stat-item-dark p {
    font-size: 0.9rem;
    line-height: 1.4;
    color: #cccccc;
}

/* Main Process Layout */
.ct-process-main-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.ct-process-subtitle {
    display: block;
    font-size: 1rem;
    margin-bottom: 15px;
    color: #ffffff;
}

.ct-process-title {
    font-size: 3rem;
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 50px;
}

/* Step Items Styling */
.ct-steps-container {
    display: flex;
    flex-direction: column;
}

.ct-step-item {
    display: flex;
    gap: 25px;
    padding: 30px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.ct-step-item:last-child {
    border-bottom: none;
}

.ct-step-icon {
    font-size: 1.8rem;
    padding-top: 5px;
}

.ct-step-number {
    display: block;
    font-size: 0.8rem;
    text-transform: uppercase;
    margin-bottom: 5px;
}

.ct-step-content h3 {
    font-size: 1.4rem;
    margin-bottom: 8px;
    font-weight: 500;
}

.ct-step-content p {
    color: #aaaaaa;
    font-size: 1rem;
}

/* Image Side Styling */
.ct-process-image-side img {
    width: 100%;
    height: 600px;
    object-fit: cover;
    display: block;
}

/* Responsive Adjustments */
@media (max-width: 1024px) {
    .ct-process-title {
        font-size: 2.8rem;
    }

    .ct-stats-grid-dark {
        grid-template-columns: repeat(2, 1fr);
    }

    .ct-process-main-grid {
        grid-template-columns: 1fr;
    }

    .ct-process-image-side img {
        height: 400px;
    }
}

@media (max-width: 600px) {
    .ct-stats-grid-dark {
        grid-template-columns: 1fr;
    }

    .ct-process-title {
        font-size: 2.2rem;
    }
}

/* Unique Why Choose Us Section Styles */
.ct-why-choose-section {
    padding: 100px 0;
    background-color: #fdf5e6;
    /* Soft cream background */
}

.ct-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header Styles */
.ct-why-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 60px;
}
.ct-why-grid div{
    height: 300px;
}
.ct-why-subtitle {
    display: block;
    font-weight: 700;
    font-size: 0.9rem;
    margin-bottom: 10px;
}

.ct-why-title {
    font-size: 3rem;
    font-weight: 700;
    line-height: 1.1;
    color: #000;
}

.ct-btn-gold {
    background-color: #c5a880;
    color: #000;
    padding: 18px 40px;
    text-decoration: none;
    font-weight: 700;
    display: inline-block;
}

/* Grid Layout */
.ct-why-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.ct-why-item {
    min-height: 400px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 40px;
}

/* Card Variations */
.ct-img-card {
    padding: 0;
}

.ct-img-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.ct-content-light {
    background-color: #ffffff;
    color: #000;
}

.ct-content-dark {
    background-color: #1a1a1a;
    color: #ffffff;
}

/* Card Typography */
.ct-why-number {
    font-size: 3rem;
    font-weight: 600;
    display: block;
    margin-bottom: 10px;
}

.ct-why-item h3 {
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 20px;
}

.ct-why-item p {
    font-size: 0.95rem;
    line-height: 1.5;
    margin-bottom: 30px;
    opacity: 0.9;
}

/* Button Styles inside Cards */
.ct-btn-black {
    background: #1a1a1a;
    color: #fff;
    text-align: center;
    padding: 15px;
    text-decoration: none;
    font-weight: 700;
}

.ct-btn-white {
    background: #fdf5e6;
    color: #000;
    text-align: center;
    padding: 15px;
    text-decoration: none;
    font-weight: 700;
}

/* Responsive Adjustments */
@media (max-width: 1024px) {
    .ct-why-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .ct-why-title {
        font-size: 2.5rem;
    }
}

@media (max-width: 768px) {
    .ct-why-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 30px;
    }

    .ct-why-grid {
        grid-template-columns: 1fr;
    }

    .ct-why-item {
        min-height: auto;
    }
}

/* Unique Case Study Section Styles */
.ct-case-study-section {
    padding: 100px 0;
    background-color: #ffffff;
}

.ct-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header Styling */
.ct-case-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 60px;
}

.ct-case-subtitle {
    display: block;
    font-size: 0.9rem;
    font-weight: 700;
    margin-bottom: 10px;
    text-transform: capitalize;
}

.ct-case-title {
    font-size: 3rem;
    font-weight: 700;
    line-height: 1.1;
    color: #000;
}

.ct-btn-gold {
    background-color: #c5a880;
    /* Gold color from theme */
    color: #000;
    padding: 18px 40px;
    text-decoration: none;
    font-weight: 700;
    display: inline-block;
}

/* Grid and Card Styling */
.ct-case-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.ct-case-item {
    position: relative;
    height: 450px;
    overflow: hidden;
    cursor: pointer;
}

.ct-case-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.ct-case-item:hover img {
    transform: scale(1.1);
}

/* Text Overlay */
.ct-case-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 40px 30px;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0) 100%);
    color: #fff;
}

.ct-case-overlay h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 10px;
}

.ct-case-overlay p {
    font-size: 1rem;
    opacity: 0.9;
    line-height: 1.4;
}

/* Responsive Adjustments */
@media (max-width: 1024px) {
    .ct-case-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .ct-case-title {
        font-size: 2.5rem;
    }
}

@media (max-width: 768px) {
    .ct-case-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
    }

    .ct-case-grid {
        grid-template-columns: 1fr;
    }

    .ct-case-item {
        height: 350px;
    }
}

/* Layout Styling */
.ct-faq-section {
    padding: 100px 0;
    background-color: #fdf5e6;
    font-family: 'Inter', sans-serif;
}

.ct-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.ct-faq-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: start;
}

/* Accordion Styling */
.ct-faq-item {
    border: 1px solid #000;
    margin-bottom: 15px;
    background-color: transparent;
    list-style: none;
    /* Removes default triangle */
}

/* Hide default triangle in all browsers */
.ct-faq-item summary::-webkit-details-marker {
    display: none;
}

.ct-faq-question {
    padding: 25px 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    font-weight: 700;
    font-size: 1.15rem;
    list-style: none;
    outline: none;
}

/* Plus/Minus Icon Logic */
.ct-icon-box {
    position: relative;
    width: 20px;
    height: 20px;
}

.ct-icon-box i {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    transition: transform 0.3s ease, opacity 0.3s ease;
}

.ct-minus {
    opacity: 0;
}

/* State: Open (Using [open] attribute) */
.ct-faq-item[open] .ct-faq-question {
    background-color: rgba(0, 0, 0, 0.02);
}

.ct-faq-item[open] .ct-plus {
    opacity: 0;
    transform: translate(-50%, -50%) rotate(90deg);
}

.ct-faq-item[open] .ct-minus {
    opacity: 1;
    transform: translate(-50%, -50%) rotate(0deg);
}

.ct-faq-answer {
    padding: 0 30px 25px 30px;
    color: #444;
    line-height: 1.6;
    animation: slideDown 0.4s ease-out;
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Visual Side (Left) */
.ct-faq-visual {
    position: relative;
}

.ct-faq-img-container img {
    width: 100%;
    height: 550px;
    object-fit: cover;
}

.ct-testi-layout {
    display: flex;
    align-items: center;
}

.ct-review-card {
    position: absolute;
    bottom: 30px;
    right: -20px;
    background: #1a1a1a;
    color: #fff;
    padding: 30px;
    width: 240px;
}

.ct-user-avatars {
    display: flex;
    margin-top: 15px;
}

.ct-user-avatars img {
    width: 35px;
    height: 35px;
    border-radius: 50%;
    border: 2px solid #1a1a1a;
    margin-right: -10px;
}

.ct-avatar-plus {
    width: 35px;
    height: 35px;
    background: #444;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.7rem;
    border: 2px solid #1a1a1a;
}

/* Section Titles */
.ct-faq-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 60px;
}

.ct-main-title-ts {
    font-size: 3.5rem;
    font-weight: 600;
    line-height: 1.1;
    color: white;
}

.ct-btn-gold {
    background: #c5a880;
    color: #000;
    padding: 18px 40px;
    text-decoration: none;
    font-weight: 700;
}

@media (max-width: 992px) {
    .ct-faq-grid {
        grid-template-columns: 1fr;
    }

    .ct-review-card {
        right: 0;
        position: relative;
        margin-top: -30px;
    }
}

.ct-testimonials-section {
    background-color: #111;
    color: #fff;
    padding: 100px 0;
}

.ct-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header & Left Card Styling */
.ct-testi-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 60px;
}

.ct-main-title {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.1;
}

.ct-btn-gold {
    background-color: #c5a880;
    color: #000;
    padding: 18px 35px;
    text-decoration: none;
    font-weight: 700;
}

.ct-testi-summary {
    background-color: #c5a880;
    color: #000;
    width: 380px;
    padding: 60px 40px;
    flex-shrink: 0;
    z-index: 5;
}

/* The Fix: Slider Logic */
.ct-slider-container {
    border: 1px solid #444;
    flex-grow: 1;
    margin-left: -20px;
    position: relative;
    overflow: hidden;
}

.ct-slider-container input {
    opacity: 0;
}

/* We hide all slides by default and only show the one that matches the radio button */
.ct-slider-track {
    display: grid;
    /* Using grid allows slides to stack on top of each other */
    grid-template-columns: 1fr;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
}

.ct-slider-track::-webkit-scrollbar {
    display: none;
}

.ct-slide {
    grid-area: 1 / 1;
    /* All slides occupy the same grid space */
    width: 100%;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.5s ease, visibility 0.5s ease;
    scroll-snap-align: start;
    min-height: 400px;
}

/* Radio button functional logic: Match the slide to the input */
#t1:checked~.ct-slider-track .t1-content,
#t2:checked~.ct-slider-track .t2-content,
#t3:checked~.ct-slider-track .t3-content {
    opacity: 1;
    visibility: visible;
    z-index: 1;
}

/* Slide Content Layout */
.ct-slide-content {
    display: flex;
    gap: 40px;
    padding: 40px;
}

.ct-person-box img {
    width: 220px;
    height: 280px;
    object-fit: cover;
}

.ct-text-box {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.ct-quote {
    font-size: 1.05rem;
    line-height: 1.6;
    color: #ccc;
    margin-bottom: 30px;
}

.ct-name {
    font-size: 1.8rem;
    font-weight: 800;
    display: block;
}

/* Dot Navs */
.ct-testi-dots {
    position: absolute;
    bottom: 40px;
    right: 40px;
    display: flex;
    gap: 12px;
    z-index: 10;
}

.ct-testi-dots label {
    width: 12px;
    height: 12px;
    background-color: #555;
    border-radius: 50%;
    cursor: pointer;
}

#t1:checked~.ct-testi-dots label[for="t1"],
#t2:checked~.ct-testi-dots label[for="t2"],
#t3:checked~.ct-testi-dots label[for="t3"] {
    background-color: #c5a880;
    width: 30px;
    border-radius: 10px;
}

/* Partners Bar */
.ct-partners-bar {
    display: flex;
    justify-content: space-between;
    padding-top: 60px;
    border-top: 1px solid #333;
    margin-top: 50px;
}

.partner-logo {
    font-size: 1.5rem;
    font-weight: 800;
    opacity: 0.8;
}

/* Blog Section */
.ct-blog-section {
    padding: 100px 0;
    background-color: #ffffff;
    font-family: 'Inter', sans-serif;
}

.ct-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header Styling */
.ct-blog-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 60px;
}

.ct-sub-text {
    font-weight: 700;
    font-size: 0.9rem;
    display: block;
    margin-bottom: 10px;
}

.ct-main-title {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.1;
    color: #000;
}

.ct-btn-gold {
    background-color: #c5a880;
    color: #000;
    padding: 18px 40px;
    text-decoration: none;
    font-weight: 700;
}

/* Blog Grid */
.ct-blog-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

/* Blog Card Styling */
.ct-blog-card {
    position: relative;
    height: 450px;
    overflow: hidden;
    cursor: pointer;
}

.ct-card-bg {
    width: 100%;
    height: 100%;
}

.ct-card-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

/* Dark overlay for text readability */
.ct-blog-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.85) 0%, rgba(0, 0, 0, 0.2) 60%, rgba(0, 0, 0, 0) 100%);
}

.ct-card-content {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 30px;
    z-index: 2;
    color: #fff;
}

.ct-blog-post-title {
    font-size: 1.5rem;
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 15px;
    transition: color 0.3s ease;
}

.ct-post-meta {
    display: flex;
    gap: 20px;
    font-size: 0.85rem;
    opacity: 0.9;
}

.ct-post-meta i {
    margin-right: 5px;
}

/* Hover Effects */
.ct-blog-card:hover .ct-card-bg img {
    transform: scale(1.1);
}

.ct-blog-card:hover .ct-blog-post-title {
    color: #c5a880;
}

/* Responsive */
@media (max-width: 992px) {
    .ct-blog-grid {
        grid-template-columns: 1fr;
    }

    .ct-main-title {
        font-size: 2.5rem;
    }

    .ct-blog-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
    }
}
/* Footer */
.ct-footer {
    background-color: #1a1a1a;
    color: #ffffff;
    padding: 80px 0 0 0;
    font-family: 'Inter', sans-serif;
}

/* Newsletter Bar */
.ct-footer-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 50px;
}

.ct-footer-title {
    font-size: 2.5rem;
    font-weight: 600;
    margin-bottom: 10px;
}

.ct-newsletter-text p {
    color: #ccc;
    font-size: 1rem;
}

.ct-newsletter-form {
    display: flex;
    width: 40%;
}

.ct-newsletter-form input {
    flex-grow: 1;
    background: transparent;
    border: 1px solid #444;
    padding: 15px 20px;
    color: white;
    outline: none;
}

.ct-newsletter-form button {
    background-color: #c5a880;
    border: none;
    padding: 15px 40px;
    color: #000;
    font-weight: 700;
    cursor: pointer;
}

.ct-footer-divider {
    height: 1px;
    background-color: #333;
    margin-bottom: 60px;
}

/* Main Footer Content */
.ct-footer-main {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
    gap: 40px;
    margin-bottom: 80px;
}

.ct-footer-logo {
    font-size: 1.4rem;
    font-weight: 800;
    margin-bottom: 25px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.ct-footer-col h3 {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 25px;
}

.ct-footer-col p {
    color: #ccc;
    line-height: 1.6;
}

.ct-footer-col ul {
    list-style: none;
    padding: 0;
}

.ct-footer-col ul li {
    margin-bottom: 12px;
    color: #ccc;
}

.ct-footer-col ul li a {
    color: #ccc;
    text-decoration: none;
    transition: color 0.3s;
}

.ct-footer-col ul li a:hover {
    color: #c5a880;
}

/* Bottom Bar */
.ct-footer-bottom {
    background-color: #000000;
    text-align: center;
    padding: 25px 0;
    font-size: 0.9rem;
    color: #888;
}

/* Responsive Fixes */
@media (max-width: 992px) {
    .ct-footer-top { flex-direction: column; align-items: flex-start; gap: 30px; }
    .ct-newsletter-form { width: 100%; }
    .ct-footer-main { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 600px) {
    .ct-footer-main { grid-template-columns: 1fr; }
}
/* About Us Banner Styling */
.ct-about-banner {
    position: relative;
    width: 100%;
    height: 450px; /* Adjust height to match your preference */
    background-image: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), 
                      url('https://images.unsplash.com/photo-1589829545856-d10d557cf95f?q=80&w=2000'); /* High-res legal background */
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    color: #ffffff;
    font-family: 'Inter', sans-serif;
}

.ct-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    width: 100%;
}

.ct-banner-content {
    text-align: left;
}

/* Typography */
.ct-banner-title {
    font-size: 5rem;
    font-weight: 600;
    margin: 0 0 10px 0;
    line-height: 1;
}

.ct-breadcrumb {
    font-size: 1.1rem;
    font-weight: 600;
}

.ct-breadcrumb a {
    color: #ffffff;
    text-decoration: none;
    transition: color 0.3s ease;
}

.ct-breadcrumb a:hover {
    color: #c5a880; /* Gold brand color */
}

.ct-breadcrumb span {
    color: #ffffff;
    opacity: 0.9;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .ct-about-banner {
        height: 350px;
    }
    .ct-banner-title {
        font-size: 3.5rem;
    }
}
.ct-aboutpg-section{
    background-color: #FFF6ED;
}
/* Our Approach */
.ct-approach-section {
    padding: 100px 0;
    background-color: #fff;
    font-family: 'Inter', sans-serif;
}

/* Header Styling */
.ct-approach-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 60px;
}

.ct-sub-text-faq {
    font-weight: 700;
    font-size: 0.9rem;
    display: block;
    margin-bottom: 10px;
    color: #000;
}

.ct-main-title {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.1;
    color: #000;
    margin: 0;
}

.ct-btn-gold {
    background-color: #c5a880;
    color: #000;
    padding: 18px 35px;
    text-decoration: none;
    font-weight: 700;
    display: inline-block;
}

/* Layout Grid */
.ct-approach-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}

/* Left Column Cards */
.ct-approach-card {
    padding: 60px 50px;
    height: 300px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.ct-approach-card.dark {
    background-color: #1a1a1a;
    color: #fff;
}

.ct-approach-card.light {
    background-color: #fdf5ef;
    color: #000;
    margin-top: 30px;
}

.ct-approach-card h3 {
    font-size: 1.8rem;
    font-weight: 700;
    margin: 20px 0;
}

.ct-approach-card p {
    line-height: 1.6;
    opacity: 0.9;
}

/* Icons */
.ct-icon-box {
    width: 40px;
    height: 40px;
    margin-bottom: 10px;
}
.ct-icon-box.border { border: 2px solid #fff; border-radius: 8px; }
.ct-icon-box.star { color: #000; }

/* Right Column (Value & Image) */
.ct-approach-right {
    position: relative;
    max-height: 630px;
}

.ct-value-image-wrapper {
    height: 100%;
    position: relative;
    overflow: hidden;
}

.ct-value-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.ct-value-overlay {
    position: absolute;
    bottom: 30px;
    left: 30px;
    right: 30px;
    background-color: #fdf5ef;
    padding: 40px;
    color: #000;
}

.ct-value-overlay h3 {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 15px;
}

/* Responsive */
@media (max-width: 992px) {
    .ct-approach-grid { grid-template-columns: 1fr; }
    .ct-approach-header { flex-direction: column; align-items: flex-start; gap: 20px; }
    .ct-main-title { font-size: 2.5rem; }
}
/* Stand With You */
.ws-stand-section {
    padding: 100px 0;
    background-color: #fdf5ef; /* Cream background */
    overflow: hidden;
    font-family: 'Inter', sans-serif;
}

.ws-main-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.ws-grid-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

/* Image Stack Logic */
.ws-image-stack {
    position: relative;
    height: 550px;
}

.ws-img-back {
    width: 350px;
    height: 450px;
    object-fit: cover;
    display: block;
}

.ws-img-front {
    width: 320px;
    height: 380px;
    object-fit: cover;
    position: absolute;
    bottom: 0;
    right: 0;
    border: 15px solid #fdf5ef; /* Creates the gap effect */
}

.ws-stats-float {
    position: absolute;
    bottom: 50px;
    left: 20px;
    background: #ffffff;
    padding: 30px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    width: 160px;
    text-align: center;
    z-index: 5;
}

.ws-stats-number {
    display: block;
    font-size: 3rem;
    font-weight: 800;
    color: #000;
    line-height: 1;
}

.ws-stats-desc {
    font-size: 0.85rem;
    color: #444;
    margin-top: 10px;
    font-weight: 600;
}

/* Content Area */
.ws-top-label {
    font-weight: 700;
    text-transform: none;
    font-size: 1rem;
    display: block;
    margin-bottom: 15px;
}

.ws-primary-heading {
    font-size: 3.8rem;
    font-weight: 800;
    line-height: 1.1;
    color: #000;
    margin-bottom: 25px;
}

.ws-main-description {
    font-size: 1.1rem;
    line-height: 1.6;
    color: #333;
    margin-bottom: 40px;
}

/* Feature Grid */
.ws-features-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}

.ws-feature-item {
    background: #fff;
    padding: 40px 30px;
}

.ws-feature-icon {
    margin-bottom: 20px;
    color: #000;
}

.ws-feature-title {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 15px;
}

.ws-feature-text {
    font-size: 0.95rem;
    line-height: 1.5;
    color: #555;
}

/* Mobile Responsiveness */
@media (max-width: 992px) {
    .ws-grid-wrapper { grid-template-columns: 1fr; gap: 50px; }
    .ws-primary-heading { font-size: 2.8rem; }
    .ws-image-stack { height: auto; display: flex; flex-direction: column; }
    .ws-img-front { position: static; width: 100%; border: none; margin-top: 20px; }
    .ws-img-back { width: 100%; }
    .ws-features-row { grid-template-columns: 1fr; }
}
/* Our Benefits */
.ob-benefits-section {
    background-color: #1a1a1a;
    color: #ffffff;
    padding: 100px 0;
    font-family: 'Inter', sans-serif;
}

.ob-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header & Top Grid Layout */
.ob-header-col{
    display: flex;
    flex-direction: column;
    align-items: start;
    gap: 30px;
}
.ob-top-layout {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 60px;
}
.ob-top-img{
    width: 100%;
    height: 350px;
}
.ob-top-img img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top;
}
.ob-sub-label {
    font-weight: 700;
    font-size: 0.9rem;
    display: block;
}

.ob-main-title {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.1;
}

.ob-header-desc {
    font-size: 1.1rem;
    line-height: 1.6;
    color: #ccc;
}

.ob-cta-btn {
    display: inline-block;
    background-color: #fdf5ef;
    color: #000;
    padding: 18px 45px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.1rem;
}

/* Benefit Grid Boxes */
.ob-grid-col {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.ob-benefit-box {
    border: 1px solid rgba(255,255,255,0.8);
    padding: 40px 30px;
}

.ob-benefit-icon {
    margin-bottom: 20px;
    opacity: 0.9;
}

.ob-benefit-box h4 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 15px;
}

.ob-benefit-box p {
    font-size: 0.9rem;
    line-height: 1.6;
    color: #ccc;
}

/* Bottom Image and Checklist */

.ob-checklist-area {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    border-top: 1px solid rgba(255,255,255,0.2);
    padding-top: 40px;
    margin-top: 50px;
}

.ob-check-item {
    display: flex;
    align-items: center;
    gap: 15px;
    font-weight: 600;
    font-size: 0.95rem;
}

.ob-icon-circle {
    background-color: #ffffff;
    color: #000;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

/* Responsive */
@media (max-width: 992px) {
    .ob-main-title { font-size: 2.8rem; }
    .ob-checklist-area { grid-template-columns: 1fr; }
}

/* Our Team */
.ot-team-section {
    padding: 100px 0;
    background-color: #ffffff;
    font-family: 'Inter', sans-serif;
}

.ot-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header Styling */
.ot-team-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 60px;
}

.ot-sub-text {
    font-weight: 700;
    font-size: 0.9rem;
    display: block;
    margin-bottom: 10px;
}

.ot-main-title {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.1;
    color: #000;
    margin: 0;
}

.ot-btn-gold {
    background-color: #c5a880;
    color: #000;
    padding: 18px 40px;
    text-decoration: none;
    font-weight: 700;
    transition: background-color 0.3s ease;
}

.ot-btn-gold:hover {
    background-color: #b0946d;
}

/* Team Grid */
.ot-team-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
}

.ot-team-card {
    text-align: center;
}

.ot-image-wrapper {
    width: 100%;
    height: 320px; /* Specific height for the portraits */
    margin-bottom: 20px;
    overflow: hidden;
}

.ot-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
}

/* Hover Zoom Effect */
.ot-team-card:hover .ot-image-wrapper img {
    transform: scale(1.05);
}

.ot-member-info {
    padding: 10px 0;
}

.ot-member-name {
    font-size: 1.5rem;
    font-weight: 800;
    color: #000;
    margin: 0 0 5px 0;
}

.ot-member-role {
    font-size: 1rem;
    color: #666;
    display: block;
}

/* Responsive Layout */
@media (max-width: 992px) {
    .ot-team-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
    .ot-main-title { font-size: 2.8rem; }
    .ot-team-header { flex-direction: column; align-items: flex-start; gap: 20px; }
}

@media (max-width: 500px) {
    .ot-team-grid { grid-template-columns: 1fr; }
}
/* Our Expertise */
.ex-expertise-section {
    padding: 100px 0;
    background-color: #fdf5ef; /* Light cream background */
    font-family: 'Inter', sans-serif;
}

.ex-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.ex-grid-wrapper {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 60px;
    align-items: center;
}

/* Left Content */
.ex-top-label {
    font-weight: 700;
    font-size: 0.95rem;
    display: block;
    margin-bottom: 15px;
}

.ex-primary-heading {
    font-size: 3.8rem;
    font-weight: 800;
    line-height: 1.1;
    color: #000;
    margin-bottom: 30px;
}

.ex-main-description {
    font-size: 1.1rem;
    line-height: 1.6;
    color: #333;
    margin-bottom: 45px;
}

.ex-contact-btn {
    display: inline-block;
    background-color: #c5a880; /* Brand gold */
    color: #000;
    padding: 20px 45px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.1rem;
}

/* Right Pills */
.ex-pills-col {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.ex-row {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.ex-pill-item {
    background: #ffffff;
    border-radius: 50px;
    padding: 8px 25px 8px 8px;
    display: flex;
    align-items: center;
    gap: 15px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.03);
    white-space: nowrap;
}

.ex-pill-item img {
    width: 65px;
    height: 65px;
    border-radius: 50%;
    object-fit: cover;
}

.ex-pill-item span {
    font-weight: 600;
    font-size: 1.05rem;
    color: #000;
}

/* Pill Width Variations to match staggered look */
.ex-pill-long { align-self: flex-start; }
.ex-pill-xl { align-self: center; margin-left: -100px; } /* Pulls the bottom pill leftward */

/* Responsive */
@media (max-width: 992px) {
    .ex-grid-wrapper { grid-template-columns: 1fr; }
    .ex-primary-heading { font-size: 2.8rem; }
    .ex-pill-xl { margin-left: 0; align-self: flex-start; }
}
/* Services Banner Styles */
.sv-banner-hero {
    position: relative;
    width: 100%;
    height: 480px; /* Matching the visual height of your reference */
    background-image: linear-gradient(rgba(0, 0, 0, 0.65), rgba(0, 0, 0, 0.65)), 
                      url('https://images.unsplash.com/photo-1505664194779-8beaceb93744?q=80&w=2000'); /* Legal-themed library background */
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    color: #ffffff;
    font-family: 'Inter', sans-serif;
}

.sv-banner-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 30px;
    width: 100%;
}

.sv-banner-text-box {
    text-align: left;
}

/* Typography */
.sv-hero-title {
    font-size: 5.5rem; /* Large impact heading */
    font-weight: 600;
    margin: 0 0 15px 0;
    line-height: 1;
}

.sv-hero-breadcrumb {
    font-size: 1.2rem;
    font-weight: 600;
}

.sv-hero-breadcrumb a {
    color: #ffffff;
    text-decoration: none;
    transition: color 0.3s ease;
}

.sv-hero-breadcrumb a:hover {
    color: #c5a880; /* Consultify Gold Brand Color */
}

.sv-hero-breadcrumb span {
    color: #ffffff;
    opacity: 0.85;
}

/* Responsive Scaling */
@media (max-width: 768px) {
    .sv-banner-hero {
        height: 350px;
    }
    .sv-hero-title {
        font-size: 3.5rem;
    }
}
/* Blog Banner Styles */
.bl-banner-hero {
    position: relative;
    width: 100%;
    height: 480px; /* Standard hero height for the brand */
    background-image: linear-gradient(rgba(0, 0, 0, 0.65), rgba(0, 0, 0, 0.65)), 
                      url('https://images.unsplash.com/photo-1589829545856-d10d557cf95f?q=80&w=2000'); /* Professional legal backdrop */
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    color: #ffffff;
    font-family: 'Inter', sans-serif;
}

.bl-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    width: 100%;
}

.bl-banner-content {
    text-align: left;
}

/* Typography */
.bl-hero-title {
    font-size: 5.5rem;
    font-weight: 600;
    margin: 0 0 10px 0;
    line-height: 1;
}

.bl-breadcrumb {
    font-size: 1.1rem;
    font-weight: 600;
}

.bl-breadcrumb a {
    color: #ffffff;
    text-decoration: none;
    transition: color 0.3s ease;
}

.bl-breadcrumb a:hover {
    color: #c5a880; /* Consultify brand gold */
}

.bl-breadcrumb span {
    color: #ffffff;
    opacity: 0.9;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .bl-banner-hero {
        height: 350px;
    }
    .bl-hero-title {
        font-size: 3.5rem;
    }
}
/* Blog Detail Banner Styles */
.bd-banner-hero {
    position: relative;
    width: 100%;
    height: 520px; /* Slightly taller to accommodate multi-line titles */
    background-image: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), 
                      url('https://images.unsplash.com/photo-1505664194779-8beaceb93744?q=80&w=2000'); /* Thematic legal library */
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    color: #ffffff;
    font-family: 'Inter', sans-serif;
}

.bd-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    width: 100%;
}

.bd-banner-content {
    text-align: left;
    max-width: 800px; /* Constrains title width for readability */
}

/* Typography */
.bd-article-title {
    font-size: 4rem;
    font-weight: 600;
    margin: 0 0 25px 0;
    line-height: 1.05;
}

.bd-meta-data {
    display: flex;
    gap: 20px;
    font-size: 1rem;
    font-weight: 500;
    opacity: 0.9;
}

.bd-meta-data span {
    display: flex;
    align-items: center;
    gap: 8px;
}

/* Responsive Adjustments */
@media (max-width: 992px) {
    .bd-article-title {
        font-size: 3.5rem;
    }
}

@media (max-width: 600px) {
    .bd-banner-hero {
        height: 400px;
    }
    .bd-article-title {
        font-size: 2.8rem;
    }
    .bd-meta-data {
        flex-direction: column;
        gap: 10px;
    }
}
/* Blog Content */
.bp-article-section {
    padding: 80px 0;
    background-color: #fdf5ef; /* Brand cream background */
    font-family: 'Inter', sans-serif;
}

.bp-container {
    max-width: 900px; /* Centered narrow column for readability */
    margin: 0 auto;
    padding: 0 20px;
}

.bp-featured-image {
    width: 100%;
    height: 500px;
    margin-bottom: 50px;
}

.bp-featured-image img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    object-position: center;
}

.bp-paragraph {
    font-size: 1.05rem;
    line-height: 1.7;
    color: #333;
    margin-bottom: 25px;
}

/* Quote Style */
.bp-quote-box {
    background-color: #1a1a1a;
    color: #ffffff;
    padding: 40px 50px;
    margin: 40px 0;
    display: flex;
    align-items: flex-start;
    gap: 25px;
}

.bp-quote-icon {
    flex-shrink: 0;
    color: #ffffff;
}

.bp-quote-box p {
    font-size: 1.2rem;
    font-weight: 600;
    line-height: 1.5;
    margin: 0;
}

/* Subheadings */
.bp-subheading {
    font-size: 2.5rem;
    font-weight: 800;
    color: #000;
    margin: 40px 0 20px 0;
}

/* Bulleted List */
.bp-list {
    margin-bottom: 30px;
    padding-left: 20px;
}

.bp-list li {
    font-size: 1.05rem;
    line-height: 1.8;
    color: #333;
    margin-bottom: 10px;
    position: relative;
    list-style-type: disc;
}

.bp-divider {
    border: none;
    border-top: 1px solid #dcdcdc;
    margin: 40px 0 20px 0;
}

/* Footer Area */
.bp-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.bp-tag-label {
    font-weight: 800;
    font-size: 1.1rem;
    margin-right: 15px;
}

.bp-tag {
    background-color: #1a1a1a;
    color: #fff;
    padding: 6px 15px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-right: 8px;
    cursor: pointer;
}

.bp-socials {
    display: flex;
    gap: 20px;
}

.bp-socials a {
    color: #000;
    font-size: 1.2rem;
    transition: color 0.3s;
}

.bp-socials a:hover {
    color: #c5a880;
}

/* Mobile Adjustments */
@media (max-width: 768px) {
    .bp-subheading { font-size: 1.8rem; }
    .bp-quote-box { padding: 30px; flex-direction: column; }
    .bp-footer { flex-direction: column; align-items: flex-start; gap: 20px; }
}
/* Leave a Reply */
.lr-reply-section {
    background-color: #fdf5ef; /* Brand cream background */
    padding: 60px 0 100px 0;
    font-family: 'Inter', sans-serif;
}

.lr-container {
    max-width: 900px; /* Aligned with the blog content width */
    margin: 0 auto;
    padding: 0 20px;
}

.lr-title {
    font-size: 2rem;
    font-weight: 800;
    color: #000;
    margin-bottom: 10px;
}

.lr-subtitle {
    font-size: 0.95rem;
    color: #333;
    margin-bottom: 40px;
}

.lr-form {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

/* Field Labels */
.lr-form label {
    display: block;
    font-weight: 600;
    font-size: 1rem;
    margin-bottom: 10px;
}

/* Inputs and Textarea */
.lr-form input[type="text"],
.lr-form input[type="email"],
.lr-form input[type="url"],
.lr-form textarea {
    width: 100%;
    padding: 20px;
    border: 1px solid transparent; /* Reference shows clean white fields */
    background-color: #ffffff;
    font-size: 1rem;
    box-sizing: border-box;
}

.lr-form textarea {
    height: 250px;
    resize: none;
}

/* Responsive Grid */
.lr-input-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

/* Checkbox Style */
.lr-checkbox-area {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 10px;
}

.lr-checkbox-area input {
    width: 18px;
    height: 18px;
    cursor: pointer;
}

.lr-checkbox-area label {
    margin-bottom: 0;
    font-weight: 400;
    font-size: 0.9rem;
    cursor: pointer;
}

/* Submit Button */
.lr-submit-btn {
    background-color: #1a1a1a;
    color: #ffffff;
    border: none;
    padding: 20px 45px;
    font-size: 1.1rem;
    font-weight: 700;
    width: fit-content;
    cursor: pointer;
    margin-top: 20px;
    transition: background-color 0.3s;
}

.lr-submit-btn:hover {
    background-color: #333333;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .lr-input-grid {
        grid-template-columns: 1fr;
    }
    .lr-submit-btn {
        width: 100%;
    }
}
/* FAQs Banner Styles */
.fq-banner-hero {
    position: relative;
    width: 100%;
    height: 480px; /* Standard internal page banner height */
    background-image: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), 
                      url('https://images.unsplash.com/photo-1505664194779-8beaceb93744?q=80&w=2000'); /* Legal library background */
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    color: #ffffff;
    font-family: 'Inter', sans-serif;
}

.fq-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    width: 100%;
}

.fq-banner-content {
    text-align: left;
}

/* Typography */
.fq-hero-title {
    font-size: 5.5rem;
    font-weight: 600;
    margin: 0 0 10px 0;
    line-height: 1;
}

.fq-breadcrumb {
    font-size: 1.1rem;
    font-weight: 600;
}

.fq-breadcrumb a {
    color: #ffffff;
    text-decoration: none;
    transition: color 0.3s ease;
}

.fq-breadcrumb a:hover {
    color: #c5a880; /* Consultify brand gold */
}

.fq-breadcrumb span {
    color: #ffffff;
    opacity: 0.85;
}

/* Responsive Scaling */
@media (max-width: 992px) {
    .fq-hero-title {
        font-size: 3.8rem;
    }
}

@media (max-width: 600px) {
    .fq-banner-hero {
        height: 350px;
    }
    .fq-hero-title {
        font-size: 2.8rem;
    }
}
/* FAQs */
/* Layout & Background */
.faqs-section {
    background-color: #fdf5ef; /* Exact cream match */
    padding: 100px 0;
    font-family: 'Inter', sans-serif;
}

.faqs-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    padding: 0 20px;
}

/* Sidebar Styling */
.faqs-category-nav {
    background: #fff;
    padding: 15px;
    margin-bottom: 30px;
}

.category-link {
    display: flex;
    justify-content: space-between;
    padding: 18px 25px;
    background: #fdf5ef;
    margin-bottom: 12px;
    text-decoration: none;
    color: #000;
    font-weight: 700;
    font-size: 1.1rem;
}

.category-link:last-child { margin-bottom: 0; }

/* Accordion Design */
.faq-group-title {
    font-size: 2.2rem;
    font-weight: 800;
    margin-bottom: 35px;
    color: #000;
}

.faq-item {
    border: 1px solid #000; /* Precise thin border */
    margin-bottom: 15px;
    background: #fdf5ef;
}

.faq-item input[type="checkbox"] { display: none; }

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 22px 30px;
    font-weight: 800;
    font-size: 1.15rem;
    cursor: pointer;
}

/* Plus/Minus Toggle Logic */
.faq-plus-icon::before { content: "+"; font-size: 1.6rem; font-weight: 900; }

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease-in-out;
    padding: 0 30px;
}

.faq-item input:checked ~ .faq-answer {
    max-height: 300px;
    padding: 0 30px 30px 30px;
}

.faq-item input:checked ~ .faq-question .faq-plus-icon::before {
    content: "−"; /* Matching the clean minus sign */
}

/* Support Card Styling */
.faqs-support-card {
    background: linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.6)), 
                url('https://images.unsplash.com/photo-1589829545856-d10d557cf95f?q=80&w=600');
    background-size: cover;
    color: #fff;
    text-align: center;
}

.support-icon-circle {
    background: #c5a880;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 20px 0;
    font-size: 1.5rem;
}

.support-overlay { padding: 50px 30px; display: flex; flex-direction: column; align-items: start; }
.support-overlay h3 { font-size: 1.5rem; margin-bottom: 15px; }

.support-phone-bar {
    background: #c5a880; /* Consultify Gold */
    padding: 20px;
    color: #fff;
    font-weight: 800;
    font-size: 1.3rem;
}
/* Contact Banner Styles */
.cn-banner-hero {
    position: relative;
    width: 100%;
    height: 480px; /* Aligned with other subpage banners */
    background-image: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), 
                      url('https://images.unsplash.com/photo-1505664194779-8beaceb93744?q=80&w=2000'); /* Thematic library background */
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    color: #ffffff;
    font-family: 'Inter', sans-serif;
}

.cn-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    width: 100%;
}

/* Typography */
.cn-hero-title {
    font-size: 5.5rem;
    font-weight: 600;
    margin: 0 0 10px 0;
    line-height: 1.1;
}

.cn-breadcrumb {
    font-size: 1.15rem;
    font-weight: 600;
}

.cn-breadcrumb a {
    color: #ffffff;
    text-decoration: none;
    transition: color 0.3s ease;
}

.cn-breadcrumb a:hover {
    color: #c5a880; /* Consultify brand gold */
}

.cn-breadcrumb span {
    opacity: 0.9;
}

/* Responsive Scaling */
@media (max-width: 992px) {
    .cn-hero-title {
        font-size: 4rem;
    }
}

@media (max-width: 600px) {
    .cn-banner-hero {
        height: 380px;
    }
    .cn-hero-title {
        font-size: 3rem;
    }
}
/* Contact Us Section */
.cu-section {
    background-color: #fdf5ef; /* Brand cream */
    padding: 100px 0;
    font-family: 'Inter', sans-serif;
}

.cu-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    padding: 0 20px;
}

/* Left Column Styling */
.cu-tag { font-weight: 700; font-size: 0.9rem; display: block; margin-bottom: 15px; }
.cu-main-title { font-size: 3.5rem; font-weight: 800; line-height: 1.1; margin-bottom: 40px; }

.cu-details-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    margin-bottom: 40px;
    border-top: 1px solid #dcdcdc;
    padding-top: 40px;
}

.cu-detail-item { display: flex; align-items: center; gap: 15px; }
.cu-full-width { grid-column: span 2; }

.cu-icon-box {
    background-color: #c5a880; /* Brand gold icon circle */
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    color: #fff;
}

.cu-detail-item h3 { font-size: 1.1rem; font-weight: 800; margin-bottom: 5px; }
.cu-detail-item p { color: #555; font-size: 0.95rem; }

/* Hours Box */
.cu-hours-box {
    background-color: #c5a880;
    padding: 40px;
    color: #fff;
}

.cu-hours-box h3 { font-size: 1.5rem; margin-bottom: 25px; }
.cu-hour-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
    font-weight: 500;
}

.cu-dots {
    flex-grow: 1;
    border-bottom: 1px dotted rgba(255,255,255,0.6);
    margin: 0 15px;
    position: relative;
    top: -5px;
}

/* Form Column Styling */
.cu-form-column {
    background: #fff;
    padding: 60px;
}

.cu-form-title { font-size: 2.5rem; font-weight: 800; margin-bottom: 15px; }
.cu-form-subtitle { color: #555; margin-bottom: 40px; line-height: 1.6; }

.cu-actual-form { display: flex; flex-direction: column; gap: 20px; }
.cu-input-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }

.cu-actual-form input, 
.cu-actual-form textarea {
    background-color: #fdf5ef;
    border: none;
    padding: 20px;
    font-size: 1rem;
    width: 100%;
    box-sizing: border-box;
}

.cu-actual-form textarea { height: 180px; resize: none; }

.cu-submit-btn {
    background-color: #c5a880;
    color: #fff;
    border: none;
    padding: 20px;
    font-weight: 800;
    font-size: 1.1rem;
    cursor: pointer;
    margin-top: 10px;
}

/* Mobile Responsiveness */
@media (max-width: 992px) {
    .cu-container { grid-template-columns: 1fr; }
    .cu-main-title { font-size: 2.5rem; }
}
/* Map Section Styles */
.cu-map-section {
    width: 100%;
    line-height: 0; /* Removes potential white space at the bottom of the iframe */
    background-color: #fdf5ef; /* Matches the site's brand cream background */
}

.cu-map-wrapper {
    width: 100%;
    filter: grayscale(0.2) contrast(1.1); /* Subtle professional styling */
}

.cu-map-wrapper iframe {
    display: block;
    width: 100%;
    height: 550px; /* High visibility for navigation */
}

/* Mobile Adjustment */
@media (max-width: 768px) {
    .cu-map-wrapper iframe {
        height: 350px;
    }
}
/* --- Pixel Perfect Legal Hero Responsive Adjustments --- */

/* 1. Large Tablets (Adjusting Title & Spacing) */
@media (max-width: 1024px) {
    .ct-hero-section {
        height: auto !important;
        padding: 120px 0 80px !important;
        min-height: 700px !important;
    }

    .ct-hero-title {
        margin-bottom: 30px !important;
    }
}

/* 2. Tablets (The Content Shift) */
@media (max-width: 992px) {
    .ct-hero-content {
        text-align: center !important;
    }

    .ct-hero-actions {
        justify-content: center !important;
        gap: 20px !important;
    }

    .ct-hero-features {
        display: flex !important; /* Switch from inline-flex */
        flex-direction: row !important; /* Keep horizontal but wrap if needed */
        justify-content: center !important;
        flex-wrap: wrap !important;
        border: none !important; /* Remove border for a cleaner look */
        border-top: 1px solid rgba(255, 255, 255, 0.3) !important;
        background: rgba(255, 255, 255, 0.05) !important;
        backdrop-filter: blur(5px) !important;
    }

    .ct-hero-title br {
        display: none !important; /* Allow natural wrapping */
    }
}

/* 3. Mobile Devices (Action & Feature Logic) */
@media (max-width: 600px) {
    .ct-hero-section {
        padding: 100px 0 60px !important;
    }

    .ct-hero-badge {
        font-size: 0.9rem !important;
        background: var(--text-white);
        color: #000;
        display: inline-block;
        padding: 5px 15px;
        border-radius: 4px;
    }

    .ct-hero-title {
        font-size: 2.2rem !important; /* Fallback for older browsers */
        line-height: 1.2 !important;
    }

    .ct-hero-actions {
        flex-direction: column !important;
        align-items: stretch !important; /* Buttons take full width */
        width: 100%;
        max-width: 350px;
        margin: 0 auto 40px !important;
    }

    .ct-btn-outline {
        text-align: center !important;
        padding: 18px !important;
    }

    .ct-video-trigger {
        justify-content: center !important;
        padding: 10px 0;
    }

    .ct-play-icon {
        width: 50px !important;
        height: 50px !important;
    }

    /* Stack features on small screens */
    .ct-hero-features {
        flex-direction: column !important;
        align-items: center !important;
        gap: 20px !important;
        padding: 30px 20px !important;
    }
    
    .ct-feature-item {
        font-size: 1rem !important;
    }
}

/* 4. Small Phones (Optimizing Hero Height) */
@media (max-width: 400px) {
    .ct-hero-title {
        font-size: 1.8rem !important;
    }
    
    .ct-hero-features {
        background: transparent !important;
        border-top: 1px solid rgba(255, 255, 255, 0.2) !important;
    }
}
/* --- Pixel Perfect Legal About Responsive Adjustments --- */

/* 1. Large Screen Tweak (Gap Management) */
@media (max-width: 1200px) {
    .ct-about-grid {
        gap: 50px !important;
    }
    
    .ct-about-title {
        font-size: 2.5rem !important;
    }
}

/* 2. Tablets (Image Layout & Stats) */
@media (max-width: 991px) {
    .ct-about-section {
        padding: 70px 0 !important;
    }

    .ct-about-grid {
        grid-template-columns: 1fr !important;
        margin-bottom: 60px !important;
    }

    /* Fixing the overlapping images for mobile */
    .ct-image-large img {
        width: 90% !important; /* Give room for the small image */
        height: 400px !important;
    }

    .ct-image-small {
        width: 50% !important; /* Scale down to prevent overwhelming the section */
        bottom: -20px !important;
        border-width: 8px !important;
    }

    .ct-floating-badge {
        width: 90px !important;
        height: 90px !important;
        top: 20% !important;
    }

    .ct-stats-container {
        grid-template-columns: 1fr 1fr !important;
        gap: 40px !important;
        padding-top: 40px !important;
    }
}

/* 3. Mobile Phones (Alignment & Footer) */
@media (max-width: 768px) {
    .ct-about-footer {
        flex-direction: column !important;
        align-items: stretch !important; /* Buttons and box fill width */
        gap: 30px !important;
    }

    .ct-experience-box {
        width: 100% !important;
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
        gap: 20px !important;
        padding: 20px !important;
    }

    .ct-experience-box h3 {
        margin: 0 !important;
    }

    .ct-btn-gold {
        text-align: center !important;
    }
}

/* 4. Small Mobile Devices (Scaling Down) */
@media (max-width: 500px) {
    .ct-about-title {
        font-size: 1.8rem !important;
    }

    .ct-about-desc {
        font-size: 1rem !important;
    }

    /* Simplify image layout for narrow screens */
    .ct-image-large img {
        height: 300px !important;
    }

    .ct-image-small {
        position: relative !important; /* Remove absolute overlap for very small screens */
        width: 100% !important;
        right: 0 !important;
        bottom: 0 !important;
        margin-top: 15px !important;
        border: none !important;
        box-shadow: none !important;
    }

    .ct-floating-badge {
        display: none !important; /* Hide the badge on small mobile to avoid clutter */
    }

    .ct-stats-container {
        grid-template-columns: 1fr !important; /* Single column stats */
        gap: 25px !important;
    }

    .ct-stat-box {
        justify-content: center !important;
        text-align: center !important;
        flex-direction: column !important;
    }
}
/* --- Pixel Perfect Legal Services Responsive Adjustments --- */

/* 1. Large Laptops & Desktops */
@media (min-width: 1025px) {
    /* Equalize card heights so the 'Read More' links align perfectly */
    .ct-service-card {
        height: 100% !important;
    }
}

/* 2. Tablets & Small Laptops */
@media (max-width: 1024px) {
    .ct-services-section {
        padding: 80px 0 !important;
    }

    .ct-services-grid {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 20px !important;
    }

    .ct-main-title {
        font-size: 2.2rem !important;
    }
}

/* 3. Mobile Devices (The Layout Shift) */
@media (max-width: 768px) {
    .ct-services-header {
        text-align: left !important;
        margin-bottom: 40px !important;
    }

    .ct-main-title br {
        display: none !important; /* Prevents awkward breaks on narrow screens */
    }

    .ct-btn-explore {
        width: 100% !important; /* Full width button for easier tapping */
        text-align: center !important;
        padding: 16px !important;
    }

    .ct-services-grid {
        grid-template-columns: 1fr !important; /* Stacked cards */
        gap: 15px !important;
    }

    .ct-service-card {
        min-height: auto !important; /* Allow cards to shrink to content size */
        padding: 30px 25px !important;
    }

    .ct-service-icon {
        margin-bottom: 20px !important;
        font-size: 2rem !important;
    }

    /* Section Footer Optimization */
    .ct-services-footer {
        background: #fdf5e6 !important;
        padding: 25px !important;
        border-radius: 4px !important;
        margin-top: 20px !important;
    }

    .ct-footer-text {
        font-size: 1.1rem !important;
    }
}

/* 4. Extra Small Devices (320px - 400px) */
@media (max-width: 400px) {
    .ct-main-title {
        font-size: 1.8rem !important;
    }

    .ct-service-name {
        font-size: 1.2rem !important;
    }

    .ct-badge-free {
        width: 100% !important;
        text-align: center !important;
    }
}
/* --- Pixel Perfect "Stand With You" Responsive Adjustments --- */

/* 1. Tablets & Small Laptops */
@media (max-width: 1024px) {
    .ct-stand-section {
        padding: 80px 0 !important;
    }

    .ct-stand-grid {
        grid-template-columns: 1fr !important; /* Stack visual over content */
        text-align: center !important;
    }

    .ct-stand-visuals {
        height: 500px !important;
        max-width: 700px !important;
        margin: 0 auto !important;
    }

    .ct-stand-description {
        max-width: 800px !important;
        margin-left: auto !important;
        margin-right: auto !important;
    }
    .ct-stand-img-top img{
        margin-left: -400px;
    }
}

/* 2. Mobile Logic (Visual & Layout Overhaul) */
@media (max-width: 768px) {
    .ct-stand-title {
        font-size: 2.5rem !important;
        line-height: 1.2 !important;
    }

    /* Scaling the overlapping images to fit smaller viewports */
    .ct-stand-visuals {
        height: 400px !important;
        margin-bottom: 20px !important;
    }

    .ct-stand-img-top img {
        width: 300px !important;
        height: 300px !important;
        margin-left: -250px;
    }

    .ct-stand-img-bottom img {
        width: 250px !important;
        height: 250px !important;
    }

    /* Fixing Info Cards for Mobile */
    .ct-info-cards-row {
        flex-direction: column !important;
        gap: 15px !important;
    }

    .ct-info-card {
        text-align: left !important; /* Keep text left-aligned for readability */
        padding: 30px !important;
        min-height: auto !important;
    }
}

/* 3. Small Mobile Devices (320px - 480px) */
@media (max-width: 480px) {
    .ct-stand-title {
        font-size: 2rem !important;
    }

    .ct-stand-section {
        padding: 60px 0 !important;
    }

    /* Simplify visuals for very narrow screens to prevent clutter */
    .ct-stand-visuals {
        height: 320px !important;
    }

    .ct-stand-img-top {
        width: 90% !important;
    }

    .ct-stand-img-bottom {
        width: 80% !important;
        right: -10px !important; /* Bleed off slightly for style */
    }

    .ct-card-icon {
        font-size: 1.8rem !important;
        margin-bottom: 15px !important;
    }

    .ct-info-card h3 {
        font-size: 1.2rem !important;
    }
    .ct-stand-img-top img {
        width: 200px !important;
        height: 200px !important;
        margin-left: -150px;
    }
    .ct-stand-img-bottom img {
        width: 200px !important;
        height: 200px !important;
        padding-right: 50px;
    }
}

/* 4. Extra Small Phones */
@media (max-width: 360px) {
    .ct-stand-title {
        font-size: 1.8rem !important;
    }
}
/* --- Pixel Perfect Legal Process Responsive Adjustments --- */

/* 1. Large Tablets & Small Laptops */
@media (max-width: 1024px) {
    .ct-process-section {
        padding-bottom: 70px !important;
    }

    .ct-process-stats {
        margin-bottom: 50px !important;
        padding: 40px 0 !important;
    }

    .ct-stats-grid-dark {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 40px 20px !important;
    }

    .ct-process-main-grid {
        grid-template-columns: 1fr !important; /* Stack text over image */
        gap: 50px !important;
    }

    .ct-process-image-side {
        order: 2; /* Ensures image stays below the steps */
    }
}

/* 2. Standard Mobile Devices */
@media (max-width: 768px) {
    .ct-process-title {
        font-size: 2.5rem !important;
        margin-bottom: 30px !important;
    }

    .ct-step-item {
        gap: 15px !important;
        padding: 25px 0 !important;
    }

    .ct-step-icon {
        font-size: 1.5rem !important;
    }

    .ct-step-content h3 {
        font-size: 1.2rem !important;
    }

    /* Refining the Stats for smaller screens */
    .ct-stat-header span {
        font-size: 1.8rem !important;
    }
}

/* 3. Small Mobile Devices (320px - 480px) */
@media (max-width: 480px) {
    .ct-process-section {
        padding-bottom: 50px !important;
    }

    .ct-stats-grid-dark {
        grid-template-columns: 1fr !important; /* Single column stats */
        gap: 30px !important;
    }

    .ct-stat-item-dark {
        text-align: center !important;
    }

    .ct-stat-header {
        justify-content: center !important;
    }

    .ct-process-title {
        font-size: 2rem !important;
    }

    /* Making steps more compact */
    .ct-step-item {
        flex-direction: column !important; /* Stack icon over text */
        text-align: center !important;
        gap: 10px !important;
    }

    .ct-step-icon {
        padding-top: 0 !important;
        margin-bottom: 10px !important;
        color: #c5a880; /* Adding the theme gold for visual pop on mobile */
    }

    .ct-process-image-side img {
        height: 300px !important;
    }
}

/* 4. Extra Small Phones */
@media (max-width: 360px) {
    .ct-process-title {
        font-size: 1.7rem !important;
    }
}
/* --- Pixel Perfect "Why Choose Us" Responsive Adjustments --- */

/* 1. Large Screen Fix (Equalizing Heights) */
@media (min-width: 1025px) {
    .ct-why-grid {
        /* Ensure all cards in a row have the exact same height */
        grid-auto-rows: 1fr; 
    }
}

/* 2. Tablets & Small Laptops */
@media (max-width: 1024px) {
    .ct-why-choose-section {
        padding: 80px 0 !important;
    }

    .ct-why-grid {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 20px !important;
    }

    /* Resetting the height override to allow content to breathe */
    .ct-why-grid div {
        height: auto !important;
        min-height: 380px !important;
    }

    .ct-why-title {
        font-size: 2.2rem !important;
    }
}

/* 3. Standard Mobile Logic */
@media (max-width: 768px) {
    .ct-why-header {
        margin-bottom: 40px !important;
    }

    .ct-btn-gold {
        width: 100% !important;
        text-align: center !important;
    }

    .ct-why-grid {
        grid-template-columns: 1fr !important; /* Stack vertically */
    }

    .ct-why-item {
        padding: 40px 30px !important;
        min-height: auto !important;
    }

    /* Keep images at a consistent, attractive height on mobile */
    .ct-img-card {
        height: 300px !important;
    }

    /* OPTIONAL: If you want to hide images on mobile to save scroll length 
       .ct-img-card { display: none !important; } 
    */
}

/* 4. Small Mobile Devices (Typography & Padding) */
@media (max-width: 480px) {
    .ct-why-title {
        font-size: 1.8rem !important;
    }

    .ct-why-number {
        font-size: 2.5rem !important;
    }

    .ct-why-item h3 {
        font-size: 1.2rem !important;
    }

    /* Ensure buttons are easy to tap */
    .ct-btn-black, .ct-btn-white {
        padding: 18px !important;
        display: block !important;
    }
}

/* 5. Extra Small Phones */
@media (max-width: 360px) {
    .ct-why-title {
        font-size: 1.6rem !important;
    }
}
/* --- Pixel Perfect Case Study Responsive Adjustments --- */

/* 1. Large Screen Refinement */
@media (min-width: 1025px) {
    /* Slightly dim the image initially to make the overlay text pop even more */
    .ct-case-item img {
        filter: brightness(0.9);
    }
    .ct-case-item:hover img {
        filter: brightness(1);
    }
}

/* 2. Tablets & Small Laptops */
@media (max-width: 1024px) {
    .ct-case-study-section {
        padding: 80px 0 !important;
    }

    .ct-case-grid {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 20px !important;
    }

    .ct-case-title {
        font-size: 2.2rem !important;
    }
}

/* 3. Mobile Devices (Overlay & Header Focus) */
@media (max-width: 768px) {
    .ct-case-header {
        margin-bottom: 40px !important;
    }

    .ct-case-title br {
        display: none !important; /* Prevent jagged text alignment */
    }

    .ct-btn-gold {
        width: 100% !important;
        text-align: center !important;
        padding: 16px !important;
    }

    .ct-case-grid {
        grid-template-columns: 1fr !important;
        gap: 15px !important;
    }

    .ct-case-item {
        height: 300px !important; /* Slightly shorter for faster scrolling */
    }

    /* Since mobile users can't hover, make the overlay more prominent */
    .ct-case-overlay {
        background: linear-gradient(to top, 
            rgba(0, 0, 0, 0.9) 0%, 
            rgba(0, 0, 0, 0.4) 50%, 
            rgba(0, 0, 0, 0) 100%) !important;
        padding: 25px 20px !important;
    }

    .ct-case-overlay h3 {
        font-size: 1.3rem !important;
    }

    .ct-case-overlay p {
        font-size: 0.9rem !important;
    }
}

/* 4. Extra Small Phones */
@media (max-width: 480px) {
    .ct-case-title {
        font-size: 1.8rem !important;
    }

    .ct-case-item {
        height: 280px !important;
    }
}

/* 5. Smallest Devices (320px) */
@media (max-width: 360px) {
    .ct-case-title {
        font-size: 1.6rem !important;
    }
}
/* --- Pixel Perfect Legal FAQ Responsive Adjustments --- */

/* 1. Large Screen Alignment */
@media (min-width: 1200px) {
    .ct-faq-grid {
        gap: 100px !important; /* Extra breathing room for the visual */
    }
}

/* 2. Tablets & Small Laptops */
@media (max-width: 1024px) {
    .ct-faq-section {
        padding: 80px 0 !important;
    }

    .ct-main-title {
        font-size: 2.5rem !important;
    }

    .ct-faq-grid {
        gap: 60px !important;
    }

    .ct-faq-img-container img {
        height: 450px !important;
    }
}

/* 3. Mobile Layout (The Stack) */
@media (max-width: 991px) {
    .ct-faq-header {
        flex-direction: column !important;
        align-items: flex-start !important;
        gap: 25px !important;
        margin-bottom: 40px !important;
    }

    .ct-btn-gold {
        width: 100% !important;
        text-align: center !important;
    }

    .ct-faq-grid {
        grid-template-columns: 1fr !important;
    }

    /* Handling the Visual & Review Card */
    .ct-faq-visual {
        margin-bottom: 40px !important;
        order: 2; /* Put the FAQ questions first for better UX */
    }

    .ct-review-card {
        position: absolute !important; /* Keep it overlapping for style */
        right: 0 !important;
        bottom: 20px !important;
        width: 220px !important;
        padding: 20px !important;
    }
}

/* 4. Small Mobile Devices */
@media (max-width: 600px) {
    .ct-main-title {
        font-size: 2rem !important;
    }

    .ct-faq-question {
        padding: 20px !important;
        font-size: 1rem !important;
    }

    .ct-faq-answer {
        padding: 0 20px 20px 20px !important;
    }

    .ct-faq-img-container img {
        height: 350px !important;
    }

    /* On very small screens, un-float the review card to prevent covering the lawyer */
    .ct-review-card {
        position: relative !important;
        right: 0 !important;
        bottom: 0 !important;
        width: 100% !important;
        margin-top: -50px !important;
        box-sizing: border-box !important;
    }
}

/* 5. Icon & Accordion Refinements */
@media (max-width: 400px) {
    .ct-faq-question span {
        padding-right: 15px !important; /* Space for the icon */
    }

    .ct-icon-box {
        flex-shrink: 0 !important; /* Prevents icon from squishing */
    }
}
/* --- Pixel Perfect Testimonials & Blog Responsive Adjustments --- */

/* 1. Testimonials: Layout & Slider Fixes */
@media (max-width: 1024px) {
    .ct-testi-layout {
        flex-direction: column !important; /* Stack gold box over slider */
    }

    .ct-testi-summary {
        width: 100% !important;
        padding: 40px !important;
        margin-bottom: 0 !important; /* Seamless connection to slider */
    }

    .ct-slider-container {
        margin-left: 0 !important; /* Remove the overlap offset */
        width: 100% !important;
    }

    .ct-main-title-ts {
        font-size: 2.5rem !important;
    }
}

@media (max-width: 768px) {
    .ct-slide-content {
        flex-direction: column !important; /* Image on top of text */
        padding: 30px !important;
        gap: 20px !important;
    }

    .ct-person-box img {
        width: 100% !important;
        height: 250px !important;
    }

    .ct-text-box {
        text-align: center !important;
    }

    .ct-testi-dots {
        position: relative !important;
        bottom: 0 !important;
        right: 0 !important;
        justify-content: center !important;
        padding-bottom: 30px !important;
    }

    .ct-name {
        font-size: 1.4rem !important;
    }
}

/* 2. Partners Bar: Logo Scrolling/Grid */
@media (max-width: 768px) {
    .ct-partners-bar {
        display: grid !important;
        grid-template-columns: repeat(3, 1fr) !important;
        gap: 30px !important;
        text-align: center !important;
    }
}

@media (max-width: 480px) {
    .ct-partners-bar {
        grid-template-columns: repeat(2, 1fr) !important;
    }
}

/* 3. Blog: Grid & Card Fixes */
@media (max-width: 992px) {
    .ct-blog-section {
        padding: 60px 0 !important;
    }

    .ct-blog-header {
        margin-bottom: 40px !important;
    }

    .ct-blog-grid {
        grid-template-columns: 1fr !important;
        gap: 20px !important;
    }

    .ct-blog-card {
        height: 350px !important; /* Shorter for mobile readability */
    }

    .ct-btn-gold {
        width: 100% !important;
        text-align: center !important;
    }
}

/* 4. Small Mobile Refinements (iPhone SE / Small Androids) */
@media (max-width: 480px) {
    .ct-main-title {
        font-size: 1.8rem !important;
    }

    .ct-testi-summary h3 {
        font-size: 1.2rem !important;
    }

    .ct-quote {
        font-size: 0.95rem !important;
    }

    .ct-blog-post-title {
        font-size: 1.2rem !important;
    }
}
/* --- Pixel Perfect Legal Footer Responsive Adjustments --- */

/* 1. Large Screen Refinement */
@media (min-width: 1200px) {
    .ct-footer-main {
        gap: 80px !important; /* Spacing out links for a premium feel */
    }
}

/* 2. Tablets & Small Laptops */
@media (max-width: 1024px) {
    .ct-footer {
        padding-top: 60px !important;
    }

    .ct-footer-title {
        font-size: 2rem !important;
    }

    .ct-footer-main {
        grid-template-columns: repeat(3, 1fr) !important;
        gap: 40px 60px !important;
    }
}

/* 3. Standard Mobile Logic */
@media (max-width: 768px) {
    .ct-footer-top {
        text-align: center !important;
        align-items: center !important;
    }

    .ct-newsletter-text {
        margin-bottom: 20px !important;
    }

    .ct-newsletter-form {
        flex-direction: column !important; /* Stack input and button */
        gap: 10px !important;
    }

    .ct-newsletter-form input {
        width: 100% !important;
        text-align: center !important;
    }

    .ct-newsletter-form button {
        width: 100% !important;
        padding: 18px !important;
    }

    .ct-footer-main {
        margin-bottom: 50px !important;
    }
}

/* 4. Small Mobile Devices (The "Single Column" Stack) */
@media (max-width: 500px) {
    .ct-footer-main {
        grid-template-columns: 1fr !important; /* Complete vertical stack */
        text-align: center !important;
    }

    .ct-footer-logo {
        justify-content: center !important;
    }

    .ct-footer-col h3 {
        margin-bottom: 15px !important;
        margin-top: 10px !important;
        color: #c5a880; /* Subtle gold accent for column headers */
    }

    .ct-footer-col ul li {
        margin-bottom: 15px !important; /* Larger touch targets for links */
    }

    .ct-footer-bottom {
        padding: 20px !important;
    }
}

/* 5. Extra Small Phones */
@media (max-width: 360px) {
    .ct-footer-title {
        font-size: 1.6rem !important;
    }
}
/* --- Pixel Perfect About Banner Responsive Adjustments --- */

/* 1. Large Screen Polish */
@media (min-width: 1200px) {
    .ct-about-banner {
        /* Subtle parallax-like feel by fixing background slightly */
        background-attachment: scroll; 
    }
}

/* 2. Tablets & Small Laptops */
@media (max-width: 1024px) {
    .ct-about-banner {
        height: 400px !important;
    }

    .ct-banner-title {
        font-size: 4rem !important;
    }
}

/* 3. Standard Mobile Logic (The Centering Shift) */
@media (max-width: 768px) {
    .ct-about-banner {
        height: 300px !important;
        /* Ensure the focus of the legal image stays centered on narrow screens */
        background-position: 70% center !important; 
    }

    .ct-banner-content {
        text-align: center !important; /* Center text for better mobile balance */
    }

    .ct-banner-title {
        font-size: 3rem !important;
        margin-bottom: 15px !important;
    }

    .ct-breadcrumb {
        font-size: 1rem !important;
        background: rgba(0, 0, 0, 0.2); /* Subtle pill-box effect */
        display: inline-block;
        padding: 8px 20px;
        border-radius: 50px;
    }
}

/* 4. Small Mobile Devices (iPhone SE / Small Androids) */
@media (max-width: 480px) {
    .ct-about-banner {
        height: 250px !important;
    }

    .ct-banner-title {
        font-size: 2.5rem !important;
    }

    .ct-breadcrumb {
        font-size: 0.9rem !important;
    }
}

/* 5. Extra Small Phones */
@media (max-width: 360px) {
    .ct-banner-title {
        font-size: 2.2rem !important;
    }
}
/* --- Pixel Perfect Approach Section Responsive Adjustments --- */

/* 1. Large Screen Alignment */
@media (min-width: 1200px) {
    .ct-approach-grid {
        gap: 40px !important;
    }
}

/* 2. Tablets & Small Laptops */
@media (max-width: 1024px) {
    .ct-approach-section {
        padding: 80px 0 !important;
    }

    .ct-approach-card {
        padding: 40px !important;
        height: auto !important; /* Allow text to dictate height */
        min-height: 280px !important;
    }

    .ct-main-title {
        font-size: 2.8rem !important;
    }
}

/* 3. Standard Mobile Logic (Stacking & Rhythms) */
@media (max-width: 991px) {
    .ct-approach-header {
        margin-bottom: 40px !important;
    }

    .ct-btn-gold {
        width: 100% !important;
        text-align: center !important;
    }

    .ct-approach-grid {
        grid-template-columns: 1fr !important; /* Vertical stack */
        gap: 20px !important;
    }

    .ct-approach-card.light {
        margin-top: 0 !important; /* Remove desktop-only offset */
    }

    .ct-approach-right {
        max-height: none !important;
        margin-top: 20px !important;
    }

    .ct-value-image-wrapper {
        height: 500px !important; /* Controlled height for mobile */
    }

    .ct-value-overlay {
        position: relative !important; /* Un-float for better legibility */
        bottom: 160px !important;
        left: 0 !important;
        right: 0 !important;
        margin-top: -60px !important; /* Slight overlap for style */
        width: 90% !important;
        margin-left: auto !important;
        margin-right: auto !important;
        box-shadow: 0 10px 30px rgba(0,0,0,0.1) !important;
    }
}

/* 4. Small Mobile Devices */
@media (max-width: 480px) {
    .ct-main-title {
        font-size: 2rem !important;
    }

    .ct-approach-card {
        padding: 30px !important;
    }

    .ct-approach-card h3, 
    .ct-value-overlay h3 {
        font-size: 1.5rem !important;
    }

    .ct-value-image-wrapper {
        height: 350px !important;
    }

    .ct-value-overlay {
        padding: 30px !important;
        width: 95% !important;
        margin-top: -40px !important;
    }
}

/* 5. Extra Small Phones */
@media (max-width: 360px) {
    .ct-main-title {
        font-size: 1.8rem !important;
    }
}
/* --- Pixel Perfect "Stand With You" Responsive Adjustments --- */

/* 1. Desktop Polish (Fixing the overlap) */
@media (min-width: 1200px) {
    .ws-image-stack {
        max-width: 500px; /* Keeps visuals from getting too wide */
    }
}

/* 2. Tablets & Small Laptops */
@media (max-width: 1024px) {
    .ws-stand-section {
        padding: 80px 0 !important;
    }

    .ws-grid-wrapper {
        gap: 40px !important;
    }

    .ws-primary-heading {
        font-size: 2.8rem !important;
    }

    .ws-img-back {
        width: 300px !important;
        height: 400px !important;
    }

    .ws-img-front {
        width: 280px !important;
        height: 320px !important;
    }
}

/* 3. Mobile Layout Refactoring */
@media (max-width: 991px) {
    .ws-grid-wrapper {
        grid-template-columns: 1fr !important;
        gap: 60px !important;
    }

    .ws-visuals-col {
        order: 2; /* Put images below text for faster content delivery */
    }

    /* Keep the stack aesthetic but make it fit mobile widths */
    .ws-image-stack {
        height: 450px !important;
        display: block !important;
        margin: 0 auto !important;
        max-width: 400px !important;
    }

    .ws-img-back {
        width: 80% !important;
        height: 350px !important;
    }

    .ws-img-front {
        position: absolute !important;
        bottom: 0 !important;
        right: 0 !important;
        width: 60% !important;
        height: 250px !important;
        border: 10px solid #fdf5ef !important;
        display: block !important;
    }

    .ws-stats-float {
        padding: 20px !important;
        width: 130px !important;
        bottom: 20px !important;
        left: -10px !important; /* Slight bleed for style */
    }

    .ws-stats-number {
        font-size: 2.2rem !important;
    }
}

/* 4. Small Mobile Devices (Typography & Feature Grid) */
@media (max-width: 600px) {
    .ws-primary-heading {
        font-size: 2.2rem !important;
    }

    .ws-features-row {
        grid-template-columns: 1fr !important; /* Stack features */
        gap: 15px !important;
    }

    .ws-feature-item {
        padding: 30px 20px !important;
    }

    .ws-image-stack {
        height: 380px !important;
    }
}

/* 5. Extra Small Phones */
@media (max-width: 400px) {
    .ws-image-stack {
        height: 320px !important;
    }

    .ws-stats-float {
        display: none; /* Hide float on tiny screens to avoid clutter */
    }
}
/* --- Pixel Perfect Benefits Responsive Adjustments --- */

/* 1. Large Screen & Tablet Refinements */
@media (max-width: 1100px) {
    .ob-top-layout {
        gap: 40px !important;
    }
    
    .ob-main-title {
        font-size: 3rem !important;
    }
}

/* 2. Standard Tablet/Mobile Transition */
@media (max-width: 991px) {
    .ob-top-layout {
        grid-template-columns: 1fr !important; /* Stack header over grid */
    }

    .ob-header-col {
        align-items: center !important; /* Center text for mobile balance */
        text-align: center !important;
        margin-bottom: 20px !important;
    }

    .ob-top-img {
        height: 300px !important;
        order: -1; /* Move image to the very top for mobile impact */
    }

    .ob-grid-col {
        margin-top: 40px !important;
    }

    .ob-checklist-area {
        grid-template-columns: 1fr !important;
        gap: 20px !important;
    }
}

/* 3. Small Mobile Devices (The "Single Column" Card Stack) */
@media (max-width: 650px) {
    .ob-grid-col {
        grid-template-columns: 1fr !important; /* Single column boxes */
    }

    .ob-benefit-box {
        padding: 30px 25px !important;
        text-align: center !important;
    }

    .ob-benefit-icon {
        display: flex !important;
        justify-content: center !important;
    }

    .ob-main-title {
        font-size: 2.2rem !important;
    }

    .ob-cta-btn {
        width: 100% !important;
        text-align: center !important;
    }
}

/* 4. Extra Small Phones (Checklist Polish) */
@media (max-width: 480px) {
    .ob-check-item {
        font-size: 0.85rem !important;
        line-height: 1.4 !important;
    }

    .ob-top-img {
        height: 250px !important;
    }
}
/* --- Pixel Perfect Team Section Responsive Adjustments --- */

/* 1. Tablet & Small Laptop (Refining the 2-column look) */
@media (max-width: 1024px) {
    .ot-team-section {
        padding: 80px 0 !important;
    }

    .ot-team-grid {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 30px !important;
    }

    .ot-main-title {
        font-size: 2.8rem !important;
    }
}

/* 2. Standard Mobile Logic (Header & Button) */
@media (max-width: 768px) {
    .ot-team-header {
        flex-direction: column !important;
        align-items: center !important; /* Centered for mobile impact */
        text-align: center !important;
        margin-bottom: 40px !important;
    }

    .ot-btn-gold {
        width: 100% !important;
        text-align: center !important;
        margin-top: 10px !important;
    }

    .ot-image-wrapper {
        height: 400px !important; /* Taller portraits for mobile focus */
    }
}

/* 3. Small Mobile Devices (The "Single Column" Portrait) */
@media (max-width: 500px) {
    .ot-team-grid {
        grid-template-columns: 1fr !important;
        gap: 40px !important;
    }

    .ot-image-wrapper {
        height: 350px !important;
    }

    .ot-member-name {
        font-size: 1.3rem !important;
    }

    .ot-member-role {
        font-size: 0.9rem !important;
    }
}

/* 4. Extra Small Phones */
@media (max-width: 360px) {
    .ot-main-title {
        font-size: 2rem !important;
    }
    
    .ot-image-wrapper {
        height: 300px !important;
    }
}
/* --- Pixel Perfect Expertise Section Responsive Adjustments --- */

/* 1. Large Screen Polish */
@media (min-width: 1200px) {
    .ex-grid-wrapper {
        gap: 100px !important; /* Extra breathing room for the pills */
    }
}

/* 2. Tablets & Small Laptops */
@media (max-width: 1024px) {
    .ex-primary-heading {
        font-size: 3rem !important;
    }

    .ex-pill-item span {
        font-size: 0.95rem !important;
    }

    .ex-pill-item img {
        width: 50px !important;
        height: 50px !important;
    }
}

/* 3. Standard Mobile Logic (The Grid Collapse) */
@media (max-width: 991px) {
    .ex-expertise-section {
        padding: 80px 0 !important;
    }

    .ex-grid-wrapper {
        grid-template-columns: 1fr !important;
        text-align: center !important;
        gap: 50px !important;
    }

    .ex-content-col {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .ex-contact-btn {
        width: 100% !important; /* Mobile-friendly tap target */
        max-width: 300px;
    }

    .ex-pills-col {
        align-items: center !important;
    }

    .ex-row {
        justify-content: center !important;
    }

    .ex-pill-xl {
        margin-left: 0 !important; /* Remove the desktop offset */
        align-self: center !important;
    }
}

/* 4. Small Mobile Devices (The "Wrap" Logic) */
@media (max-width: 600px) {
    .ex-pill-item {
        white-space: normal !important; /* Allow long titles to wrap */
        padding: 8px 15px 8px 8px !important;
        text-align: left !important;
        width: auto !important;
    }

    .ex-pill-item span {
        font-size: 0.85rem !important;
        line-height: 1.2 !important;
    }

    .ex-primary-heading {
        font-size: 2.2rem !important;
    }

    .ex-row {
        gap: 10px !important;
        justify-content: start !important;
    }
    .ex-pill-xl {
        align-self: flex-start !important;
    }
}

/* 5. Extra Small Phones */
@media (max-width: 380px) {
    .ex-pill-item img {
        width: 40px !important;
        height: 40px !important;
    }
    
    .ex-pill-item {
        gap: 10px !important;
    }
}
/* --- Pixel Perfect Services Banner Responsive Adjustments --- */

/* 1. Large Screen & Ultra-wide Refinement */
@media (min-width: 1400px) {
    .sv-banner-hero {
        height: 520px !important; /* Slightly taller for ultra-wide monitors */
    }
}

/* 2. Tablets & Small Laptops */
@media (max-width: 1024px) {
    .sv-banner-hero {
        height: 400px !important;
    }

    .sv-hero-title {
        font-size: 4.5rem !important;
    }
}

/* 3. Standard Mobile Logic (Centering & Readability) */
@media (max-width: 768px) {
    .sv-banner-hero {
        height: 320px !important;
        /* Focused background positioning for mobile aspect ratios */
        background-position: center left !important; 
    }

    .sv-banner-text-box {
        text-align: center !important; /* Better balance for stacked mobile content */
    }

    .sv-hero-title {
        font-size: 3.2rem !important;
        margin-bottom: 10px !important;
    }

    .sv-hero-breadcrumb {
        font-size: 1rem !important;
    }
}

/* 4. Small Mobile Devices (iPhone SE / Small Androids) */
@media (max-width: 480px) {
    .sv-banner-hero {
        height: 280px !important;
    }

    .sv-hero-title {
        font-size: 2.8rem !important;
    }

    /* Add a subtle dark backdrop to text for readability over library image */
    .sv-banner-text-box {
        background: rgba(0, 0, 0, 0.2);
        padding: 20px;
        border-radius: 4px;
        backdrop-filter: blur(2px);
    }
}

/* 5. Extra Small Phones */
@media (max-width: 360px) {
    .sv-hero-title {
        font-size: 2.4rem !important;
    }
}
/* --- Pixel Perfect Blog Banner Responsive Adjustments --- */

/* 1. Large Screen & Precision Alignment */
@media (min-width: 1200px) {
    .bl-banner-hero {
        /* Ensuring a crisp parallax-style focal point */
        background-position: center 25% !important;
    }
}

/* 2. Tablets & Small Laptops */
@media (max-width: 1024px) {
    .bl-banner-hero {
        height: 400px !important;
    }

    .bl-hero-title {
        font-size: 4.5rem !important; /* Stepping down from 5.5rem */
    }
}

/* 3. Standard Mobile Logic (Centering & Focus) */
@media (max-width: 768px) {
    .bl-banner-hero {
        height: 300px !important;
        background-position: 65% center !important; /* Keep the legal details in view */
    }

    .bl-banner-content {
        text-align: center !important; /* Center for mobile visual balance */
    }

    .bl-hero-title {
        font-size: 3.2rem !important; /* Compact but still bold */
        margin-bottom: 12px !important;
    }

    .bl-breadcrumb {
        font-size: 1rem !important;
        letter-spacing: 0.5px;
    }
}

/* 4. Small Mobile Devices (iPhone SE / Small Androids) */
@media (max-width: 480px) {
    .bl-banner-hero {
        height: 260px !important;
    }

    .bl-hero-title {
        font-size: 2.8rem !important;
    }

    .bl-breadcrumb {
        font-size: 0.9rem !important;
        background: rgba(0, 0, 0, 0.15); /* Subtle contrast boost */
        display: inline-block;
        padding: 5px 15px;
        border-radius: 20px;
    }
}

/* 5. Extra Small Phones */
@media (max-width: 360px) {
    .bl-hero-title {
        font-size: 2.4rem !important;
    }
}
/* --- Pixel Perfect Blog Detail Responsive Adjustments --- */

/* 1. Large Screen Polish */
@media (min-width: 1200px) {
    .bd-banner-hero {
        background-attachment: fixed; /* Creates a smooth parallax depth effect */
    }
}

/* 2. Tablets & Small Laptops */
@media (max-width: 1024px) {
    .bd-banner-hero {
        height: 480px !important;
    }

    .bd-article-title {
        font-size: 3.2rem !important;
        max-width: 90%; /* Prevent text from hitting the edges */
    }
}

/* 3. Standard Mobile Logic (Title & Metadata Stack) */
@media (max-width: 768px) {
    .bd-banner-hero {
        height: auto !important;
        min-height: 400px !important;
        padding: 60px 0 !important; /* Switch to padding for dynamic title heights */
    }

    .bd-banner-content {
        text-align: center !important; /* Centered layout feels more like a "cover" */
        margin: 0 auto;
    }

    .bd-article-title {
        font-size: 2.5rem !important;
        line-height: 1.2 !important;
        margin-bottom: 20px !important;
    }

    .bd-meta-data {
        justify-content: center !important;
        flex-wrap: wrap !important;
        font-size: 0.9rem !important;
    }
}

/* 4. Small Mobile Devices (iPhone SE / Small Androids) */
@media (max-width: 480px) {
    .bd-banner-hero {
        min-height: 350px !important;
    }

    .bd-article-title {
        font-size: 2rem !important;
    }

    .bd-meta-data {
        flex-direction: column !important; /* Stack date and category vertically */
        align-items: center !important;
        gap: 8px !important;
    }

    .bd-meta-data span {
        background: rgba(255, 255, 255, 0.1); /* Subtle "badge" effect for metadata */
        padding: 4px 12px;
        border-radius: 15px;
    }
}

/* 5. Extra Small Phones */
@media (max-width: 360px) {
    .bd-article-title {
        font-size: 1.8rem !important;
    }
}
/* --- Pixel Perfect Blog Content Responsive Adjustments --- */

/* 1. Typography & Readability (Standard Screens) */
@media (min-width: 768px) {
    .bp-paragraph {
        text-align: justify; /* Provides a clean, "newspaper" legal look on desktop */
    }
}

/* 2. Tablet & Medium Screens */
@media (max-width: 1024px) {
    .bp-container {
        max-width: 720px !important; /* Slightly narrower for better line-length focus */
    }
    
    .bp-featured-image {
        height: 400px !important;
    }
}

/* 3. Mobile Layout Refactoring */
@media (max-width: 768px) {
    .bp-article-section {
        padding: 50px 0 !important;
    }

    .bp-featured-image {
        height: 250px !important; /* Shorter image to get to the text faster */
        margin-bottom: 30px !important;
    }

    .bp-subheading {
        font-size: 1.8rem !important;
        line-height: 1.3 !important;
    }

    /* Stack the quote content vertically */
    .bp-quote-box {
        padding: 30px 25px !important;
        flex-direction: column !important;
        gap: 15px !important;
    }

    .bp-quote-icon svg {
        width: 30px !important;
        height: 30px !important;
    }

    .bp-quote-box p {
        font-size: 1.1rem !important;
    }
}

/* 4. Small Mobile Devices (The Footer & Socials) */
@media (max-width: 500px) {
    .bp-paragraph, .bp-list li {
        font-size: 1rem !important;
        line-height: 1.6 !important;
    }

    .bp-footer {
        flex-direction: column !important;
        align-items: center !important; /* Centered footer for mobile symmetry */
        gap: 25px !important;
    }

    .bp-tags {
        display: flex !important;
        flex-wrap: wrap !important;
        justify-content: center !important;
        gap: 10px !important;
    }

    .bp-tag-label {
        width: 100% !important;
        text-align: center !important;
        margin-right: 0 !important;
        margin-bottom: 10px !important;
    }

    .bp-tag {
        margin: 0 !important; /* Controlled by gap instead */
    }
}

/* 5. Extra Small Phones */
@media (max-width: 360px) {
    .bp-featured-image {
        height: 200px !important;
    }
    
    .bp-subheading {
        font-size: 1.5rem !important;
    }
}
/* --- Pixel Perfect Reply Form Responsive Adjustments --- */

/* 1. Large Screen Focus */
@media (min-width: 1200px) {
    /* Slight focus effect for better UX */
    .lr-form input:focus, 
    .lr-form textarea:focus {
        outline: none;
        border-color: #c5a880 !important; /* Brand Gold focus border */
        box-shadow: 0 0 8px rgba(197, 168, 128, 0.1);
    }
}

/* 2. Tablets & Medium Screens */
@media (max-width: 992px) {
    .lr-input-grid {
        grid-template-columns: repeat(2, 1fr) !important; /* 2 columns on tablets */
    }
    
    /* Make the third item (website) span both columns for a clean look */
    .lr-field:nth-child(3) {
        grid-column: span 2;
    }
}

/* 3. Standard Mobile Logic (Single Column Stack) */
@media (max-width: 768px) {
    .lr-reply-section {
        padding: 50px 0 80px 0 !important;
    }

    .lr-title {
        font-size: 1.75rem !important;
        text-align: center;
    }

    .lr-subtitle {
        text-align: center;
        margin-bottom: 30px !important;
    }

    .lr-input-grid {
        grid-template-columns: 1fr !important;
        gap: 15px !important;
    }

    .lr-field:nth-child(3) {
        grid-column: span 1;
    }

    .lr-form textarea {
        height: 180px !important; /* Shorter textarea to keep submit button visible */
    }

    .lr-submit-btn {
        width: 100% !important;
        padding: 18px !important;
    }
}

/* 4. Small Mobile Devices (Input Polish) */
@media (max-width: 480px) {
    .lr-form input, 
    .lr-form textarea {
        padding: 15px !important; /* Slightly more compact padding for small screens */
        font-size: 16px !important; /* Critical: Prevents iOS auto-zoom on focus */
    }

    .lr-checkbox-area {
        align-items: flex-start !important; /* Better for multi-line checkbox labels */
    }

    .lr-checkbox-area input {
        margin-top: 3px; /* Aligns checkbox with the first line of text */
    }
}

/* 5. Extra Small Phones */
@media (max-width: 360px) {
    .lr-title {
        font-size: 1.5rem !important;
    }
}
/* --- Pixel Perfect FAQ Banner Responsive Adjustments --- */

/* 1. Large Screen Precision */
@media (min-width: 1400px) {
    .fq-banner-hero {
        height: 520px !important; /* Extra height for high-resolution displays */
    }
}

/* 2. Tablets & Small Laptops */
@media (max-width: 1024px) {
    .fq-banner-hero {
        height: 420px !important;
    }

    .fq-hero-title {
        font-size: 4.5rem !important; /* Gradual step down */
    }
}

/* 3. Standard Mobile Logic (Stacking & Alignment) */
@media (max-width: 768px) {
    .fq-banner-hero {
        height: 320px !important;
        background-position: center left !important; /* Keep the visual details visible */
    }

    .fq-banner-content {
        text-align: center !important; /* Centered layout for mobile symmetry */
    }

    .fq-hero-title {
        font-size: 3rem !important; /* Fits "Frequently asked" better on one line */
        margin-bottom: 12px !important;
    }

    .fq-breadcrumb {
        font-size: 1rem !important;
    }
}

/* 4. Small Mobile Devices (iPhone SE / Small Androids) */
@media (max-width: 480px) {
    .fq-banner-hero {
        height: 280px !important;
    }

    .fq-hero-title {
        font-size: 2.4rem !important; /* Prevents awkward word wrapping */
        line-height: 1.1 !important;
    }

    .fq-breadcrumb {
        font-size: 0.9rem !important;
        opacity: 0.95;
    }
}

/* 5. Extra Small Phones */
@media (max-width: 360px) {
    .fq-hero-title {
        font-size: 2.1rem !important;
    }
}
/* --- Pixel Perfect FAQ & Contact Responsive Adjustments --- */

/* 1. Tablet & Large Screen Grid Logic */
@media (max-width: 1100px) {
    .faqs-container {
        grid-template-columns: 1fr 1.5fr !important; /* Give more room to the questions */
        gap: 40px !important;
    }

    .faq-group-title {
        font-size: 1.8rem !important;
    }
}

/* 2. Standard Mobile Logic (Stacking the Sidebar) */
@media (max-width: 991px) {
    .faqs-section {
        padding: 60px 0 !important;
    }

    .faqs-container {
        grid-template-columns: 1fr !important; /* Stack sidebar on top of content */
        gap: 50px !important;
    }

    .faqs-sidebar {
        order: 2; /* Move sidebar/support card BELOW the questions for mobile UX */
    }

    .faqs-main-content {
        order: 1;
    }

    .faq-question {
        padding: 18px 20px !important;
        font-size: 1.05rem !important;
    }
}

/* 3. Navigation & Support Card Refinement */
@media (max-width: 768px) {
    .category-link {
        padding: 15px 20px !important;
        font-size: 1rem !important;
    }

    .support-overlay {
        align-items: center !important; /* Center text in the support card for mobile */
        text-align: center !important;
    }

    .support-icon-circle {
        margin: 0 auto 20px auto !important;
    }

    .support-phone-bar {
        text-align: center !important;
        font-size: 1.1rem !important;
    }
}

/* 4. Small Mobile Devices (Contact Banner & FAQ Polish) */
@media (max-width: 480px) {
    .cn-hero-title {
        font-size: 2.8rem !important;
        line-height: 1.2 !important;
    }

    .faq-group-title {
        font-size: 1.5rem !important;
        text-align: center;
        margin-bottom: 25px !important;
    }

    .faq-answer p {
        font-size: 0.95rem !important;
        line-height: 1.6 !important;
    }

    .faq-item input:checked ~ .faq-answer {
        padding: 0 20px 20px 20px !important; /* Tighter padding for small screens */
    }
}

/* 5. Extra Small Phones */
@media (max-width: 360px) {
    .cn-hero-title {
        font-size: 2.2rem !important;
    }
    
    .support-phone-bar {
        font-size: 1rem !important;
    }
}
/* --- Pixel Perfect Contact Us Responsive Adjustments --- */
/* --- Pixel Perfect Contact Banner Responsive Adjustments --- */

/* 1. Ultra-Wide Screens */
@media (min-width: 1400px) {
    .cn-banner-hero {
        height: 520px !important; /* Extra breathing room for high-res monitors */
    }
}

/* 2. Tablets & Small Laptops */
@media (max-width: 1024px) {
    .cn-banner-hero {
        height: 420px !important;
    }

    .cn-hero-title {
        font-size: 4.5rem !important;
    }
}

/* 3. Standard Mobile Logic (Centering & Height) */
@media (max-width: 768px) {
    .cn-banner-hero {
        height: 320px !important;
        background-position: 40% center !important; /* Adjust focal point of the library image */
    }

    .cn-banner-content {
        text-align: center !important; /* Center alignment for a cleaner mobile layout */
    }

    .cn-hero-title {
        font-size: 3.2rem !important;
        margin-bottom: 12px !important;
    }

    .cn-breadcrumb {
        font-size: 1rem !important;
    }
}

/* 4. Small Mobile Devices (iPhone SE / Small Androids) */
@media (max-width: 480px) {
    .cn-banner-hero {
        height: 280px !important;
    }

    .cn-hero-title {
        font-size: 2.8rem !important;
        line-height: 1.1 !important;
    }

    .cn-breadcrumb {
        font-size: 0.9rem !important;
        letter-spacing: 0.5px;
    }
}

/* 5. Extra Small Phones */
@media (max-width: 360px) {
    .cn-hero-title {
        font-size: 2.4rem !important;
    }
}
/* 1. Large Screen Precision */
@media (min-width: 1200px) {
    .cu-form-column {
        /* Adds a subtle professional lift to the form container */
        box-shadow: 0 20px 40px rgba(0, 0, 0, 0.05);
        border-radius: 4px;
    }
}

/* 2. Tablets & Small Laptops */
@media (max-width: 1024px) {
    .cu-container {
        gap: 40px !important;
    }

    .cu-main-title {
        font-size: 2.8rem !important;
    }

    .cu-form-column {
        padding: 40px !important;
    }
}

/* 3. Standard Mobile Logic (Stacking & Readability) */
@media (max-width: 768px) {
    .cu-section {
        padding: 60px 0 !important;
    }

    .cu-container {
        grid-template-columns: 1fr !important; /* Stack columns */
        gap: 60px !important;
    }

    .cu-main-title {
        font-size: 2.2rem !important;
        text-align: center;
    }

    .cu-tag {
        text-align: center;
    }

    .cu-details-grid {
        grid-template-columns: 1fr !important; /* Detail items stack */
        gap: 20px !important;
    }

    .cu-detail-item {
        justify-content: center;
        text-align: center;
        flex-direction: column; /* Icon above text for better mobile balance */
    }

    .cu-full-width {
        grid-column: span 1 !important;
    }

    .cu-input-row {
        grid-template-columns: 1fr !important; /* Form inputs stack */
        gap: 15px !important;
    }
}

/* 4. Small Mobile Devices (The "Hours" & Form Polish) */
@media (max-width: 480px) {
    .cu-hours-box {
        padding: 30px 20px !important;
    }

    .cu-hour-row {
        font-size: 0.9rem !important;
    }

    .cu-dots {
        margin: 0 8px !important; /* Tighter dots for small screens */
    }

    .cu-form-column {
        padding: 30px 20px !important;
    }

    .cu-form-title {
        font-size: 1.8rem !important;
        text-align: center;
    }

    .cu-form-subtitle {
        text-align: center;
        font-size: 0.9rem !important;
    }

    .cu-actual-form input {
        font-size: 16px !important; /* Prevents iOS auto-zoom */
    }
}

/* 5. Extra Small Phones */
@media (max-width: 360px) {
    .cu-hour-row {
        flex-direction: column; /* Extreme fallback for tiny screens */
        gap: 5px;
        text-align: center;
    }

    .cu-dots {
        display: none; /* Hide dots if there's no room for a row layout */
    }
}


/* Ye rule icons ko text banne se rokta hai */
.material-symbols-outlined {
    font-family: 'Material Symbols Outlined' !important;
    display: inline-block;
    vertical-align: middle;
    font-weight: normal;
    font-style: normal;
    line-height: 1;
    text-transform: none;
    letter-spacing: normal;
    word-wrap: normal;
    white-space: nowrap;
    direction: ltr;
}

/* Icon Circle Styling */
.support-icon-circle {
    width: 60px;
    height: 60px;
    background: #f0f8ff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
}

.support-icon-circle .material-symbols-outlined {
    font-size: 32px;
    color: #c5a880;
}

/* Phone Bar Alignment */
.support-phone-bar {
    display: flex;
    align-items: center;
    justify-content: center;
    background: #c5a880;
    color: white;
    padding: 12px;
    /* border-radius: 8px; */
    font-family: 'Outfit', sans-serif;
    font-weight: 600;
}