

 



/* ================= CONTRACT DISPUTES SECTION ================= */

.contract-disputes-section {
    background: #ffffff;
    padding: 90px 0;
}
.contract-disputes-section1 {
   background: white; 
    padding: 90px 0;
}

/* LEFT CARD */
.contract-disputes-card {
    height: 100%;
    background:#152943;
    border-radius: 18px;
    padding: 48px 46px;
    border: 1px solid rgba(212,180,106,0.25);
    box-shadow: 0 25px 60px rgba(0,0,0,0.6);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

/* Title */
.contract-disputes-title {
    font-family: 'DM Sans', sans-serif;
    font-size: 30px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 22px;
    border-bottom: 2px solid #fcfcfc;
    padding-bottom: 10px;
}

/* Text */
.contract-disputes-text {
    font-size: 16px;
    line-height: 1.75;
    color: #cfcfcf;
    margin-bottom: 18px;
}

/* Highlight row */
.contract-disputes-highlight {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-top: 10px;
    padding: 14px 16px;
    background: rgba(184,151,106,0.08);
    border-radius: 10px;
    color: #e8e8e8;
    font-weight: 600;
}

.contract-disputes-highlight i {
    color: #ffffff;
    font-size: 20px;
}

/* Contact */
.contract-disputes-contact {
    margin-top: 25px;
    padding-top: 16px;
    border-top: 1px solid rgba(255,255,255,0.08);
}

.contract-disputes-contact p {
    font-size: 15px;
    color: #e0e0e0;
}

.contract-disputes-contact a {
    color: #152943;
    text-decoration: none;
}

.contract-disputes-contact a:hover {
    text-decoration: underline;
}

/* IMAGE WRAPPER */
.contract-disputes-image-wrapper1 {
    height: 100%;
    min-height: 420px;
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 25px 60px rgba(0,0,0,0.7);
    border: 1px solid rgba(255,255,255,0.05);
}

/* IMAGE */
.contract-disputes-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}





/* MOBILE */
@media (max-width: 991px) {
    .contract-disputes-image-wrapper {
        min-height: 260px;
        margin-top: 25px;
    }
}

/* RESPONSIVE */
@media (max-width: 991px) {
    .contract-disputes-card {
        padding: 36px 32px;
    }

    .contract-disputes-title {
        font-size: 26px;
    }

    .contract-disputes-image {
        min-height: 260px;
        margin-top: 25px;
    }
}














/* ================= BUSINESS LAW LITIGATION ================= */

.contract-litigation-section {
    background: #ffffff;
    padding: 90px 0;
    color: #e0e0e0;
}

/* LEFT CONTENT */
.contract-litigation-content {
 height: 100%;
    background:#152943;
    border-radius: 18px;
    padding: 48px 46px;
    border: 1px solid rgba(212,180,106,0.25);
    box-shadow: 0 25px 60px rgba(0,0,0,0.6);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.contract-litigation-title {
    font-size: 34px;
    font-weight: 700;
    color: #ffffff;
    border-bottom: 3px solid #ffffff;
    padding-bottom: 10px;
    margin-bottom: 22px;
}

.contract-litigation-text {
    font-size: 16px;
    line-height: 1.75;
    color: #cfcfcf;
    margin-bottom: 16px;
}

/* RIGHT METHODS GRID */
.contract-litigation-methods {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 22px;
}

/* INDIVIDUAL ITEM */
.litigation-item {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 18px 20px;
      background:#152943;
    border-radius: 14px;
    border: 1px solid rgba(184,151,106,0.28);
    box-shadow: 0 12px 30px rgba(0,0,0,0.45);
    transition: all 0.3s ease;
}

.litigation-item i {
    font-size: 20px;
    color: #fafafa;
}

.litigation-item span {
    font-size: 16px;
    font-weight: 500;
    color: #e5e5e5;
}

/* Hover effect (subtle, professional) */
.litigation-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 18px 40px rgba(184,151,106,0.25);
}

/* RESPONSIVE */
@media (max-width: 991px) {
    .contract-litigation-methods {
        grid-template-columns: 1fr;
    }

    .contract-litigation-title {
        font-size: 28px;
    }
}
