/* Patent Lifecycle Page Specific Styles */
.lifecycle-hero {
    background: linear-gradient(135deg, rgba(10, 37, 64, 0.92) 80%, #b38a38 20%);
    color: #ffffff;
    text-align: center;
    padding: 95px 20px;
    border-bottom: 5px solid #b38a38;
}

.lifecycle-hero h1 {
    font-size: 2.6rem;
    margin-bottom: 20px;
    font-weight: 700;
    color:white;
}

.lifecycle-hero p {
    font-size: 1.2rem;
    max-width: 850px;
    margin: 0 auto !important;
    opacity: 0.9;
    color:rgb(189, 184, 184);
}

.lifecycle-section {
    background-color: #f8fafc;
    padding: 70px 0;
}

.lifecycle-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 35px;
    margin-top: 20px;
}

.lifecycle-card {
    background-color: #ffffff;
    border-radius: 8px;
    padding: 40px 30px;
    box-shadow: 0 4px 15px rgba(10, 37, 64, 0.04);
    border: 1px solid rgba(10, 37, 64, 0.05);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.3s ease;
}

.lifecycle-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 15px 30px rgba(10, 37, 64, 0.08);
    border-color: rgba(179, 138, 56, 0.3);
}

.lifecycle-stage-badge {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    color: #b38a38;
    background-color: rgba(179, 138, 56, 0.1);
    padding: 4px 12px;
    border-radius: 4px;
    margin-bottom: 20px;
}

.lifecycle-card h3 {
    color: #0a2540;
    font-size: 1.45rem;
    margin-bottom: 15px;
    font-weight: 600;
}

.lifecycle-card p {
    color: #4b5563;
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 30px;
}

.lifecycle-link {
    display: inline-block;
    color: #0a2540;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    transition: color 0.2s ease;
}

.lifecycle-link:hover {
    color: #b38a38;
}

/* Responsive fixes */
@media (max-width: 768px) {
    .lifecycle-hero h1 { font-size: 2.1rem; }
    .lifecycle-section { padding: 50px 0; }
}

.process-section-v2 {
    background-color: #ffffff;
    padding: 80px 0;
    width: 100%;
}

.process-steps-container {
    display: flex;
    justify-content: space-between;
    gap: 30px;
    margin-top: 50px;
}

.process-card {
    flex: 1;
    background-color: #f8fafc; 
    border: 1px solid rgba(10, 37, 64, 0.05);
    border-radius: 8px;
    padding: 40px 30px;
    text-align: center;
    position: relative;
    transition: all 0.3s ease;
}
.section-title {
    margin-bottom: 10px !important; 
}

/* Step Number Badge */
.process-badge {
    width: 60px;
    height: 60px;
    background-color: #0a2540; 
    color: #b38a38; 
    font-size: 1.3rem;
    font-weight: 700;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px auto;
    box-shadow: 0 4px 10px rgba(10, 37, 64, 0.1);
    transition: all 0.3s ease;
}

.process-card h4 {
    font-size: 1.25rem;
    color: #0a2540;
    margin-bottom: 15px;
    font-weight: 600;
}

.process-card p {
    font-size: 0.95rem;
    color: #4b5563;
    line-height: 1.6;
}

/* Hover Interactive Styling */
.process-card:hover {
    transform: translateY(-5px);
    background-color: #ffffff;
    box-shadow: 0 15px 30px rgba(10, 37, 64, 0.08);
    border-color: #b38a38;
}

.process-card:hover .process-badge {
    background-color: #b38a38;
    color: #ffffff;
}

/* Responsive Breakdown for Tablets and Mobile */
@media (max-width: 991px) {
    .process-steps-container {
        flex-direction: column;
        gap: 30px;
    }
    .process-card {
        width: 100%;
        max-width: 600px;
        margin: 0 auto;
    }
}

@media (max-width: 768px) {
    .process-section-v2 {
        padding: 50px 0;
    }
}

/* ==========================================================================
   SIMPLE LIFECYCLE VALUE REALIZATION SECTION STYLES
   ========================================================================== */

.lifecycle-value-section {
    background-color: #ffffff;
    padding: 60px 0;
    width: 100%;
}

.value-split-flex {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 60px;
}

/* Left Content Configuration */
.value-head-box {
    flex: 0.9;
}

.value-mini-tag {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: #b38a38; /* Your Gold Brand Token */
    margin-bottom: 12px;
}

.value-head-box h2 {
    font-size: 2.2rem;
    color: #0a2540; /* Your Dark Navy */
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 15px;
}

.value-head-box p {
    font-size: 1rem;
    color: #4b5563;
    line-height: 1.6;
}

/* Right Content Configuration */
.value-list-box {
    flex: 1.1;
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.value-list-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
}

.gold-bullet {
    color: #b38a38;
    font-weight: bold;
    font-size: 1.2rem;
    line-height: 1.1;
}

.value-list-item h4 {
    font-size: 1.15rem;
    color: #0a2540;
    font-weight: 600;
    margin-bottom: 5px;
}

.value-list-item p {
    font-size: 0.95rem;
    color: #55606e;
    line-height: 1.5;
    margin: 0;
}

/* Responsive Fluid Adjustments */
@media (max-width: 991px) {
    .value-split-flex {
        flex-direction: column;
        gap: 40px;
    }
    .value-head-box, .value-list-box {
        width: 100%;
    }
}

@media (max-width: 768px) {
    .lifecycle-value-section {
        padding: 50px 0;
    }
    .value-head-box h2 {
        font-size: 1.8rem;
    }
}

/* ==========================================================================
   SIMPLE CTA BANNER STYLES (LIGHTWEIGHT)
   ========================================================================== */

.simple-lifecycle-cta {
    background-color: #0a2540; /* Your Dark Navy */
    padding: 70px 20px;
    width: 100%;
    text-align: center;
}

.simple-cta-center {
    max-width: 800px;
    margin: 0 auto;
}

.simple-lifecycle-cta h2 {
    font-size: 2.2rem;
    color: #ffffff;
    font-weight: 700;
    margin-bottom: 15px;
    letter-spacing: -0.5px;
}

.simple-lifecycle-cta p {
    font-size: 1.1rem;
    color: #a1b0cb;
    line-height: 1.6;
    margin-bottom: 30px;
}

/* Premium Gold Button Style */
.simple-cta-button {
    display: inline-block;
    background-color: #b38a38; /* Your Gold Brand Token */
    color: #ffffff;
    padding: 14px 32px;
    border-radius: 4px;
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    transition: background-color 0.2s ease;
}

.simple-cta-button:hover {
    background-color: white; 
    color:#0a2540;
}

/* Mobile Responsive Scale */
@media (max-width: 768px) {
    .simple-lifecycle-cta {
        padding: 50px 20px;
    }
    .simple-lifecycle-cta h2 {
        font-size: 1.7rem;
    }
    .simple-lifecycle-cta p {
        font-size: 1rem;
        margin-bottom: 25px;
    }
}

/* ==========================================================================
   PATENT LIFECYCLE CIRCULAR WHEEL STYLES (LIGHTWEIGHT)
   ========================================================================== */

.circular-lifecycle-section {
    background-color: #f8fafc; /* Light premium background contrast */
    padding: 80px 0;
    width: 100%;
}

.lifecycle-wheel-container {
    position: relative;
    width: 480px;
    height: 480px;
    margin: 60px auto 0 auto;
    border: 2px dashed rgba(10, 37, 64, 0.15); /* Circular path connection line */
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Center Core Button Panel */
.wheel-core {
    width: 120px;
    height: 120px;
    background-color: #0a2540; /* Your Dark Navy */
    border: 4px solid #b38a38; /* Your Gold Brand Token */
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    box-shadow: 0 10px 25px rgba(10, 37, 64, 0.2);
    z-index: 5;
}

.wheel-core span {
    color: #ffffff;
    font-size: 0.9rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    padding: 10px;
}

/* Base Node Properties */
.wheel-node {
    position: absolute;
    display: flex;
    align-items: center;
    gap: 15px;
    width: 280px;
    z-index: 2;
    transition: transform 0.3s ease;
}

.node-badge {
    width: 46px;
    height: 46px;
    background-color: #b38a38; /* Gold Background */
    color: #ffffff;
    font-size: 1.1rem;
    font-weight: 700;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: 0 4px 12px rgba(179, 138, 56, 0.2);
    transition: background-color 0.3s ease;
}

.node-text h4 {
    font-size: 1.1rem;
    color: #0a2540;
    font-weight: 700;
    margin-bottom: 4px;
}

.node-text p {
    font-size: 0.88rem;
    color: #55606e;
    line-height: 1.4;
    margin: 0;
}

/* Triangle Placement Mapping on the Circle */
.node-position-1 {
    top: -20px;
    left: 50%;
    transform: translateX(-50%);
    flex-direction: column;
    text-align: center;
}

.node-position-2 {
    bottom: 60px;
    right: -130px;
    text-align: left;
}

.node-position-3 {
    bottom: 60px;
    left: -130px;
    flex-direction: row-reverse;
    text-align: right;
}

/* Micro interaction shifts */
.wheel-node:hover .node-badge {
    background-color: #0a2540;
}

/* ==========================================================================
   RESPONSIVE LAYOUT ENGINE (BREAKS INTO ROW STACK ON MOBILE)
   ========================================================================== */
@media (max-width: 991px) {
    .lifecycle-wheel-container {
        width: 100%;
        height: auto;
        border: none;
        border-radius: 0;
        display: flex;
        flex-direction: column;
        gap: 35px;
        margin-top: 40px;
    }
    
    .wheel-core {
        display: none; /* Hides core circle on mobile viewports */
    }
    
    .wheel-node {
        position: static !important;
        transform: none !important;
        flex-direction: row !important;
        text-align: left !important;
        width: 100%;
        max-width: 500px;
        background-color: #ffffff;
        padding: 20px;
        border-radius: 8px;
        border: 1px solid rgba(10, 37, 64, 0.05);
    }
}

@media (max-width: 768px) {
    .circular-lifecycle-section {
        padding: 50px 0;
    }
}

/* ==========================================================================
   SIMPLE LIFECYCLE GLOBAL JURISDICTIONS SECTION STYLES
   ========================================================================== */

.global-coverage-section {
    background-color: #ffffff;
    padding: 60px 0;
    width: 100%;
}

.coverage-split-flex {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 60px;
}

/* Left Column Styling */
.coverage-info-box {
    flex: 0.9;
}

.coverage-mini-badge {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: #b38a38; /* Your Gold Brand Token */
    margin-bottom: 12px;
}

.coverage-info-box h2 {
    font-size: 2.2rem;
    color: #0a2540; /* Your Dark Navy */
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 15px;
}

.coverage-info-box p {
    font-size: 1rem;
    color: #4b5563;
    line-height: 1.6;
}

/* Right Column Styling */
.jurisdictions-list-box {
    flex: 1.1;
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.jurisdiction-entry {
    background-color: #f8fafc; /* Very subtle grey contrast block */
    border-left: 3px solid #b38a38; /* Clean gold border pointer */
    padding: 20px 25px;
    border-radius: 0 6px 6px 0;
}

.jurisdiction-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 6px;
}

.jurisdiction-header h4 {
    font-size: 1.15rem;
    color: #0a2540;
    font-weight: 700;
    margin: 0;
}

.jurisdiction-header span {
    font-size: 0.78rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: #6b7280;
}

.jurisdiction-entry p {
    font-size: 0.92rem;
    color: #55606e;
    line-height: 1.5;
    margin: 0;
}

/* Responsive Viewport Management */
@media (max-width: 991px) {
    .coverage-split-flex {
        flex-direction: column;
        gap: 40px;
    }
    .coverage-info-box, .jurisdictions-list-box {
        width: 100%;
    }
}

@media (max-width: 768px) {
    .global-coverage-section {
        padding: 50px 0;
    }
    .coverage-info-box h2 {
        font-size: 1.8rem;
    }
}


/* --- Patent Lifecycle Custom UI Framework --- */

.rr-lifecycle-section {
    font-family: system-ui, -apple-system, sans-serif;
}

.rr-navy-text {
    color: #0a2540 !important;
}

.rr-gold-text {
    color: #b38a38 !important;
    letter-spacing: 1.5px;
}

/* Image Wrapper and Object Fit Sizing Control */
.lifecycle-image-wrapper {
    border-color: #e2e8f0 !important;
    border-radius: 16px !important;
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

/* 1526x1024 इमेज को बिना खराब किए 440px हाइट में परफेक्ट क्रॉप करेगा */
.lifecycle-main-img {
    height: 440px !important;
    object-fit: cover;
    border-radius: 10px;
    transition: transform 0.6s ease;
}

.lifecycle-image-wrapper:hover {
    transform: scale(1.02);
}

/* Right Side Timeline Stage Numbers Design */
.stage-number-box {
    width: 44px;
    height: 44px;
    background-color: #0a2540; /* Navy Base color */
    color: #ffffff;
    border-radius: 8px;
    font-size: 1.1rem;
    border: 2px solid #0a2540;
    transition: all 0.3s ease;
}

.lifecycle-stage-item {
    transition: transform 0.3s ease;
}

/* Interactive Hover Linkage */
.lifecycle-stage-item:hover {
    transform: translateX(5px);
}

.lifecycle-stage-item:hover .stage-number-box {
    background-color: #ffffff;
    color: #b38a38; /* Shifts color to Gold on hover */
    border-color: #b38a38;
}

.stage-title {
    color: #0a2540;
    font-size: 1.15rem;
    transition: color 0.3s ease;
}

.lifecycle-stage-item:hover .stage-title {
    color: #b38a38; 
}

.stage-desc {
    font-size: 0.92rem;
    line-height: 1.5;
}

.stage-number-box {
    margin-right: 25px !important; 
}

/* --- Responsive Lifecycle Image Control --- */

.lifecycle-main-img {
    height: 440px !important;
    width: 100% !important;
    object-fit: cover;
    border-radius: 10px;
    transition: transform 0.6s ease;
}


@media (max-width: 991px) {
    .lifecycle-main-img {
        height: auto !important; 
        max-height: 300px;       
        object-fit: contain;     
    }
    
    .lifecycle-floating-badge {
        bottom: -10px !important;
        right: 10px !important;
        padding: 10px !important;
    }
}





