﻿/* 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 */



/* Industry Section */



/* 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;
    }
}


/* 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: 22px;
    color: #0047ab;
    margin-bottom: 20px;
    font-weight: 400;
    line-height: 1.3;
    word-wrap: break-word;
    margin-top: 10px;
}

.section-title-h3 {
    font-size: 18px;
    color: #0047ab;
    margin-bottom: 20px;
    font-weight: 400;
    line-height: 1.3;
    word-wrap: break-word;
    margin-top: 15px;
}
/* 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-title-h3 {
        font-size: 16px;
    }

    .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;
    }

    .section-title-h3 {
        font-size: 20px;
    }

    .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: 45px;
}

.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 */
@media (max-width: 1600px) {
    .faq-container {
        max-width: 1000px;
    }
}

/* Medium laptops */
@media (max-width: 1400px) {
    .faq-container {
        max-width: 900px;
    }
}

/* Small laptops */
@media (max-width: 1200px) {
    .faq-container {
        max-width: 100%;
        padding: 30px;
    }
}

/* Tablets */
@media (max-width: 1024px) {
    .faq-container {
        padding: 20px;
        margin-top: 40px;
    }
}
/*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;
}


/* 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: 100%;
    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;
}