﻿/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Oxygen', 'Ubuntu', 'Cantarell', sans-serif;
    line-height: 1.6;
    color: #1a1a1a;
    background: #ffffff;
}

.container {
    max-width: 1330px;
    margin: 0 auto;
    padding: 8px 24px;
}

/* Header Styles */
.header {
    background: #ffffff;
    border-bottom: 1px solid #e5e7eb;
    padding: 16px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    font-size: 28px;
    font-weight: bold;
    text-decoration: none;
}

.logo-d, .logo-r {
    color: #dc2626;
}

.logo-m {
    color: #1e3a5f;
}

.nav-desktop {
    display: none;
    align-items: center;
    gap: 32px;
}

/*.nav-link {
    color: #6b7280;
    text-decoration: none;
    font-size: 16px;
    transition: color 0.2s;
}

    .nav-link:hover {
        color: #1a1a1a;
    }
*/
.menu-toggle {
    display: flex;
    flex-direction: column;
    gap: 4px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
}

    .menu-toggle span {
        width: 24px;
        height: 2px;
        background: #1a1a1a;
        transition: all 0.3s;
    }

/* Mobile Menu */
.mobile-menu {
    position: fixed;
    top: 65px;
    left: 0;
    right: 0;
    background: #ffffff;
    border-bottom: 1px solid #e5e7eb;
    padding: 16px 24px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    transform: translateY(-100%);
    opacity: 0;
    transition: all 0.3s;
    z-index: 999;
}

    .mobile-menu.active {
        transform: translateY(0);
        opacity: 1;
    }

.mobile-nav-link {
    color: #6b7280;
    text-decoration: none;
    font-size: 14px;
    padding: 8px 0;
}

/* Buttons */
.btn {
    padding: 12px 24px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    border: none;
    text-decoration: none;
    display: inline-block;
}

.btn-primary {
    background: #0066cc;
    color: #ffffff;
}

    .btn-primary:hover {
        background: #0052a3;
    }

.btn-accent {
    background: #ff8c42;
    color: #ffffff;
}

    .btn-accent:hover {
        background: #e67a35;
    }

.btn-outline {
    background: transparent;
    color: #ffffff;
    border: 1px solid #ffffff;
}

    .btn-outline:hover {
        background: rgba(255, 255, 255, 0.1);
    }

.btn-block {
    width: 100%;
}

/* Hero Section */
/*.hero {
    background: linear-gradient(135deg, #063b67 0%, #0a5a8a 100%);
    padding: 100px 0 120px;
    position: relative;
    overflow: hidden;
}

.hero-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    position: relative;
    z-index: 2;
}

.hero-left {
    color: white;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 24px;
}

    .hero-title .highlight {
        color: #ffb84d;
    }

.hero-subtext {
    font-size: 1.125rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 32px;
}

.hero-buttons {
    display: flex;
    gap: 16px;
    margin-bottom: 24px;
    flex-wrap: wrap;
}

.btn-primary {
    background: #f89f3d;
    color: white;
    border: none;
}

    .btn-primary:hover {
        background: #e68a2e;
    }

.btn-secondary {
    background: white;
    color: #063b67;
    border: 2px solid white;
}

    .btn-secondary:hover {
        background: rgba(255, 255, 255, 0.9);
    }

.trusted {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.9);
}

    .trusted .icon {
        color: #10b981;
        font-weight: bold;
    }

.hero-right {
    position: relative;
}

.image-box {
    background: white;
    border-radius: 20px;
    padding: 16px;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.3);
    overflow: hidden;
}

    .image-box img {
        width: 100%;
        height: auto;
        border-radius: 12px;
        display: block;
    }

.badge {
    position: absolute;
    background: white;
    padding: 16px 20px;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    display: flex;
    align-items: center;
    gap: 12px;
    z-index: 10;
}

.badge-top {
    top: -10px;
    right: -20px;
}

.badge-bottom {
    bottom: -10px;
    left: -20px;
}

.badge-icon {
    font-size: 2rem;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #3b82f6, #2563eb);
    border-radius: 12px;
}

.badge h4 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1e3a5f;
    margin: 0;
}

.badge p {
    font-size: 0.875rem;
    color: #64748b;
    margin: 0;
}

.hero-wave {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    z-index: 1;
}

    .hero-wave svg {
        width: 100%;
        height: auto;
        display: block;
    }*/


/*.dashboard-card img {
    width: 100%;
    height: auto;
    border-radius: 8px;
}*/

/* Section Styles */
/*.section {
    padding: 80px 0;
}

.bg-light {
    background: #f9fafb;
}

.section-header {
    text-align: center;
    margin-bottom: 48px;
}

.section-title {
    font-size: 36px;
    font-weight: bold;
    margin-bottom: 16px;
    color: #1a1a1a;
}

.section-subtitle {
    font-size: 18px;
    color: #6b7280;
    max-width: 600px;
    margin: 0 auto;
}

.section-cta {
    text-align: center;
    margin-top: 32px;
}

.link-primary {
    color: #0066cc;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.2s;
}

    .link-primary:hover {
        color: #0052a3;
    }*/

/* Features Grid */
/*.features-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
}

.feature-card {
    background: #ffffff;
    border-radius: 12px;
    padding: 32px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    transition: all 0.3s;
}

    .feature-card:hover {
        box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
        transform: translateY(-4px);
    }

.feature-icon {
    width: 48px;
    height: 48px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    margin-bottom: 16px;
}

.bg-blue {
    background: #0066cc;
}

.bg-green {
    background: #059669;
}

.bg-orange {
    background: #ff8c42;
}

.bg-purple {
    background: #8b5cf6;
}

.bg-blue-alt {
    background: #3b82f6;
}

.bg-cyan {
    background: #0891b2;
}

.feature-title {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 12px;
    color: #1a1a1a;
}

.feature-description {
    color: #6b7280;
    font-size: 14px;
}*/

/* Insights Grid */
/*.insights-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 32px;
}

.insight-card {
    background: #ffffff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    transition: all 0.3s;
}

    .insight-card:hover {
        box-shadow: 0 12px 32px rgba(0, 0, 0, 0.15);
        transform: translateY(-4px);
    }

.insight-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.insight-content {
    padding: 24px;
}

.insight-title {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 12px;
    color: #1a1a1a;
}

.insight-description {
    color: #6b7280;
    font-size: 14px;
    margin-bottom: 16px;
}*/

/* Industry Section */
/*.industry-section {
    padding: 80px 0;
}*/

/* Primary Industry Cards */
/*.primary-industry-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
    margin-bottom: 24px;
}

.primary-industry-card {
    padding: 32px;
    border-radius: 16px;
    color: white;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
}

    .primary-industry-card:hover {
        transform: translateY(-4px);
        box-shadow: 0 12px 32px rgba(0, 0, 0, 0.15);
    }

.primary-tech {
    background: linear-gradient(135deg, #0066cc, #004d99);
}

.primary-healthcare {
    background: linear-gradient(135deg, #16a34a, #15803d);
}

.primary-finance {
    background: linear-gradient(135deg, #f59e0b, #d97706);
}

.primary-manufacturing {
    background: linear-gradient(135deg, #7c3aed, #6d28d9);
}

.primary-icon {
    font-size: 2.5rem;
    margin-bottom: 16px;
}

.primary-title {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 8px;
}

.primary-subtitle {
    font-size: 13px;
    opacity: 0.9;
    margin-bottom: 20px;
}

.primary-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.primary-reports {
    font-size: 14px;
    font-weight: 600;
}

.primary-arrow {
    width: 32px;
    height: 32px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
}*/

/* Secondary Industry Cards */
/*.secondary-industry-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 16px;
    margin-bottom: 40px;
}

.secondary-industry-card {
    background: #f3f4f6;
    padding: 24px;
    border-radius: 12px;
    text-align: center;
    transition: all 0.3s ease;
    cursor: pointer;
}

    .secondary-industry-card:hover {
        background: #e5e7eb;
        transform: translateY(-2px);
    }

.secondary-icon {
    width: 56px;
    height: 56px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 12px;
    font-size: 24px;
}

.secondary-energy {
    background: linear-gradient(135deg, #3b82f6, #2563eb);
}

.secondary-consumer {
    background: linear-gradient(135deg, #10b981, #059669);
}

.secondary-realestate {
    background: linear-gradient(135deg, #f97316, #ea580c);
}

.secondary-telecom {
    background: linear-gradient(135deg, #8b5cf6, #7c3aed);
}

.secondary-agriculture {
    background: linear-gradient(135deg, #22c55e, #16a34a);
}

.secondary-chemicals {
    background: linear-gradient(135deg, #0284c7, #0369a1);
}

.secondary-title {
    font-size: 16px;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 4px;
}

.secondary-reports {
    font-size: 13px;
    color: #6b7280;
    margin-bottom: 8px;
}

.secondary-link {
    color: #0066cc;
    font-size: 13px;
    font-weight: 600;
    text-decoration: none;
    transition: color 0.2s;
}

    .secondary-link:hover {
        color: #0052a3;
    }

.btn-explore {
    background: #0066cc;
    color: white;
    padding: 12px 32px;
    border-radius: 8px;
    font-weight: 600;
    border: none;
    cursor: pointer;
    transition: all 0.3s;
}

    .btn-explore:hover {
        background: #0052a3;
    }*/

/* Expertise Section */
/*.expertise-section {
    background: #1e3a5f;
    color: #ffffff;
    padding: 80px 0;
}

.expertise-content {
    display: grid;
    gap: 48px;
    align-items: center;
}

.expertise-image img {
    width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.expertise-title {
    font-size: 36px;
    font-weight: bold;
    margin-bottom: 24px;
}

.expertise-description {
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 32px;
    line-height: 1.8;
}

.stats-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    margin-bottom: 32px;
}

.stat-card {
    background: rgba(255, 255, 255, 0.1);
    padding: 24px;
    border-radius: 8px;
}

.stat-number {
    font-size: 32px;
    font-weight: bold;
    color: #ff8c42;
    margin-bottom: 8px;
}

.stat-label {
    font-size: 14px;
}*/

/* Footer */
/*.footer {
    background: #1a1a1a;
    color: #ffffff;
    padding: 48px 0;
}

.footer-content {
    text-align: center;
}

.footer-logo {
    font-size: 28px;
    font-weight: bold;
    margin-bottom: 16px;
}

.footer-text {
    font-size: 14px;
    opacity: 0.8;
}*/

/* Responsive Styles */
/*@media (min-width: 768px) {
    .nav-desktop {
        display: flex;
    }

    .menu-toggle {
        display: none;
    }

    .mobile-menu {
        display: none;
    }

    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .insights-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .primary-industry-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .secondary-industry-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .expertise-content {
        grid-template-columns: 1fr 1fr;
    }
}

@media (min-width: 1024px) {
    .features-grid {
        grid-template-columns: repeat(4, 1fr);
    }

    .primary-industry-grid {
        grid-template-columns: repeat(4, 1fr);
    }

    .secondary-industry-grid {
        grid-template-columns: repeat(6, 1fr);
    }
}

@media (max-width: 768px) {
    .hero-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .badge-top {
        top: 10px;
        right: 10px;
    }

    .badge-bottom {
        bottom: 10px;
        left: 10px;
    }

    .badge {
        padding: 12px 16px;
    }

        .badge h4 {
            font-size: 1.25rem;
        }

    .badge-icon {
        width: 40px;
        height: 40px;
        font-size: 1.5rem;
    }
}*/

/* Animation Classes */
/*@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.animate-fade-in {
    animation: fadeIn 0.6s ease-out;
}*/

/* Report Page Styles */
/*.breadcrumb-section {
    background: #f9fafb;
    border-bottom: 1px solid #e5e7eb;
    padding: 12px 0;
}

.breadcrumb {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
}

    .breadcrumb a {
        color: #6b7280;
        text-decoration: none;
        transition: color 0.2s;
    }

        .breadcrumb a:hover {
            color: #1a1a1a;
        }

    .breadcrumb .separator {
        color: #9ca3af;
    }

    .breadcrumb .current {
        color: #1a1a1a;
        font-weight: 500;
    }

.report-section {
    padding: 48px 0;
}

.report-title {
    font-size: 28px;
    font-weight: 700;
    color: #1e3a5f;
    line-height: 1.3;
    margin-bottom: 24px;
}

.report-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
    margin-bottom: 32px;
    font-size: 14px;
}

.meta-item {
    display: flex;
    gap: 6px;
}

.meta-label {
    font-weight: 600;
    color: #1a1a1a;
}

.meta-value {
    color: #6b7280;
}

.report-grid {
    display: grid;
    gap: 32px;
}*/

/* Tabs */
/*.report-tabs {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
    border: 1px solid #e5e7eb;
    border-radius: 8px;
    overflow: hidden;
    margin-bottom: 24px;
}

.tab-button {
    background: #f9fafb;
    border: none;
    padding: 16px 12px;
    font-size: 13px;
    font-weight: 500;
    color: #6b7280;
    cursor: pointer;
    transition: all 0.2s;
    border-right: 1px solid #e5e7eb;
}

    .tab-button:last-child {
        border-right: none;
    }

    .tab-button:hover {
        background: #f3f4f6;
    }

    .tab-button.active {
        background: #1e3a5f;
        color: #ffffff;
    }

    .tab-button.tab-special {
        background: #f89f3d;
        color: #ffffff;
    }

        .tab-button.tab-special:hover {
            background: #e68a2e;
        }

        .tab-button.tab-special.active {
            background: #f89f3d;
        }*/

/* Tab Content */
/*.tab-content {
    display: none;
}

    .tab-content.active {
        display: block;
    }

.content-box {
    background: #ffffff;
    border: 1px solid #e5e7eb;
    border-radius: 8px;
    padding: 32px;
}

.content-heading {
    font-size: 24px;
    font-weight: 700;
    color: #1e3a5f;
    margin-bottom: 24px;
}

.content-text {
    color: #374151;
    line-height: 1.8;
}

    .content-text p {
        margin-bottom: 20px;
        text-align: justify;
    }

        .content-text p:last-child {
            margin-bottom: 0;
        }*/

/* Sidebar */
/*.report-sidebar {
    position: sticky;
    top: 80px;
}

.sidebar-card {
    background: #1e3a5f;
    border-radius: 12px;
    padding: 32px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.report-cover {
    display: flex;
    justify-content: center;
    margin-bottom: 24px;
}

.cover-placeholder {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    padding: 24px;
    width: 128px;
    height: 160px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #ffffff;
}

.cover-year {
    font-size: 32px;
    font-weight: 700;
    color: #0a5a8a;
    margin-bottom: 12px;
}

.cover-label {
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    line-height: 1.4;
}

.report-info {
    margin-bottom: 24px;
}

.info-item {
    padding: 12px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

    .info-item:last-child {
        border-bottom: none;
    }

.info-label {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 4px;
}

.info-value {
    font-size: 14px;
    font-weight: 600;
    color: #ffffff;
}

.info-rating {
    display: flex;
    align-items: center;
    gap: 8px;
}

.stars {
    color: #f89f3d;
    font-size: 16px;
}

.rating-count {
    font-size: 14px;
    font-weight: 600;
    color: #ffffff;
}

.btn-buy {
    width: 100%;
    background: #f89f3d;
    color: #ffffff;
    border: none;
    padding: 14px;
    font-size: 16px;
    font-weight: 600;
    border-radius: 8px;
    cursor: pointer;
    transition: background 0.2s;
    margin-bottom: 24px;
}

    .btn-buy:hover {
        background: #e68a2e;
    }*/

/* Sidebar Form */
/*.sidebar-form {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.form-input,
.form-select {
    width: 100%;
    padding: 12px;
    border: 1px solid #e5e7eb;
    border-radius: 6px;
    font-size: 14px;
    background: #ffffff;
    color: #1a1a1a;
}

    .form-input:focus,
    .form-select:focus {
        outline: none;
        border-color: #0a5a8a;
    }

.form-captcha {
    background: rgba(255, 255, 255, 0.1);
    padding: 12px;
    border-radius: 6px;
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 12px;
    color: #ffffff;
}

    .form-captcha input[type="checkbox"] {
        cursor: pointer;
    }

.btn-submit {
    width: 100%;
    background: #ffffff;
    color: #1e3a5f;
    border: none;
    padding: 14px;
    font-size: 16px;
    font-weight: 600;
    border-radius: 8px;
    cursor: pointer;
    transition: background 0.2s;
    margin-top: 12px;
}

    .btn-submit:hover {
        background: #f3f4f6;
    }*/

/* Responsive Styles */
@media (min-width: 768px) {
    .report-title {
        font-size: 32px;
    }

    .tab-button {
        font-size: 14px;
        padding: 5px;
        padding-top: 15px;
        padding-bottom: 15px;
    }
}

@media (min-width: 1024px) {
    .report-grid {
        grid-template-columns: 2fr 1fr;
    }

    .report-title {
        font-size: 36px;
    }

    .report-tabs {
        margin-bottom: 32px;
    }
}


/* NAV BASE */
.my-nav {
    display: flex;
    align-items: center;
    gap: 2rem;
}

@media (max-width:1023px) {
    .my-nav {
        display: none;
    }
}

/* Normal nav links */
.nav-link {
    color: var(--dark-text-color);
    /* font-weight: 500;*/
    font-size: 16px;
    text-decoration: none;
    transition: color .15s;
}

    .nav-link:hover {
        color: var(--primary-color);
    }

/* Dropdown wrapper */
.dropdown-robust {
    position: relative;
    display: inline-block;
}

/* Dropdown panel default */
.dropdown-panel {
    position: absolute;
    top: 175%;
    left: 0;
    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: 8px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.12);
    z-index: 9999;
    opacity: 0;
    pointer-events: none;
    transform: translateY(10px);
    transition: opacity .20s ease, transform .20s ease;
}

/* Show on hover or JS-open */
.dropdown-robust.open .dropdown-panel,
.dropdown-robust:hover .dropdown-panel {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
}

/* SERVICES items */
.dropdown-panel a.item {
    display: block;
    padding: 9px 14px;
    text-decoration: none;
    color: #444;
    border-radius: 6px;
}

    .dropdown-panel a.item:hover {
        background: #f6f6f6;
        color: var(--primary-color);
    }

/* Caret arrow */
.nav-trigger {
    display: inline-flex;
    align-items: center;
    gap: 4px;
}

.caret {
    font-size: .7rem;
}

/* CENTERED MEGA PANEL POSITION */
#drop-industries .dropdown-panel {
    left: 50% !important;
    transform: translateX(-50%) translateY(10px) !important;
}

#drop-industries.open .dropdown-panel {
    transform: translateX(-50%) translateY(0) !important;
}

/* SERVICE PANEL */
.service-panel {
    width: 155px;
    padding: 0px;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

    /* SERVICE PANEL LINKS */
    .service-panel a {
        display: block;
        width: 100%;
        padding: 10px 0 20px;
        position: relative;
        text-align: center;
        color: #444;
        text-decoration: none;
        font-size: 15px;
        transition: 0.2s;
    }

        /* SERVICE UNDERLINE */
        .service-panel a::after {
            content: "";
            position: absolute;
            left: 50%;
            transform: translateX(-50%);
            bottom: 4px;
            width: 75%; /* underline size */
            height: 2px;
            background: #d8d8d8;
            border-radius: 20px;
        }

        /* HOVER */
        .service-panel a:hover {
            color: var(--primary-color);
        }

            .service-panel a:hover::after {
                background: var(--primary-color);
            }

/* INDUSTRIES PANEL */
.industries-panel {
    width: 1000px;
    padding: 40px;
}

/* GRID: 4 COLUMNS ON DESKTOP */
.industries-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    /*gap: 10px 50px;*/
    padding-left: 20px;
}

    /* INDUSTRY ITEM */
    .industries-grid a {
        display: inline-block;
        padding: 10px 0 18px 0;
        background: transparent;
        text-decoration: none;
        color: #444;
        font-size: 14px;
        position: relative;
        text-align: center;
        transition: 0.15s;
    }

        /* INDUSTRY UNDERLINE */
        .industries-grid a::after {
            content: "";
            position: absolute;
            left: 50%;
            transform: translateX(-50%);
            bottom: 4px;
            width: 100%;
            height: 2px;
            background: #d8d8d8;
            border-radius: 20px;
        }

        /* HOVER */
        .industries-grid a:hover {
            color: var(--primary-color);
        }

            .industries-grid a:hover::after {
                background: var(--primary-color);
            }

/* RESPONSIVE */
@media (max-width: 768px) {
    .industries-panel {
        width: 100%;
        padding: 20px;
    }

    .industries-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 18px 20px;
    }

        .industries-grid a,
        .service-panel a {
            font-size: 14px;
            text-align: center;
        }
}

/* MOBILE */
@media (max-width: 480px) {
    .industries-grid {
        grid-template-columns: repeat(1, 1fr);
        gap: 16px;
    }

        .industries-grid a,
        .service-panel a {
            font-size: 14px;
        }

    .service-panel {
        width: 100%;
        text-align: center;
    }
}

/*sticky bar*/

/* ===============================
   STICKY HEADER – FULL RESPONSIVE
================================ */

.sticky-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: #fff;
    z-index: 9999;
    transform: translateY(-100%);
    transition: transform 0.3s ease-in-out;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

    /* SHOW */
    .sticky-header.active {
        transform: translateY(0);
    }

/* ===============================
   CENTER CONTAINER
================================ */
.sticky-container {
    max-width: 1300px; /* Desktop */
    margin: 0 auto;
    padding: 10px 0px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

/* ===============================
   LEFT SECTION
================================ */
.sticky-left {
    display: flex;
    align-items: center;
    gap: 14px;
    min-width: 0;
}

.sticky-logo {
    height: 25px;
    width: auto;
    flex-shrink: 0;
}

.sticky-title {
    font-size: 18px;
    font-weight: 600;
    color: #0047ab;
    max-width: 420px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

/* ===============================
   RIGHT SECTION
================================ */
.sticky-right {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-shrink: 0;
}

.sticky-btn,
.sticky-btn-two {
    background: #0047ab;
    color: #fff;
    padding: 8px 16px;
    border-radius: 6px;
    font-weight: 600;
    font-size: 14px;
    white-space: nowrap;
    text-decoration: none;
    transition: background 0.2s ease;
}

    .sticky-btn:hover,
    .sticky-btn-two:hover {
        background: #003a94;
    }

/* ===============================
   LARGE LAPTOPS (≤ 1400px)
================================ */
@media (max-width: 1400px) {
    .sticky-container {
        max-width: 100%;
        padding: 10px 24px;
    }

    .sticky-title {
        max-width: 360px;
        font-size: 17px;
    }
}

/* ===============================
   LAPTOPS (≤ 1200px)
================================ */
@media (max-width: 1200px) {
    .sticky-container {
        max-width: 100%;
        padding: 10px 20px;
    }

    .sticky-title {
        max-width: 300px;
    }
}

/* ===============================
   TABLETS (≤ 992px)
================================ */
@media (max-width: 992px) {
    .sticky-btn-two {
        display: none;
    }

    .sticky-title {
        max-width: 260px;
        font-size: 16px;
    }

    .sticky-btn {
        padding: 8px 14px;
    }
}

/* ===============================
   SMALL TABLETS / MOBILE (≤ 768px)
================================ */
@media (max-width: 768px) {
    .sticky-container {
        padding: 8px 16px;
    }

    .sticky-title {
        display: none;
    }

    .sticky-logo {
        height: 28px;
    }

    .sticky-btn {
        font-size: 13px;
        padding: 7px 12px;
    }
}

/* ===============================
   SMALL MOBILE (≤ 480px)
================================ */
@media (max-width: 480px) {
    .sticky-container {
        padding: 6px 12px;
    }

    .sticky-logo {
        height: 26px;
    }

    .sticky-btn {
        font-size: 12px;
        padding: 6px 10px;
    }
}

:root {
    --bg1: #020617;
    --bg2: #0f172a;
    --product: #ff7a00;
    --technique: #22c55e;
    --enduser: #06b6d4;
    --application: #3b82f6;
    --region: #8b5cf6;
    --navy-dark: hsl(213, 90%, 10%);
    --navy: hsl(213, 80%, 20%);
    --navy-light: hsl(213, 70%, 35%);
    --hero-gradient-start: hsl(213, 85%, 18%);
    --hero-gradient-end: hsl(213, 75%, 28%);
    --gold: hsl(45, 100%, 50%);
}

/* Hero Section */
.hero-section {
    background: linear-gradient(135deg, var(--hero-gradient-start), var(--hero-gradient-end));
    color: #ffffff;
    padding: 60px 24px;
    position: relative;
    overflow: hidden;
}

.hero-container {
    max-width: 1300px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
    align-items: center;
}

.breadcrumb {
    font-size: 14px;
    margin-bottom: 24px;
    opacity: 0.9;
}

    .breadcrumb a {
        color: #ffffff;
        text-decoration: none;
    }

        .breadcrumb a:hover {
            text-decoration: none;
        }

.separator {
    margin: 0 8px;
    opacity: 0.7;
}

.hero-title {
    font-size: 36px;
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 20px;
}

.hero-description {
    font-size: 15px;
    line-height: 1.7;
    margin-bottom: 24px;
    opacity: 0.95;
}

.hero-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
    margin-bottom: 32px;
    font-size: 14px;
}

.meta-item strong {
    color: #ffca28;
    margin-right: 4px;
}

.hero-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
}

.btn {
    padding: 14px 28px;
    font-size: 16px;
    font-weight: 600;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s;
}

.btn-primary {
    background: #ffffff;
    color: #0047ab;
}

    .btn-primary:hover {
        background: #ffca28;
        color: #0047ab;
        transform: translateY(-2px);
        box-shadow: 0 6px 20px rgba(255, 202, 40, 0.4);
    }

.btn-secondary {
    background: transparent;
    color: #ffffff;
    border: 2px solid #ffffff;
}

    .btn-secondary:hover {
        background: #ffffff;
        color: #0047ab;
    }

.hero-image {
    display: none;
}

/* Stats Section */
.stats-section {
    margin-top: -40px;
    position: relative;
    z-index: 10;
    padding-top: 20px;
    background: #f8f9fa;
}

.stats-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 24px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
}

.stat-card {
    background: #ffffff;
    padding: 3px;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    display: flex;
    align-items: center;
    gap: 20px;
    transition: transform 0.3s, box-shadow 0.3s;
}

    .stat-card:hover {
        transform: translateY(-4px);
        box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
    }

.stat-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #0047ab, #1565c0);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-size: 24px;
}

.stat-label {
    font-size: 13px;
    color: #666;
    margin-bottom: 4px;
}

.stat-value {
    font-size: 24px;
    font-weight: 700;
    color: #0047ab;
}

/* Content Section */

.content-section {
    padding: 70px 20px;
    background: #f8f9fa;
}

/* MAIN CONTAINER */
.content-container {
    max-width: 1300px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr;
    gap: 36px;
    width: 100%;
}

/* SECTION TITLE */
.section-title {
    font-size: 24px;
    color: #0047ab;
    margin-bottom: 20px;
    font-weight: 700;
    line-height: 1.3;
    word-wrap: break-word;
}

/* SECTION TEXT */
.section-text {
    font-size: 14.5px;
    line-height: 1.7;
    color: #444;
    margin-bottom: 18px;
    word-break: break-word;
    overflow-wrap: anywhere;
}

/* =========================
   SIDEBAR STYLES
   ========================= */

.content-sidebar {
    position: static;
}

/* Sidebar card style (SMALLER) */
.sidebar-card {
    background: #ffffff;
    border-radius: 10px;
    padding: 20px; /* reduced */
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
}

/* Share section */
.share-section {
    margin-bottom: 24px;
    padding-bottom: 24px;
    border-bottom: 1px solid #e0e0e0;
}

    .share-section h4 {
        font-size: 15px;
        color: #333;
        margin-bottom: 14px;
        font-weight: 600;
    }

.share-buttons {
    display: flex;
    gap: 10px;
}

.share-btn {
    width: 36px;
    height: 36px;
    border-radius: 7px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    text-decoration: none;
    transition: transform 0.3s;
}

    .share-btn:hover {
        transform: translateY(-2px);
    }

    .share-btn.linkedin {
        background: #0077b5;
    }

    .share-btn.twitter {
        background: #000000;
    }

    .share-btn.facebook {
        background: #1877f2;
    }

    .share-btn.email {
        background: #ea4335;
    }

    .share-btn.print {
        background: #666666;
    }

/* License section */
.license-list h4 {
    font-size: 15px;
    color: #333;
    margin-bottom: 16px;
    font-weight: 600;
}

.license-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 18px;
}

/* License item (COMPACT) */
.license-item {
    padding: 8px 10px;
    border: 1.8px solid #e0e0e0;
    border-radius: 7px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    transition: all 0.3s;
}

    .license-item input[type="radio"] {
        cursor: pointer;
        transform: scale(0.9);
    }

    /* Selected license */
    .license-item:has(input:checked) {
        border-color: #0047ab;
        background: #f0f5ff;
    }

.license-text {
    font-size: 13px;
    font-weight: 600;
    color: #333;
}

/* Price box smaller */
.price-box {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 1px;
}

.new-price {
    font-size: 15px;
    font-weight: 700;
    color: #0047ab;
}

.old-price {
    font-size: 11px;
    color: #999;
    text-decoration: line-through;
}

.discount {
    font-size: 11px;
    color: #ff4d4f;
}

/* Buttons & notes */
.delivery-note {
    text-align: center;
    color: #0047ab;
    font-size: 12.5px;
    margin-bottom: 16px;
}

/* Checkout button compact */
.btn-checkout {
    width: 100%;
    padding: 14px;
    background: linear-gradient(135deg, #ffca28, #ffa000);
    color: #0047ab;
    font-size: 15px;
    font-weight: 700;
    border: none;
    border-radius: 7px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    transition: all 0.3s;
}

    .btn-checkout:hover {
        background: linear-gradient(135deg, #ffd54f, #ffb300);
        transform: translateY(-2px);
        box-shadow: 0 5px 18px rgba(255, 202, 40, 0.35);
    }

.payment-note {
    text-align: center;
    margin-top: 14px;
    font-size: 12px;
    color: #666;
}

/* =========================
   RESPONSIVE & STICKY SIDEBAR
   ========================= */

@media (min-width: 1024px) {
    .content-container {
        grid-template-columns: 1fr 280px; /* sidebar smaller */
        gap: 36px;
    }

    .content-sidebar {
        position: sticky;
        top: 65px;
        align-self: start;
    }
}

/* ===============================
   SMALL DEVICES
   =============================== */

@media (max-width: 768px) {
    .content-section {
        padding: 50px 16px;
    }

    .section-title {
        font-size: 18px;
    }

    .section-text {
        font-size: 13.5px;
    }
}

@media (max-width: 480px) {
    .content-section {
        padding: 40px 14px;
    }

    .sidebar-card {
        padding: 16px;
    }

    .btn-checkout {
        padding: 13px;
        font-size: 14px;
    }
}

/* SCROLL PROGRESS BAR */
.scroll-progress {
    position: absolute;
    bottom: 0;
    left: 0;
    height: 3px;
    background: #0047ab;
    width: 0%;
    transition: width 0.15s;
}


/* Footer */
.site-footer {
    background: #0047ab;
    color: #ffffff;
    padding: 40px 24px;
    text-align: center;
}

.footer-container {
    max-width: 1400px;
    margin: 0 auto;
}

.footer-logo {
    margin-bottom: 16px;
}

    .footer-logo img {
        filter: brightness(0) invert(1);
        height: 40px;
    }

.footer-text {
    font-size: 14px;
    opacity: 0.9;
}

/* Responsive */
@media (max-width: 768px) {
    .desktop-nav {
        display: none;
    }

    .mobile-menu-toggle {
        display: block;
    }

    .hero-title {
        font-size: 28px;
    }

    .hero-description {
        font-size: 14px;
    }

    .stats-container {
        grid-template-columns: 1fr;
    }

    .section-title {
        font-size: 24px;
    }

    .chart-container {
        padding: 20px;
    }

    .chart-bars {
        gap: 6px;
        height: 300px;
    }

    .bar-value {
        font-size: 11px;
    }

    .bar-year {
        font-size: 11px;
    }

    .license-options {
        flex-direction: column;
    }
}

@media (min-width: 1024px) {
   
    .content-container {
        grid-template-columns: 1fr 380px;
    }

    .hero-title {
        font-size: 40px;
    }
}


/*FAQ CSS*/

.faq-container {
    margin-top: 100px;
}

.faq-heading {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 15px;
}

.faq-item {
    margin-bottom: 12px;
}

.faq-box {
    background: #ffffff;
    padding: 16px 20px;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    cursor: pointer;
    font-size: 16px;
    font-weight: 500;
    color: #0047ab;
    transition: all 0.25s ease;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

    .faq-box:hover {
        background: #f8faff;
        border-color: #cdd9f7;
    }

.arrow {
    font-size: 18px;
    transition: transform 0.3s ease;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    background: #fafafa;
    padding: 0 20px;
    border-left: 3px solid #0047ab;
    border-radius: 0 0 8px 8px;
    transition: max-height 0.3s ease, padding 0.3s ease;
}

.faq-item.active .faq-answer {
    max-height: 300px;
    padding: 16px 20px;
}

.faq-item.active .arrow {
    transform: rotate(180deg);
}
/* Large Laptops (1400px - 1600px) */
@media (max-width: 1600px) {
    .faq-container {
        margin-left: 180px;
        margin-right: 450px;
    }
}

/* Medium Laptops (1200px - 1400px) */
@media (max-width: 1400px) {
    .faq-container {
        margin-left: 150px;
        margin-right: 350px;
    }
}

/* Small Laptops / Tablets Landscape (1024px - 1200px) */
@media (max-width: 1200px) {
    .faq-container {
        margin-left: 100px;
        margin-right: 200px;
    }
}

/* Tablets (768px - 1024px) */
@media (max-width: 1024px) {
    .faq-container {
        margin-left: 40px;
        margin-right: 40px;
        margin-top: 40px;
    }
}

/* Mobile (Below 768px) */
@media (max-width: 768px) {
    .faq-container {
        margin-top: 30px;
        margin-left: 0;
        margin-right: 0;
        padding: 0 15px;
    }
}

/*li,ul,ol tag css*/

.main-content ul {
    list-style-type: disc;
    padding-left: 30px;
    list-style-position: outside;
    margin: 0;
}

    .main-content ul ul {
        list-style-type: circle;
        padding-left: 30px;
        list-style-position: outside;
    }

        .main-content ul ul ul {
            list-style-type: square;
            padding-left: 5px;
            list-style-position: outside;
        }

            .main-content ul ul ul ul {
                list-style-type: disc;
                padding-left: 30px;
                list-style-position: outside;
            }

.main-content li {
    font-size: 15px;
    line-height: 1.8;
    color: #322f2f;
    margin-bottom: 10px;
}

/* ONLY Use Cases & Key Takeaways ke liye */
/*.main-content ul.special-list {
    background-color: #F2F7FF;
}

    .main-content ul.special-list li {
        padding: 8px 10px;
        border-bottom: 1px solid #ccc;
    }

        .main-content ul.special-list li:last-child {
            border-bottom: none;
        }*/

/* Tab heading */
.main-content .md-tab {
    background: #F2F7FF;
    padding: 14px 50px 14px 15px;
    margin: 10px 0;
    cursor: pointer;
    position: relative;
    border-radius: 6px;
    font-size: 16px;
}

/* Plus / Minus icon */
.main-content .md-icon {
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    background: #1a3dbb;
    color: #fff;
    width: 26px;
    height: 26px;
    border-radius: 50%;
    text-align: center;
    line-height: 23px;
    font-weight: bold;
}

/* Content */
.main-content .md-content {
    padding: 15px;
    border: 1px solid #ddd;
    border-top: none;
    border-radius: 0 0 6px 6px;
}

/* Active tab */
.main-content .md-tab.active {
    background: #e9f0ff;
}


/* Tab heading */

.main-content .md-content {
    padding: 0 15px;
    border: 1px solid #ddd;
    border-top: none;
    border-radius: 0 0 6px 6px;
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    transition: max-height 0.4s ease, opacity 0.3s ease, padding 0.3s ease;
}

.main-content .md-tab.active + .md-content {
    max-height: 500px;
    opacity: 1;
    padding: 15px;
}


.highlight-segment {
    background-color: #fffbcc;
    border-left: 4px solid #f97316;
    padding: 6px 10px;
    border-radius: 6px;
}

/*segments css*/


:root {
    --bg1: #020617;
    --bg2: #0f172a;
    --product: #ff7a00;
    --technique: #22c55e;
    --enduser: #06b6d4;
    --application: #3b82f6;
    --region: #8b5cf6;
    --navy-dark: hsl(213, 90%, 10%);
    --navy: hsl(213, 80%, 20%);
    --navy-light: hsl(213, 70%, 35%);
    --hero-gradient-start: hsl(213, 85%, 18%);
    --hero-gradient-end: hsl(213, 75%, 28%);
    --gold: hsl(45, 100%, 50%);
}

/* Grid - compact version */
.segments {
    max-width: 1100px;
    margin: 32px auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
    padding: 0 12px;
}

/* Card - smaller & neat */
.segment {
    background: #fff;
    border-radius: 18px;
    padding: 16px 18px;
    transition: .25s ease;
}

    .segment:hover {
        transform: translateY(-5px);
    }

/* Badge - compact */
.badge {
    display: inline-block;
    padding: 5px 12px;
    border-radius: 999px;
    font-size: 11px;
    font-weight: 600;
    color: #fff;
    margin-bottom: 10px;
}

/* Title - slightly smaller */
.segment h3 {
    margin: 0 0 12px;
    font-size: 16px;
    font-weight: 700;
    color: #020617;
}

/* List */
.segment ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.segment li {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    font-size: 13px;
    margin-bottom: 8px;
    color: #0f172a;
}

    /* Arrow bullet */
    .segment li::before {
        content: "▶";
        font-size: 8px;
        margin-top: 4px;
    }

/* Color themes (same logic) */
.segment:nth-child(5n+1) .badge {
    background: var(--product);
}

.segment:nth-child(5n+1) li::before {
    color: var(--product);
}

.segment:nth-child(5n+2) .badge {
    background: var(--technique);
}

.segment:nth-child(5n+2) li::before {
    color: var(--technique);
}

.segment:nth-child(5n+3) .badge {
    background: var(--enduser);
}

.segment:nth-child(5n+3) li::before {
    color: var(--enduser);
}

.segment:nth-child(5n+4) .badge {
    background: var(--application);
}

.segment:nth-child(5n+4) li::before {
    color: var(--application);
}

.segment:nth-child(5n+5) .badge {
    background: var(--region);
}

.segment:nth-child(5n+5) li::before {
    color: var(--region);
}

/* Mobile */
@media (max-width: 768px) {
    .segments {
        grid-template-columns: 1fr;
        padding: 0 10px;
    }
}

/* Nested UL styling */
.segment li ul {
    margin-top: 6px;
    margin-left: 18px;
    padding-left: 10px;
}

    .segment li ul li {
        font-size: 12px;
        color: #334155;
        margin-bottom: 6px;
    }

        /* Nested arrow smaller */
        .segment li ul li::before {
            content: "▸";
            font-size: 7px;
            margin-top: 5px;
            color: #64748b;
        }

/* =========================
   FIX LIST STRUCTURE
========================= */

/* All LI should be block */
.segment li {
    display: block;
    position: relative;
    padding-left: 14px;
    font-size: 13px;
    margin-bottom: 8px;
    color: #0f172a;
}

/* =========================
   PARENT LI ARROW
========================= */
.segment > ul > li::before {
    content: "▶";
    position: absolute;
    left: 0;
    top: 4px;
    font-size: 8px;
}

/* =========================
   NESTED UL
========================= */
.segment li ul {
    margin-top: 6px;
    margin-left: 0px;
    padding-left: 0;
}

    /* =========================
   NESTED LI
========================= */
    .segment li ul li {
        font-size: 12px;
        color: #334155;
        padding-left: 12px;
        margin-bottom: 6px;
    }

        /* Nested arrow */
        .segment li ul li::before {
            content: "●";
            position: absolute;
            left: 0;
            font-size: 10px;
            color: #64748b;
        }

/* =========================
   BASE LI
========================= */
.segment li {
    position: relative;
    padding-left: 16px;
    margin-bottom: 8px;
    font-size: 13px;
    color: #0f172a;
}

/* =========================
   LEVEL 1 (▶)
========================= */
.segment > ul > li::before {
    content: "▶";
    position: absolute;
    left: 0;
    top: 4px;
    font-size: 8px;
}

/* =========================
   LEVEL 2 (●)
========================= */
.segment ul ul li {
    font-size: 12px;
    color: #334155;
    padding-left: 14px;
}

    .segment ul ul li::before {
        content: "●";
        position: absolute;
        left: 0;
        top: 4px;
        font-size: 8px;
        color: #64748b;
    }

/* =========================
   LEVEL 3 (■)
========================= */
.segment ul ul ul li {
    font-size: 12px;
    color: #475569;
    padding-left: 14px;
}

    .segment ul ul ul li::before {
        content: "■";
        position: absolute;
        left: 0;
        font-size: 5px;
        color: #94a3b8;
    }

/* Recent Developments */

.recent-developments {
    background: #f8faff;
    padding: 40px;
    border-radius: 10px;
    font-family: 'Segoe UI', sans-serif;
}

    .recent-developments h2 {
        font-size: 24px;
        margin-bottom: 25px;
        color: #0d47a1;
        border-left: 5px solid #1976d2;
        padding-left: 12px;
    }

.dev-card {
    background: #ffffff;
    border-left: 4px solid #1976d2;
    padding: 20px 22px;
    margin-bottom: 18px;
    border-radius: 8px;
    box-shadow: 0 6px 18px rgba(0,0,0,0.06);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

    .dev-card:hover {
        transform: translateY(-4px);
        box-shadow: 0 10px 25px rgba(0,0,0,0.12);
    }

.dev-date {
    display: inline-block;
    font-size: 13px;
    font-weight: 600;
    color: #1976d2;
    background: #e3f2fd;
    padding: 4px 10px;
    border-radius: 20px;
    margin-bottom: 10px;
}

.dev-card h3 {
    margin: 8px 0;
    font-size: 18px;
    color: #222;
}

.dev-card p {
    font-size: 15px;
    line-height: 1.6;
    color: #555;
}

.dev-card a {
    display: inline-block;
    margin-top: 10px;
    font-size: 14px;
    color: #1976d2;
    font-weight: 600;
    text-decoration: none;
}

    .dev-card a:hover {
        text-decoration: underline;
    }

/* 🔴 Line sirf heading par */
.rd-heading {
    font-size: 24px;
    color: #0d47a1;
    padding-left: 12px;
    border-left: 4px solid #1976d2;
    margin-bottom: 20px;
}


/*by Region */

.region-wrapper {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 12px;
    max-width: 100%;
    align-items: start;
}

/* Tablet */
@media (max-width: 991px) {
    .region-wrapper {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Mobile */
@media (max-width: 576px) {
    .region-wrapper {
        grid-template-columns: 1fr;
    }
}

.region-card {
    background: #fff;
    border-radius: 14px;
    box-shadow: 0 8px 22px rgba(0,0,0,.08);
    overflow: hidden;
}

.region-header {
    padding: 18px 22px;
    font-weight: 600;
    font-size: 16px;
    color: #0d47a1;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

    .region-header span {
        font-size: 18px;
        transition: .3s;
    }

.region-card.active .region-header span {
    transform: rotate(180deg);
}

.country-list {
    max-height: 0;
    overflow: hidden;
    transition: max-height .4s ease;
    padding: 0 22px;
}

.region-card.active .country-list {
    max-height: 600px;
    padding-bottom: 18px;
}

.country {
    padding: 10px 0;
    border-bottom: 1px dashed #e0e0e0;
    font-size: 14px;
}

    .country:last-child {
        border-bottom: none;
    }


.md-tab {
    font-size: 22px;
    color: #0047ab;
    margin-bottom: 24px;
    font-weight: 700;
}

.main-content {
    overflow: auto;
}


/*li,ul,ol tag css*/

.main-content ul {
    list-style-type: disc;
    padding-left: 30px;
    list-style-position: outside;
    margin: 0;
}

    .main-content ul ul {
        list-style-type: circle; /* ○ */
        padding-left: 30px;
        list-style-position: outside;
    }

        .main-content ul ul ul {
            list-style-type: square; /* ▪ */
            padding-left: 30px;
            list-style-position: outside;
        }

            .main-content ul ul ul ul {
                list-style-type: disc;
                padding-left: 30px;
                list-style-position: outside;
            }

.main-content li {
    font-size: 15px;
    line-height: 1.8;
    color: #322f2f;
    margin-bottom: 10px;
}


/* Research Methodology Section */


.research-approach-img {
    width: 100%;
    text-align: center;
    padding: 20px 0;
}

    .research-approach-img img {
        max-width: 100%;
        height: auto;
        display: inline-block;
    }

.main-content {
    overflow: auto;
}