﻿/* ==========================================================
   KAPIL JAIN WEBSITE
   COMPLETE STYLE SHEET
========================================================== */


/* ==========================================================
   RESET
========================================================== */

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

html {
    scroll-behavior: smooth;
}

body {
    background: #f4f7fb;
    color: #222;
    font-family: 'Poppins', sans-serif;
    display: flex;
    justify-content: center;
    align-items: flex-start;
    min-height: 100vh;
    padding: 25px;
}

img {
    max-width: 100%;
    display: block;
}

a {
    text-decoration: none;
    transition: all .3s ease;
}


/* ==========================================================
   MAIN CONTAINER
========================================================== */

.container {
    width: 100%;
    max-width: 1150px;
    background: #ffffff;
    border-radius: 22px;
    padding: 35px;
    box-shadow: 0 15px 50px rgba(0, 0, 0, .08);
}


/* ==========================================================
   HERO
========================================================== */

.hero {
    text-align: center;
    margin-bottom: 45px;
}

    .hero h1 {
        font-size: 52px;
        font-weight: 800;
        color: #111827;
        margin-bottom: 12px;
        line-height: 1.2;
    }

.designation {
    font-size: 20px;
    color: #2563eb;
    font-weight: 600;
    margin-bottom: 18px;
    line-height: 1.5;
}

.about {
    max-width: 900px;
    margin: auto;
    color: #555;
    font-size: 17px;
    line-height: 1.8;
}


/* ==========================================================
   PROFILE + SERVICES
========================================================== */

.middle {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 50px;
    margin: 50px 0;
}


/* ==========================================================
   PROFILE IMAGE
========================================================== */

.left {
    width: 33%;
    display: flex;
    justify-content: center;
    align-items: center;
}

    .left img {
        width: 260px;
        height: 260px;
        border-radius: 50%;
        object-fit: cover;
        object-position: center 10%;
        border: 8px solid #f3f4f6;
        box-shadow: 0 12px 30px rgba(0, 0, 0, .12);
    }


/* ==========================================================
   IMAGE POSITION
========================================================== */

:root {
    --photo-position: 10%;
}

.left img {
    object-position: center var(--photo-position);
}


/* ==========================================================
   SERVICES
========================================================== */

.right {
    width: 67%;
}

.services {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 18px;
}

.service {
    display: block;
    background: #fafafa;
    border: 1px solid #e5e7eb;
    border-radius: 14px;
    padding: 18px;
    text-align: center;
    font-size: 17px;
    font-weight: 600;
    color: #222;
    text-decoration: none;
    transition: all .35s ease;
    cursor: pointer;
}

    .service i {
        color: #2563eb;
        margin-right: 10px;
    }

    .service:hover {
        background: #2563eb;
        color: #fff;
        transform: translateY(-5px);
        box-shadow: 0 12px 25px rgba(37, 99, 235, .25);
    }

        .service:hover i {
            color: #fff;
        }


/* ==========================================================
   PROFESSIONAL ASSOCIATIONS PREVIEW
========================================================== */

.professional-associations-preview {
    width: 100%;
    margin: 40px 0;
    padding: 35px 25px;
    text-align: center;
    background: linear-gradient( 135deg, #eff6ff 0%, #ffffff 55%, #f8fafc 100% );
    border: 1px solid #e5e7eb;
    border-radius: 18px;
}

    .professional-associations-preview h2 {
        margin-bottom: 10px;
        font-size: 26px;
        font-weight: 700;
        color: #111827;
    }

    .professional-associations-preview p {
        max-width: 700px;
        margin: 0 auto 22px;
        color: #6b7280;
        font-size: 14px;
        line-height: 1.7;
    }

.association-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    padding: 12px 20px;
    border-radius: 9px;
    background: #2563eb;
    color: #fff;
    font-size: 14px;
    font-weight: 600;
}

    .association-button:hover {
        background: #1d4ed8;
        color: #fff;
        transform: translateY(-2px);
        box-shadow: 0 8px 20px rgba(37, 99, 235, .20);
    }


/* ==========================================================
   PROFESSIONAL ASSOCIATIONS PAGE
========================================================== */

.associations-page {
    padding: 20px 0 10px;
}


/* ==========================================================
   ASSOCIATIONS HERO
========================================================== */

.association-hero {
    position: relative;
    text-align: center;
    padding: 55px 25px 60px;
    margin-bottom: 45px;
    border-radius: 22px;
    overflow: hidden;
    background: linear-gradient( 135deg, #eff6ff 0%, #ffffff 55%, #f8fafc 100% );
    border: 1px solid #e5e7eb;
}

    .association-hero::before {
        content: "";
        position: absolute;
        width: 220px;
        height: 220px;
        border-radius: 50%;
        background: rgba(37, 99, 235, .07);
        top: -100px;
        left: -80px;
    }

    .association-hero::after {
        content: "";
        position: absolute;
        width: 180px;
        height: 180px;
        border-radius: 50%;
        background: rgba(37, 99, 235, .06);
        bottom: -90px;
        right: -60px;
    }

.association-label {
    position: relative;
    display: inline-block;
    padding: 7px 16px;
    margin-bottom: 15px;
    border-radius: 50px;
    background: #dbeafe;
    color: #1d4ed8;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: .4px;
}

.association-hero h1 {
    position: relative;
    margin: 0 0 14px;
    font-size: 38px;
    font-weight: 700;
    color: #111827;
    line-height: 1.25;
}

    .association-hero h1 span {
        color: #2563eb;
    }

.association-hero p {
    position: relative;
    max-width: 780px;
    margin: 0 auto;
    line-height: 1.8;
    color: #4b5563;
    font-size: 15px;
}


/* ==========================================================
   ASSOCIATION LIST
========================================================== */

.association-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
    margin-bottom: 50px;
}


/* ==========================================================
   ASSOCIATION CARD
========================================================== */

.association-card {
    position: relative;
    display: flex;
    flex-direction: column;
    min-height: 300px;
    padding: 30px;
    border: 1px solid #e5e7eb;
    border-radius: 18px;
    background: #ffffff;
    overflow: hidden;
    text-decoration: none;
    color: inherit;
    transition: transform .3s ease, box-shadow .3s ease, border-color .3s ease;
}

    .association-card::before {
        content: "";
        position: absolute;
        left: 0;
        top: 0;
        width: 4px;
        height: 100%;
        background: #2563eb;
    }

    .association-card:hover {
        transform: translateY(-6px);
        border-color: #bfdbfe;
        box-shadow: 0 15px 35px rgba(15, 23, 42, .10);
    }


/* ==========================================================
   ASSOCIATION CARD TOP
========================================================== */

.association-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 15px;
    margin-bottom: 25px;
}


/* ==========================================================
   ASSOCIATION ICON
========================================================== */

.association-icon {
    width: 58px;
    height: 58px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 15px;
    background: #eff6ff;
    color: #2563eb;
    font-size: 23px;
}


/* ==========================================================
   ASSOCIATION ROLE
========================================================== */

.association-role {
    display: inline-flex;
    align-items: center;
    padding: 7px 12px;
    border-radius: 50px;
    background: #f3f4f6;
    color: #374151;
    font-size: 12px;
    font-weight: 600;
    text-align: right;
}


/* ==========================================================
   ASSOCIATION CONTENT
========================================================== */

.association-card h3 {
    margin: 0 0 10px;
    font-size: 23px;
    line-height: 1.35;
    color: #111827;
}

.association-type {
    margin: 0 0 18px;
    color: #2563eb;
    font-size: 14px;
    font-weight: 600;
}

.association-card p {
    margin: 0;
    color: #6b7280;
    line-height: 1.7;
    font-size: 14px;
}


/* ==========================================================
   ASSOCIATION CARD BOTTOM
========================================================== */

.association-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 15px;
    margin-top: auto;
    padding-top: 25px;
}

.association-website {
    color: #4b5563;
    font-size: 13px;
    font-weight: 500;
}

.association-visit {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    color: #2563eb;
    font-size: 13px;
    font-weight: 600;
}


/* ==========================================================
   ASSOCIATION NOTE
========================================================== */

.association-note {
    padding: 22px 25px;
    margin-bottom: 40px;
    border-radius: 15px;
    background: #f8fafc;
    border: 1px solid #e5e7eb;
    text-align: center;
}

    .association-note p {
        margin: 0;
        color: #6b7280;
        font-size: 13px;
        line-height: 1.7;
    }


/* ==========================================================
   BACK HOME
========================================================== */

.back-home {
    text-align: center;
    margin: 10px 0 40px;
}

    .back-home a {
        display: inline-flex;
        align-items: center;
        gap: 8px;
        padding: 11px 18px;
        border-radius: 8px;
        background: #2563eb;
        color: #ffffff;
        text-decoration: none;
        font-size: 13px;
        font-weight: 600;
    }

        .back-home a:hover {
            background: #1d4ed8;
            color: #fff;
            transform: translateY(-2px);
        }


/* ==========================================================
   TRADEMARK SERVICES PAGE
========================================================== */

.trademark-page {
    padding: 20px 0 10px;
}


/* ==========================================================
   TRADEMARK HERO
========================================================== */

.trademark-hero {
    position: relative;
    text-align: center;
    padding: 55px 25px 60px;
    margin-bottom: 45px;
    border-radius: 22px;
    overflow: hidden;
    background: linear-gradient( 135deg, #eff6ff 0%, #ffffff 55%, #f8fafc 100% );
    border: 1px solid #e5e7eb;
}

    .trademark-hero::before {
        content: "";
        position: absolute;
        width: 220px;
        height: 220px;
        top: -100px;
        left: -80px;
        border-radius: 50%;
        background: rgba(37, 99, 235, .07);
    }

    .trademark-hero::after {
        content: "";
        position: absolute;
        width: 180px;
        height: 180px;
        right: -60px;
        bottom: -90px;
        border-radius: 50%;
        background: rgba(37, 99, 235, .06);
    }

.trademark-label {
    position: relative;
    display: inline-block;
    padding: 7px 16px;
    margin-bottom: 15px;
    border-radius: 50px;
    background: #dbeafe;
    color: #1d4ed8;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: .4px;
}

.trademark-hero h1 {
    position: relative;
    margin: 0 0 15px;
    color: #111827;
    font-size: 38px;
    font-weight: 700;
    line-height: 1.25;
}

    .trademark-hero h1 span {
        color: #2563eb;
    }

.trademark-hero p {
    position: relative;
    max-width: 820px;
    margin: 0 auto;
    color: #4b5563;
    font-size: 15px;
    line-height: 1.8;
}


/* ==========================================================
   TRADEMARK INTRO
========================================================== */

.trademark-intro {
    max-width: 850px;
    margin: 0 auto 40px;
    text-align: center;
}

    .trademark-intro h2 {
        margin-bottom: 12px;
        color: #111827;
        font-size: 26px;
    }

    .trademark-intro p {
        color: #6b7280;
        font-size: 14px;
        line-height: 1.8;
    }


/* ==========================================================
   TRADEMARK SERVICES GRID
========================================================== */

.trademark-services-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 22px;
    margin-bottom: 45px;
}

.trademark-service-card {
    position: relative;
    display: flex;
    gap: 20px;
    padding: 25px;
    background: #ffffff;
    border: 1px solid #e5e7eb;
    border-radius: 16px;
    overflow: hidden;
    transition: all .3s ease;
}

    .trademark-service-card::before {
        content: "";
        position: absolute;
        left: 0;
        top: 0;
        width: 4px;
        height: 100%;
        background: #2563eb;
    }

    .trademark-service-card:hover {
        transform: translateY(-5px);
        border-color: #bfdbfe;
        box-shadow: 0 14px 30px rgba(15, 23, 42, .09);
    }

.trademark-service-icon {
    width: 52px;
    height: 52px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 14px;
    background: #eff6ff;
    color: #2563eb;
    font-size: 21px;
}

.trademark-service-content h3 {
    margin-bottom: 8px;
    color: #111827;
    font-size: 19px;
    line-height: 1.4;
}

.trademark-service-content p {
    color: #6b7280;
    font-size: 13px;
    line-height: 1.7;
}


/* ==========================================================
   TRADEMARK PROCESS
========================================================== */

.trademark-process {
    margin: 45px 0;
    padding: 35px 25px;
    background: #f8fafc;
    border: 1px solid #e5e7eb;
    border-radius: 18px;
}

    .trademark-process h2 {
        margin-bottom: 25px;
        text-align: center;
        color: #111827;
        font-size: 25px;
    }

.process-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
}

.process-step {
    position: relative;
    padding: 20px;
    text-align: center;
    background: #ffffff;
    border: 1px solid #e5e7eb;
    border-radius: 14px;
}

.process-number {
    width: 38px;
    height: 38px;
    margin: 0 auto 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: #2563eb;
    color: #ffffff;
    font-size: 14px;
    font-weight: 700;
}

.process-step h3 {
    margin-bottom: 7px;
    color: #111827;
    font-size: 15px;
}

.process-step p {
    color: #6b7280;
    font-size: 12px;
    line-height: 1.6;
}


/* ==========================================================
   TRADEMARK CTA
========================================================== */

.trademark-cta {
    margin: 40px 0;
    padding: 35px 25px;
    text-align: center;
    border-radius: 18px;
    background: linear-gradient(135deg, #2563eb, #1d4ed8);
    color: #ffffff;
}

    .trademark-cta h2 {
        margin-bottom: 10px;
        font-size: 25px;
    }

    .trademark-cta p {
        max-width: 700px;
        margin: 0 auto 22px;
        color: #dbeafe;
        font-size: 14px;
        line-height: 1.7;
    }

    .trademark-cta a {
        display: inline-flex;
        align-items: center;
        gap: 8px;
        padding: 12px 20px;
        border-radius: 9px;
        background: #ffffff;
        color: #1d4ed8;
        font-size: 14px;
        font-weight: 600;
    }

        .trademark-cta a:hover {
            transform: translateY(-2px);
            box-shadow: 0 8px 20px rgba(0, 0, 0, .15);
        }


/* ==========================================================
   TRADEMARK DISCLAIMER
========================================================== */

.trademark-disclaimer {
    margin: 30px 0 40px;
    text-align: center;
}

    .trademark-disclaimer p {
        color: #6b7280;
        font-size: 12px;
        line-height: 1.8;
    }


/* ==========================================================
   TRADEMARK BACK
========================================================== */

.trademark-back {
    text-align: center;
    margin: 15px 0 40px;
}

    .trademark-back a {
        display: inline-flex;
        align-items: center;
        gap: 8px;
        padding: 11px 18px;
        border-radius: 8px;
        background: #2563eb;
        color: #ffffff;
        font-size: 13px;
        font-weight: 600;
    }

        .trademark-back a:hover {
            background: #1d4ed8;
            transform: translateY(-2px);
        }


/* ==========================================================
   CONTACT + SOCIAL
========================================================== */

.contact {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    margin-top: 25px;
}

.contact-left {
    display: flex;
    align-items: center;
    gap: 15px;
    flex-wrap: wrap;
}

    .contact-left a {
        display: inline-flex;
        align-items: center;
        gap: 8px;
        text-decoration: none;
        color: #333;
        background: #f3f6fa;
        padding: 12px 18px;
        border-radius: 10px;
        font-size: 15px;
        font-weight: 500;
    }

        .contact-left a i {
            color: #1683c5;
        }

        .contact-left a:hover {
            background: #2563eb;
            color: #fff;
            transform: translateY(-2px);
        }

            .contact-left a:hover i {
                color: #fff;
            }


/* ==========================================================
   SOCIAL LINKS
========================================================== */

.social-links {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 15px;
    flex-wrap: wrap;
}

    .social-links a {
        display: inline-flex;
        align-items: center;
        gap: 6px;
        text-decoration: none;
        color: #2563eb;
        font-size: 15px;
        font-weight: 500;
    }

        .social-links a i {
            font-size: 18px;
        }

        .social-links a:hover {
            color: #111827;
            transform: translateY(-2px);
        }


/* ==========================================================
   DIVIDER
========================================================== */

.footer-divider {
    border: none;
    border-top: 1px solid #e5e7eb;
    margin: 35px 0 25px;
}


/* ==========================================================
   DISCLAIMER
========================================================== */

.disclaimer {
    text-align: center;
}

    .disclaimer p {
        color: #6b7280;
        font-size: 13px;
        line-height: 1.8;
    }

    .disclaimer strong {
        color: #374151;
    }

    .disclaimer .copyright {
        margin-top: 15px;
        color: #6b7280;
        font-weight: 500;
    }


/* ==========================================================
   BACK TO TOP
========================================================== */

.back-to-top {
    position: fixed;
    right: 25px;
    bottom: 25px;
    width: 50px;
    height: 50px;
    background: #2563eb;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    font-size: 18px;
    box-shadow: 0 8px 25px rgba(37, 99, 235, .35);
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all .3s ease;
    z-index: 999;
}

    .back-to-top:hover {
        background: #1d4ed8;
        color: #fff;
        transform: translateY(-4px);
    }

    .back-to-top.show {
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
    }


/* ==========================================================
   ACCESSIBILITY
========================================================== */

::selection {
    background: #2563eb;
    color: #fff;
}

a:focus-visible,
button:focus-visible {
    outline: 2px solid #2563eb;
    outline-offset: 3px;
}


/* ==========================================================
   BLOG / COMMON CLASSES
========================================================== */

.blog-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

.categories {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 15px;
}

    .categories a {
        padding: 10px 20px;
        border-radius: 30px;
        background: #f3f4f6;
        color: #333;
        font-size: 14px;
        font-weight: 500;
    }


/* ==========================================================
   LARGE SCREENS
========================================================== */

@media (min-width: 1400px) {

    .container {
        max-width: 1250px;
    }
}


/* ==========================================================
   TABLET
========================================================== */

@media (max-width: 900px) {

    body {
        padding: 20px;
    }

    .container {
        padding: 30px 20px;
    }


    /* HERO */

    .hero h1 {
        font-size: 40px;
    }

    .designation {
        font-size: 17px;
    }

    .about {
        font-size: 15px;
    }


    /* PROFILE */

    .middle {
        flex-direction: column;
        gap: 35px;
        align-items: center;
    }

    .left {
        width: 100%;
    }

        .left img {
            width: 200px;
            height: 200px;
            display: block;
            margin: 0 auto;
        }

    .right {
        width: 100%;
    }


    /* SERVICES */

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


    /* PROFESSIONAL ASSOCIATIONS */

    .association-list {
        grid-template-columns: repeat(2, 1fr);
    }


    /* TRADEMARK PROCESS */

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


    /* CONTACT */

    .contact {
        flex-direction: column;
        align-items: center;
        gap: 18px;
    }

    .contact-left {
        justify-content: center;
        width: 100%;
    }

    .social-links {
        justify-content: center;
        width: 100%;
    }


    /* BLOG */

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


/* ==========================================================
   TABLET / SMALL DEVICES
========================================================== */

@media (max-width: 768px) {

    /* TRADEMARK */

    .trademark-hero {
        padding: 40px 20px 45px;
        border-radius: 16px;
    }

        .trademark-hero h1 {
            font-size: 30px;
        }

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

    .trademark-service-card {
        padding: 22px;
    }
}


/* ==========================================================
   MOBILE
========================================================== */

@media (max-width: 600px) {

    body {
        padding: 12px;
    }

    .container {
        padding: 25px 16px;
        border-radius: 16px;
    }


    /* HERO */

    .hero {
        margin-bottom: 30px;
    }

        .hero h1 {
            font-size: 32px;
            line-height: 1.25;
        }

    .designation {
        font-size: 15px;
        line-height: 1.6;
    }

    .about {
        font-size: 14px;
        line-height: 1.7;
    }


    /* PROFILE */

    .middle {
        margin: 35px 0;
    }

    .left img {
        width: 180px;
        height: 180px;
        border-width: 6px;
    }


    /* SERVICES */

    .services {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .service {
        padding: 15px;
        font-size: 15px;
    }


    /* PROFESSIONAL ASSOCIATIONS PREVIEW */

    .professional-associations-preview {
        margin: 30px 0;
        padding: 28px 18px;
        border-radius: 15px;
    }

        .professional-associations-preview h2 {
            font-size: 22px;
        }

        .professional-associations-preview p {
            font-size: 13px;
        }

    .association-button {
        width: 100%;
        max-width: 280px;
    }


    /* PROFESSIONAL ASSOCIATIONS PAGE */

    .associations-page {
        padding: 10px 0;
    }

    .association-hero {
        padding: 40px 20px 45px;
        margin-bottom: 30px;
        border-radius: 16px;
    }

        .association-hero h1 {
            font-size: 30px;
        }

        .association-hero p {
            font-size: 14px;
            line-height: 1.7;
        }

    .association-label {
        font-size: 12px;
    }

    .association-list {
        grid-template-columns: 1fr;
        gap: 15px;
        margin-bottom: 30px;
    }

    .association-card {
        min-height: 280px;
        padding: 25px;
        border-radius: 15px;
    }

    .association-top {
        align-items: flex-start;
    }

    .association-role {
        font-size: 11px;
    }

    .association-card h3 {
        font-size: 20px;
    }

    .association-type {
        font-size: 13px;
    }

    .association-card p {
        font-size: 13px;
    }

    .association-bottom {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
        padding-top: 20px;
    }

    .association-note {
        padding: 18px 15px;
        margin-bottom: 30px;
    }

        .association-note p {
            font-size: 12px;
        }


    /* TRADEMARK PAGE */

    .trademark-page {
        padding: 10px 0;
    }

    .trademark-hero h1 {
        font-size: 27px;
    }

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

    .trademark-intro h2 {
        font-size: 22px;
    }

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

    .trademark-process {
        padding: 28px 18px;
    }

    .trademark-cta {
        padding: 30px 18px;
    }


    /* CONTACT */

    .contact {
        width: 100%;
        flex-direction: column;
        align-items: center;
        gap: 15px;
    }

    .contact-left {
        width: 100%;
        flex-direction: column;
        align-items: stretch;
        gap: 10px;
    }

        .contact-left a {
            width: 100%;
            justify-content: center;
            text-align: center;
            padding: 12px 14px;
        }

    .social-links {
        width: 100%;
        justify-content: center;
        gap: 15px;
    }

        .social-links a {
            font-size: 14px;
        }


    /* DISCLAIMER */

    .footer-divider {
        margin: 28px 0 20px;
    }

    .disclaimer p {
        font-size: 12px;
        line-height: 1.8;
    }


    /* BACK TO TOP */

    .back-to-top {
        width: 44px;
        height: 44px;
        right: 15px;
        bottom: 15px;
    }


    /* BLOG */

    .blog-grid {
        grid-template-columns: 1fr;
    }
}

/* ==========================================================
   COPYRIGHT SERVICES PAGE
========================================================== */

.copyright-page {
    padding: 20px 0 10px;
}

.copyright-hero {
    position: relative;
    text-align: center;
    padding: 55px 25px 60px;
    margin-bottom: 45px;
    border-radius: 22px;
    overflow: hidden;
    background: linear-gradient( 135deg, #eff6ff 0%, #ffffff 55%, #f8fafc 100% );
    border: 1px solid #e5e7eb;
}

    .copyright-hero::before {
        content: "";
        position: absolute;
        width: 220px;
        height: 220px;
        top: -100px;
        left: -80px;
        border-radius: 50%;
        background: rgba(37, 99, 235, .07);
    }

    .copyright-hero::after {
        content: "";
        position: absolute;
        width: 180px;
        height: 180px;
        right: -60px;
        bottom: -90px;
        border-radius: 50%;
        background: rgba(37, 99, 235, .06);
    }

.copyright-label {
    position: relative;
    display: inline-block;
    padding: 7px 16px;
    margin-bottom: 15px;
    border-radius: 50px;
    background: #dbeafe;
    color: #1d4ed8;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: .4px;
}

.copyright-hero h1 {
    position: relative;
    margin: 0 0 15px;
    color: #111827;
    font-size: 38px;
    font-weight: 700;
    line-height: 1.25;
}

    .copyright-hero h1 span {
        color: #2563eb;
    }

.copyright-hero p {
    position: relative;
    max-width: 820px;
    margin: 0 auto;
    color: #4b5563;
    font-size: 15px;
    line-height: 1.8;
}

.copyright-intro {
    max-width: 850px;
    margin: 0 auto 40px;
    text-align: center;
}

    .copyright-intro h2 {
        margin-bottom: 12px;
        color: #111827;
        font-size: 26px;
    }

    .copyright-intro p {
        color: #6b7280;
        font-size: 14px;
        line-height: 1.8;
    }

.copyright-services-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 22px;
    margin-bottom: 45px;
}

.copyright-service-card {
    position: relative;
    display: flex;
    gap: 20px;
    padding: 25px;
    background: #ffffff;
    border: 1px solid #e5e7eb;
    border-radius: 16px;
    overflow: hidden;
    transition: all .3s ease;
}

    .copyright-service-card::before {
        content: "";
        position: absolute;
        left: 0;
        top: 0;
        width: 4px;
        height: 100%;
        background: #2563eb;
    }

    .copyright-service-card:hover {
        transform: translateY(-5px);
        border-color: #bfdbfe;
        box-shadow: 0 14px 30px rgba(15, 23, 42, .09);
    }

.copyright-service-icon {
    width: 52px;
    height: 52px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 14px;
    background: #eff6ff;
    color: #2563eb;
    font-size: 21px;
}

.copyright-service-content h3 {
    margin-bottom: 8px;
    color: #111827;
    font-size: 19px;
    line-height: 1.4;
}

.copyright-service-content p {
    color: #6b7280;
    font-size: 13px;
    line-height: 1.7;
}

.copyright-process {
    margin: 45px 0;
    padding: 35px 25px;
    background: #f8fafc;
    border: 1px solid #e5e7eb;
    border-radius: 18px;
}

    .copyright-process h2 {
        margin-bottom: 25px;
        text-align: center;
        color: #111827;
        font-size: 25px;
    }

.copyright-process-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
}

.copyright-process-step {
    position: relative;
    padding: 20px;
    text-align: center;
    background: #ffffff;
    border: 1px solid #e5e7eb;
    border-radius: 14px;
}

.copyright-process-number {
    width: 38px;
    height: 38px;
    margin: 0 auto 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: #2563eb;
    color: #ffffff;
    font-size: 14px;
    font-weight: 700;
}

.copyright-process-step h3 {
    margin-bottom: 7px;
    color: #111827;
    font-size: 15px;
}

.copyright-process-step p {
    color: #6b7280;
    font-size: 12px;
    line-height: 1.6;
}

.copyright-cta {
    margin: 40px 0;
    padding: 35px 25px;
    text-align: center;
    border-radius: 18px;
    background: linear-gradient(135deg, #2563eb, #1d4ed8);
    color: #ffffff;
}

    .copyright-cta h2 {
        margin-bottom: 10px;
        font-size: 25px;
    }

    .copyright-cta p {
        max-width: 700px;
        margin: 0 auto 22px;
        color: #dbeafe;
        font-size: 14px;
        line-height: 1.7;
    }

    .copyright-cta a {
        display: inline-flex;
        align-items: center;
        gap: 8px;
        padding: 12px 20px;
        border-radius: 9px;
        background: #ffffff;
        color: #1d4ed8;
        font-size: 14px;
        font-weight: 600;
    }

        .copyright-cta a:hover {
            transform: translateY(-2px);
            box-shadow: 0 8px 20px rgba(0, 0, 0, .15);
        }

.copyright-back {
    text-align: center;
    margin: 15px 0 40px;
}

    .copyright-back a {
        display: inline-flex;
        align-items: center;
        gap: 8px;
        padding: 11px 18px;
        border-radius: 8px;
        background: #2563eb;
        color: #ffffff;
        font-size: 13px;
        font-weight: 600;
    }

        .copyright-back a:hover {
            background: #1d4ed8;
            transform: translateY(-2px);
        }


/* ==========================================================
   COPYRIGHT RESPONSIVE
========================================================== */

@media (max-width: 900px) {

    .copyright-process-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {

    .copyright-hero {
        padding: 40px 20px 45px;
        border-radius: 16px;
    }

        .copyright-hero h1 {
            font-size: 30px;
        }

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

    .copyright-service-card {
        padding: 22px;
    }
}

@media (max-width: 600px) {

    .copyright-page {
        padding: 10px 0;
    }

    .copyright-hero h1 {
        font-size: 27px;
    }

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

    .copyright-intro h2 {
        font-size: 22px;
    }

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

    .copyright-process {
        padding: 28px 18px;
    }

    .copyright-cta {
        padding: 30px 18px;
    }
}

/* ==========================================================
   PATENT SERVICES PAGE
========================================================== */

.patent-page {
    padding: 20px 0 10px;
}

.patent-hero {
    position: relative;
    text-align: center;
    padding: 55px 25px 60px;
    margin-bottom: 45px;
    border-radius: 22px;
    overflow: hidden;
    background: linear-gradient( 135deg, #eff6ff 0%, #ffffff 55%, #f8fafc 100% );
    border: 1px solid #e5e7eb;
}

    .patent-hero::before {
        content: "";
        position: absolute;
        width: 220px;
        height: 220px;
        top: -100px;
        left: -80px;
        border-radius: 50%;
        background: rgba(37, 99, 235, .07);
    }

    .patent-hero::after {
        content: "";
        position: absolute;
        width: 180px;
        height: 180px;
        right: -60px;
        bottom: -90px;
        border-radius: 50%;
        background: rgba(37, 99, 235, .06);
    }

.patent-label {
    position: relative;
    display: inline-block;
    padding: 7px 16px;
    margin-bottom: 15px;
    border-radius: 50px;
    background: #dbeafe;
    color: #1d4ed8;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: .4px;
}

.patent-hero h1 {
    position: relative;
    margin: 0 0 15px;
    color: #111827;
    font-size: 38px;
    font-weight: 700;
    line-height: 1.25;
}

    .patent-hero h1 span {
        color: #2563eb;
    }

.patent-hero p {
    position: relative;
    max-width: 820px;
    margin: 0 auto;
    color: #4b5563;
    font-size: 15px;
    line-height: 1.8;
}

.patent-intro {
    max-width: 850px;
    margin: 0 auto 40px;
    text-align: center;
}

    .patent-intro h2 {
        margin-bottom: 12px;
        color: #111827;
        font-size: 26px;
    }

    .patent-intro p {
        color: #6b7280;
        font-size: 14px;
        line-height: 1.8;
    }

.patent-services-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 22px;
    margin-bottom: 45px;
}

.patent-service-card {
    position: relative;
    display: flex;
    gap: 20px;
    padding: 25px;
    background: #ffffff;
    border: 1px solid #e5e7eb;
    border-radius: 16px;
    overflow: hidden;
    transition: all .3s ease;
}

    .patent-service-card::before {
        content: "";
        position: absolute;
        left: 0;
        top: 0;
        width: 4px;
        height: 100%;
        background: #2563eb;
    }

    .patent-service-card:hover {
        transform: translateY(-5px);
        border-color: #bfdbfe;
        box-shadow: 0 14px 30px rgba(15, 23, 42, .09);
    }

.patent-service-icon {
    width: 52px;
    height: 52px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 14px;
    background: #eff6ff;
    color: #2563eb;
    font-size: 21px;
}

.patent-service-content h3 {
    margin-bottom: 8px;
    color: #111827;
    font-size: 19px;
    line-height: 1.4;
}

.patent-service-content p {
    color: #6b7280;
    font-size: 13px;
    line-height: 1.7;
}

.patent-process {
    margin: 45px 0;
    padding: 35px 25px;
    background: #f8fafc;
    border: 1px solid #e5e7eb;
    border-radius: 18px;
}

    .patent-process h2 {
        margin-bottom: 25px;
        text-align: center;
        color: #111827;
        font-size: 25px;
    }

.patent-process-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
}

.patent-process-step {
    position: relative;
    padding: 20px;
    text-align: center;
    background: #ffffff;
    border: 1px solid #e5e7eb;
    border-radius: 14px;
}

.patent-process-number {
    width: 38px;
    height: 38px;
    margin: 0 auto 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: #2563eb;
    color: #ffffff;
    font-size: 14px;
    font-weight: 700;
}

.patent-process-step h3 {
    margin-bottom: 7px;
    color: #111827;
    font-size: 15px;
}

.patent-process-step p {
    color: #6b7280;
    font-size: 12px;
    line-height: 1.6;
}

.patent-cta {
    margin: 40px 0;
    padding: 35px 25px;
    text-align: center;
    border-radius: 18px;
    background: linear-gradient(135deg, #2563eb, #1d4ed8);
    color: #ffffff;
}

    .patent-cta h2 {
        margin-bottom: 10px;
        font-size: 25px;
    }

    .patent-cta p {
        max-width: 700px;
        margin: 0 auto 22px;
        color: #dbeafe;
        font-size: 14px;
        line-height: 1.7;
    }

    .patent-cta a {
        display: inline-flex;
        align-items: center;
        gap: 8px;
        padding: 12px 20px;
        border-radius: 9px;
        background: #ffffff;
        color: #1d4ed8;
        font-size: 14px;
        font-weight: 600;
    }

        .patent-cta a:hover {
            transform: translateY(-2px);
            box-shadow: 0 8px 20px rgba(0, 0, 0, .15);
        }

.patent-back {
    text-align: center;
    margin: 15px 0 40px;
}

    .patent-back a {
        display: inline-flex;
        align-items: center;
        gap: 8px;
        padding: 11px 18px;
        border-radius: 8px;
        background: #2563eb;
        color: #ffffff;
        font-size: 13px;
        font-weight: 600;
    }

        .patent-back a:hover {
            background: #1d4ed8;
            transform: translateY(-2px);
        }


/* ==========================================================
   PATENT RESPONSIVE
========================================================== */

@media (max-width: 900px) {

    .patent-process-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {

    .patent-hero {
        padding: 40px 20px 45px;
        border-radius: 16px;
    }

        .patent-hero h1 {
            font-size: 30px;
        }

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

    .patent-service-card {
        padding: 22px;
    }
}

@media (max-width: 600px) {

    .patent-page {
        padding: 10px 0;
    }

    .patent-hero h1 {
        font-size: 27px;
    }

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

    .patent-intro h2 {
        font-size: 22px;
    }

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

    .patent-process {
        padding: 28px 18px;
    }

    .patent-cta {
        padding: 30px 18px;
    }
}

/* ==========================================================
   DESIGN SERVICES PAGE
========================================================== */

.design-page {
    padding: 20px 0 10px;
}

.design-hero {
    position: relative;
    text-align: center;
    padding: 55px 25px 60px;
    margin-bottom: 45px;
    border-radius: 22px;
    overflow: hidden;
    background: linear-gradient( 135deg, #eff6ff 0%, #ffffff 55%, #f8fafc 100% );
    border: 1px solid #e5e7eb;
}

    .design-hero::before {
        content: "";
        position: absolute;
        width: 220px;
        height: 220px;
        top: -100px;
        left: -80px;
        border-radius: 50%;
        background: rgba(37, 99, 235, .07);
    }

    .design-hero::after {
        content: "";
        position: absolute;
        width: 180px;
        height: 180px;
        right: -60px;
        bottom: -90px;
        border-radius: 50%;
        background: rgba(37, 99, 235, .06);
    }

.design-label {
    position: relative;
    display: inline-block;
    padding: 7px 16px;
    margin-bottom: 15px;
    border-radius: 50px;
    background: #dbeafe;
    color: #1d4ed8;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: .4px;
}

.design-hero h1 {
    position: relative;
    margin: 0 0 15px;
    color: #111827;
    font-size: 38px;
    font-weight: 700;
    line-height: 1.25;
}

    .design-hero h1 span {
        color: #2563eb;
    }

.design-hero p {
    position: relative;
    max-width: 820px;
    margin: 0 auto;
    color: #4b5563;
    font-size: 15px;
    line-height: 1.8;
}

.design-intro {
    max-width: 850px;
    margin: 0 auto 40px;
    text-align: center;
}

    .design-intro h2 {
        margin-bottom: 12px;
        color: #111827;
        font-size: 26px;
    }

    .design-intro p {
        color: #6b7280;
        font-size: 14px;
        line-height: 1.8;
    }

.design-services-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 22px;
    margin-bottom: 45px;
}

.design-service-card {
    position: relative;
    display: flex;
    gap: 20px;
    padding: 25px;
    background: #ffffff;
    border: 1px solid #e5e7eb;
    border-radius: 16px;
    overflow: hidden;
    transition: all .3s ease;
}

    .design-service-card::before {
        content: "";
        position: absolute;
        left: 0;
        top: 0;
        width: 4px;
        height: 100%;
        background: #2563eb;
    }

    .design-service-card:hover {
        transform: translateY(-5px);
        border-color: #bfdbfe;
        box-shadow: 0 14px 30px rgba(15, 23, 42, .09);
    }

.design-service-icon {
    width: 52px;
    height: 52px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 14px;
    background: #eff6ff;
    color: #2563eb;
    font-size: 21px;
}

.design-service-content h3 {
    margin-bottom: 8px;
    color: #111827;
    font-size: 19px;
    line-height: 1.4;
}

.design-service-content p {
    color: #6b7280;
    font-size: 13px;
    line-height: 1.7;
}

.design-process {
    margin: 45px 0;
    padding: 35px 25px;
    background: #f8fafc;
    border: 1px solid #e5e7eb;
    border-radius: 18px;
}

    .design-process h2 {
        margin-bottom: 25px;
        text-align: center;
        color: #111827;
        font-size: 25px;
    }

.design-process-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
}

.design-process-step {
    position: relative;
    padding: 20px;
    text-align: center;
    background: #ffffff;
    border: 1px solid #e5e7eb;
    border-radius: 14px;
}

.design-process-number {
    width: 38px;
    height: 38px;
    margin: 0 auto 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: #2563eb;
    color: #ffffff;
    font-size: 14px;
    font-weight: 700;
}

.design-process-step h3 {
    margin-bottom: 7px;
    color: #111827;
    font-size: 15px;
}

.design-process-step p {
    color: #6b7280;
    font-size: 12px;
    line-height: 1.6;
}

.design-cta {
    margin: 40px 0;
    padding: 35px 25px;
    text-align: center;
    border-radius: 18px;
    background: linear-gradient(135deg, #2563eb, #1d4ed8);
    color: #ffffff;
}

    .design-cta h2 {
        margin-bottom: 10px;
        font-size: 25px;
    }

    .design-cta p {
        max-width: 700px;
        margin: 0 auto 22px;
        color: #dbeafe;
        font-size: 14px;
        line-height: 1.7;
    }

    .design-cta a {
        display: inline-flex;
        align-items: center;
        gap: 8px;
        padding: 12px 20px;
        border-radius: 9px;
        background: #ffffff;
        color: #1d4ed8;
        font-size: 14px;
        font-weight: 600;
    }

        .design-cta a:hover {
            transform: translateY(-2px);
            box-shadow: 0 8px 20px rgba(0, 0, 0, .15);
        }

.design-back {
    text-align: center;
    margin: 15px 0 40px;
}

    .design-back a {
        display: inline-flex;
        align-items: center;
        gap: 8px;
        padding: 11px 18px;
        border-radius: 8px;
        background: #2563eb;
        color: #ffffff;
        font-size: 13px;
        font-weight: 600;
    }

        .design-back a:hover {
            background: #1d4ed8;
            transform: translateY(-2px);
        }


/* ==========================================================
   DESIGN RESPONSIVE
========================================================== */

@media (max-width: 900px) {

    .design-process-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {

    .design-hero {
        padding: 40px 20px 45px;
        border-radius: 16px;
    }

        .design-hero h1 {
            font-size: 30px;
        }

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

    .design-service-card {
        padding: 22px;
    }
}

@media (max-width: 600px) {

    .design-page {
        padding: 10px 0;
    }

    .design-hero h1 {
        font-size: 27px;
    }

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

    .design-intro h2 {
        font-size: 22px;
    }

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

    .design-process {
        padding: 28px 18px;
    }

    .design-cta {
        padding: 30px 18px;
    }
}
/* ==========================================================
   IP LITIGATION & ENFORCEMENT PAGE
========================================================== */

.litigation-page {
    padding: 20px 0 10px;
}

.litigation-hero {
    position: relative;
    text-align: center;
    padding: 55px 25px 60px;
    margin-bottom: 45px;
    border-radius: 22px;
    overflow: hidden;
    background: linear-gradient( 135deg, #eff6ff 0%, #ffffff 55%, #f8fafc 100% );
    border: 1px solid #e5e7eb;
}

    .litigation-hero::before {
        content: "";
        position: absolute;
        width: 220px;
        height: 220px;
        top: -100px;
        left: -80px;
        border-radius: 50%;
        background: rgba(37, 99, 235, .07);
    }

    .litigation-hero::after {
        content: "";
        position: absolute;
        width: 180px;
        height: 180px;
        right: -60px;
        bottom: -90px;
        border-radius: 50%;
        background: rgba(37, 99, 235, .06);
    }

.litigation-label {
    position: relative;
    display: inline-block;
    padding: 7px 16px;
    margin-bottom: 15px;
    border-radius: 50px;
    background: #dbeafe;
    color: #1d4ed8;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: .4px;
}

.litigation-hero h1 {
    position: relative;
    margin: 0 0 15px;
    color: #111827;
    font-size: 38px;
    font-weight: 700;
    line-height: 1.25;
}

    .litigation-hero h1 span {
        color: #2563eb;
    }

.litigation-hero p {
    position: relative;
    max-width: 820px;
    margin: 0 auto;
    color: #4b5563;
    font-size: 15px;
    line-height: 1.8;
}

.litigation-intro {
    max-width: 850px;
    margin: 0 auto 40px;
    text-align: center;
}

    .litigation-intro h2 {
        margin-bottom: 12px;
        color: #111827;
        font-size: 26px;
    }

    .litigation-intro p {
        color: #6b7280;
        font-size: 14px;
        line-height: 1.8;
    }

.litigation-services-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 22px;
    margin-bottom: 45px;
}

.litigation-service-card {
    position: relative;
    display: flex;
    gap: 20px;
    padding: 25px;
    background: #ffffff;
    border: 1px solid #e5e7eb;
    border-radius: 16px;
    overflow: hidden;
    transition: all .3s ease;
}

    .litigation-service-card::before {
        content: "";
        position: absolute;
        left: 0;
        top: 0;
        width: 4px;
        height: 100%;
        background: #2563eb;
    }

    .litigation-service-card:hover {
        transform: translateY(-5px);
        border-color: #bfdbfe;
        box-shadow: 0 14px 30px rgba(15, 23, 42, .09);
    }

.litigation-service-icon {
    width: 52px;
    height: 52px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 14px;
    background: #eff6ff;
    color: #2563eb;
    font-size: 21px;
}

.litigation-service-content h3 {
    margin-bottom: 8px;
    color: #111827;
    font-size: 19px;
    line-height: 1.4;
}

.litigation-service-content p {
    color: #6b7280;
    font-size: 13px;
    line-height: 1.7;
}

.litigation-process {
    margin: 45px 0;
    padding: 35px 25px;
    background: #f8fafc;
    border: 1px solid #e5e7eb;
    border-radius: 18px;
}

    .litigation-process h2 {
        margin-bottom: 25px;
        text-align: center;
        color: #111827;
        font-size: 25px;
    }

.litigation-process-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
}

.litigation-process-step {
    position: relative;
    padding: 20px;
    text-align: center;
    background: #ffffff;
    border: 1px solid #e5e7eb;
    border-radius: 14px;
}

.litigation-process-number {
    width: 38px;
    height: 38px;
    margin: 0 auto 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: #2563eb;
    color: #ffffff;
    font-size: 14px;
    font-weight: 700;
}

.litigation-process-step h3 {
    margin-bottom: 7px;
    color: #111827;
    font-size: 15px;
}

.litigation-process-step p {
    color: #6b7280;
    font-size: 12px;
    line-height: 1.6;
}

.litigation-cta {
    margin: 40px 0;
    padding: 35px 25px;
    text-align: center;
    border-radius: 18px;
    background: linear-gradient(135deg, #2563eb, #1d4ed8);
    color: #ffffff;
}

    .litigation-cta h2 {
        margin-bottom: 10px;
        font-size: 25px;
    }

    .litigation-cta p {
        max-width: 700px;
        margin: 0 auto 22px;
        color: #dbeafe;
        font-size: 14px;
        line-height: 1.7;
    }

    .litigation-cta a {
        display: inline-flex;
        align-items: center;
        gap: 8px;
        padding: 12px 20px;
        border-radius: 9px;
        background: #ffffff;
        color: #1d4ed8;
        font-size: 14px;
        font-weight: 600;
    }

        .litigation-cta a:hover {
            transform: translateY(-2px);
            box-shadow: 0 8px 20px rgba(0, 0, 0, .15);
        }

.litigation-back {
    text-align: center;
    margin: 15px 0 40px;
}

    .litigation-back a {
        display: inline-flex;
        align-items: center;
        gap: 8px;
        padding: 11px 18px;
        border-radius: 8px;
        background: #2563eb;
        color: #ffffff;
        font-size: 13px;
        font-weight: 600;
    }

        .litigation-back a:hover {
            background: #1d4ed8;
            transform: translateY(-2px);
        }


/* ==========================================================
   IP LITIGATION RESPONSIVE
========================================================== */

@media (max-width: 900px) {

    .litigation-process-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {

    .litigation-hero {
        padding: 40px 20px 45px;
        border-radius: 16px;
    }

        .litigation-hero h1 {
            font-size: 30px;
        }

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

    .litigation-service-card {
        padding: 22px;
    }
}

@media (max-width: 600px) {

    .litigation-page {
        padding: 10px 0;
    }

    .litigation-hero h1 {
        font-size: 27px;
    }

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

    .litigation-intro h2 {
        font-size: 22px;
    }

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

    .litigation-process {
        padding: 28px 18px;
    }

    .litigation-cta {
        padding: 30px 18px;
    }
}
/* ==========================================================
   ISO CERTIFICATION PAGE
========================================================== */

.iso-page {
    padding: 20px 0 10px;
}

.iso-hero {
    position: relative;
    text-align: center;
    padding: 55px 25px 60px;
    margin-bottom: 45px;
    border-radius: 22px;
    overflow: hidden;
    background: linear-gradient( 135deg, #eff6ff 0%, #ffffff 55%, #f8fafc 100% );
    border: 1px solid #e5e7eb;
}

    .iso-hero::before {
        content: "";
        position: absolute;
        width: 220px;
        height: 220px;
        top: -100px;
        left: -80px;
        border-radius: 50%;
        background: rgba(37, 99, 235, .07);
    }

    .iso-hero::after {
        content: "";
        position: absolute;
        width: 180px;
        height: 180px;
        right: -60px;
        bottom: -90px;
        border-radius: 50%;
        background: rgba(37, 99, 235, .06);
    }

.iso-label {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 7px 16px;
    margin-bottom: 15px;
    border-radius: 50px;
    background: #dbeafe;
    color: #1d4ed8;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: .4px;
}

.iso-hero h1 {
    position: relative;
    margin: 0 0 15px;
    color: #111827;
    font-size: 38px;
    font-weight: 700;
    line-height: 1.25;
}

    .iso-hero h1 span {
        color: #2563eb;
    }

.iso-hero p {
    position: relative;
    max-width: 820px;
    margin: 0 auto;
    color: #4b5563;
    font-size: 15px;
    line-height: 1.8;
}

.iso-intro {
    max-width: 850px;
    margin: 0 auto 40px;
    text-align: center;
}

    .iso-intro h2 {
        margin: 0 0 12px;
        color: #111827;
        font-size: 26px;
        font-weight: 700;
        line-height: 1.4;
    }

    .iso-intro p {
        margin: 0;
        color: #6b7280;
        font-size: 14px;
        line-height: 1.8;
    }

.iso-services-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 22px;
    margin-bottom: 45px;
}

.iso-service-card {
    position: relative;
    display: flex;
    align-items: flex-start;
    gap: 20px;
    min-height: 150px;
    padding: 25px;
    background: #ffffff;
    border: 1px solid #e5e7eb;
    border-radius: 16px;
    overflow: hidden;
    transition: transform .3s ease, box-shadow .3s ease, border-color .3s ease;
}

    .iso-service-card::before {
        content: "";
        position: absolute;
        left: 0;
        top: 0;
        width: 4px;
        height: 100%;
        background: #2563eb;
    }

    .iso-service-card:hover {
        transform: translateY(-5px);
        border-color: #bfdbfe;
        box-shadow: 0 14px 30px rgba(15, 23, 42, .09);
    }

.iso-service-icon {
    width: 52px;
    height: 52px;
    flex: 0 0 52px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 14px;
    background: #eff6ff;
    color: #2563eb;
    font-size: 21px;
}

.iso-service-content {
    flex: 1;
    min-width: 0;
}

    .iso-service-content h3 {
        margin: 0 0 8px;
        color: #111827;
        font-size: 19px;
        font-weight: 600;
        line-height: 1.4;
    }

    .iso-service-content p {
        margin: 0;
        color: #6b7280;
        font-size: 13px;
        line-height: 1.7;
    }

.iso-process {
    margin: 45px 0;
    padding: 35px 25px;
    background: #f8fafc;
    border: 1px solid #e5e7eb;
    border-radius: 18px;
}

    .iso-process h2 {
        margin: 0 0 25px;
        text-align: center;
        color: #111827;
        font-size: 25px;
        font-weight: 700;
        line-height: 1.4;
    }

.iso-process-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
}

.iso-process-step {
    padding: 20px;
    text-align: center;
    background: #ffffff;
    border: 1px solid #e5e7eb;
    border-radius: 14px;
    transition: transform .3s ease, box-shadow .3s ease;
}

    .iso-process-step:hover {
        transform: translateY(-4px);
        box-shadow: 0 10px 25px rgba(15, 23, 42, .07);
    }

.iso-process-number {
    width: 38px;
    height: 38px;
    margin: 0 auto 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: #2563eb;
    color: #ffffff;
    font-size: 14px;
    font-weight: 700;
}

.iso-process-step h3 {
    margin: 0 0 7px;
    color: #111827;
    font-size: 15px;
    font-weight: 600;
    line-height: 1.4;
}

.iso-process-step p {
    margin: 0;
    color: #6b7280;
    font-size: 12px;
    line-height: 1.6;
}

.iso-cta {
    margin: 40px 0;
    padding: 35px 25px;
    text-align: center;
    border-radius: 18px;
    background: linear-gradient(135deg, #2563eb, #1d4ed8);
    color: #ffffff;
}

    .iso-cta h2 {
        margin: 0 0 10px;
        color: #ffffff;
        font-size: 25px;
        font-weight: 700;
        line-height: 1.4;
    }

    .iso-cta p {
        max-width: 700px;
        margin: 0 auto 22px;
        color: #dbeafe;
        font-size: 14px;
        line-height: 1.7;
    }

    .iso-cta a {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        gap: 8px;
        padding: 12px 20px;
        border-radius: 9px;
        background: #ffffff;
        color: #1d4ed8;
        font-size: 14px;
        font-weight: 600;
    }

        .iso-cta a:hover {
            transform: translateY(-2px);
            background: #ffffff;
            color: #1d4ed8;
            box-shadow: 0 8px 20px rgba(0, 0, 0, .15);
        }

.iso-back {
    text-align: center;
    margin: 15px 0 40px;
}

    .iso-back a {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        gap: 8px;
        padding: 11px 18px;
        border-radius: 8px;
        background: #2563eb;
        color: #ffffff;
        font-size: 13px;
        font-weight: 600;
    }

        .iso-back a:hover {
            background: #1d4ed8;
            color: #ffffff;
            transform: translateY(-2px);
        }

@media (max-width: 900px) {

    .iso-process-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {

    .iso-hero {
        padding: 40px 20px 45px;
        border-radius: 16px;
    }

        .iso-hero h1 {
            font-size: 30px;
        }

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

    .iso-service-card {
        min-height: auto;
        padding: 22px;
    }
}

@media (max-width: 600px) {

    .iso-page {
        padding: 10px 0;
    }

    .iso-hero {
        margin-bottom: 30px;
    }

        .iso-hero h1 {
            font-size: 27px;
        }

        .iso-hero p {
            font-size: 14px;
            line-height: 1.7;
        }

    .iso-label {
        font-size: 12px;
        padding: 7px 13px;
    }

    .iso-intro {
        margin-bottom: 30px;
    }

        .iso-intro h2 {
            font-size: 22px;
        }

        .iso-intro p {
            font-size: 13px;
        }

    .iso-services-grid {
        gap: 15px;
        margin-bottom: 35px;
    }

    .iso-service-card {
        gap: 15px;
        padding: 20px;
    }

    .iso-service-icon {
        width: 46px;
        height: 46px;
        flex-basis: 46px;
        border-radius: 12px;
        font-size: 18px;
    }

    .iso-service-content h3 {
        font-size: 17px;
    }

    .iso-service-content p {
        font-size: 12px;
        line-height: 1.65;
    }

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

    .iso-process {
        margin: 35px 0;
        padding: 28px 18px;
    }

        .iso-process h2 {
            font-size: 22px;
        }

    .iso-cta {
        margin: 35px 0;
        padding: 30px 18px;
    }

        .iso-cta h2 {
            font-size: 22px;
        }

        .iso-cta p {
            font-size: 13px;
        }

    .iso-back {
        margin-bottom: 30px;
    }
}
