/*
Theme Name: star
Description: Specific styles of the theme relative ti this website.
*/

@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:ital,wght@0,200..800;1,200..800&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap');


html {
    scroll-behavior: smooth;
}

#insights-section,
#community-section,
#technology-section,
#partnerships-section,
#data-annexure-section,
#articles-section,
#key-features-section,
#journey-section {
    scroll-margin-top: 60px; 
}

.page-container.pg-home {
    margin-top: 0px;
}





/* Override blog page header banner, 404 error */
.archive .page-header-banner .phb-bg,
.category .page-header-banner .phb-bg,
.blog .page-header-banner .phb-bg {
    background-image: url('/wp-content/uploads/2026/01/articles-texture.webp') !important;
}

.error404 .page-header-banner .phb-bg {
    background-image: url('/wp-content/uploads/2026/01/articles-texture.webp') !important;
}

.archive .phb-heading,
.category .phb-heading,
.blog .phb-heading {
    font-size: 0;
}

.archive .phb-heading::after,
.category .phb-heading::after,
.blog .phb-heading::after {
    content: 'Articles';
    font-size: 50px;
}
/* Override blog page header banner END */





/* ============ Navbar Header Updates ============ */

/* Default: Dark background for all pages */
@media (min-width: 992px) {
    #site-header {
        background-color: #231e1ed6;
        box-shadow: none !important;
    }

    #site-header.sticky {
        background-color: #231e1ed6;
        box-shadow: none !important;
    }
}

/* Home page only: Transparent background */
@media (min-width: 992px) {
    .home #site-header {
        background-color: transparent;
        box-shadow: none !important;
    }

    .home #site-header.sticky {
        background-color: #231e1ed6;
        box-shadow: none !important;
    }
}

#site-header > .container {
    height: 100%;
}

#site-header .extended-container {
    height: 100%;
}

/* Flex Parent - Proper alignment */
#site-header .extended-container > .flex-parent {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    height: 100%;
}

/* Navbar Header - Left Side */
.navbar-header {
    flex: 0 0 auto;
    order: 1;
}

/* Header Icons Wrapper - Right Side */
.header-icons-wrapper {
    display: flex;
    align-items: center;
    gap: 20px;
    order: 3;
    margin-left: auto;
}

/* Hide navbar collapse by default */
.navbar-collapse {
    display: none;
    order: 2;
}

/* Logo Styling */
.header-logo {
    display: block;
}

.header-logo img {
    max-width: 200px;
    max-height: 60px;
}

/* Header Icon Button */
.header-icon-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    background-color: transparent;
    border: none;
    color: #FFFFFF;
    font-size: 20px;
    cursor: pointer;
    transition: all 0.3s ease;
    border-radius: 50%;
    flex-shrink: 0;
    position: relative;
    z-index: 1002;
}

.header-icon-btn:hover {
    background-color: rgba(255, 255, 255, 0.15);
    color: #FFFFFF;
}

.header-icon-btn:focus {
    outline: none;
}

/* Sticky state - change icon colors */
#site-header.sticky .header-icon-btn {
    color: #FFFFFF;
}

#site-header.sticky .header-icon-btn:hover {
    background-color: rgba(25, 70, 132, 0.1);
    color: #ffffff;
}

/* PDF Download Button */
.pdf-download-btn i {
    font-size: 22px;
}

/* Search Toggle Button */
.search-toggle-btn i {
    font-size: 20px;
}

/* Mobile Hamburger Menu Button */
.mobile-menu-toggle {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    width: 42px;
    height: 46px;
    padding: 12px 10px;
}

.hamburger-line {
    width: 100%;
    height: 3px;
    background-color: #FFFFFF;
    border-radius: 3px;
    transition: all 0.3s ease;
}

#site-header.sticky .hamburger-line {
    background-color: #ffffff;
}

/* Hamburger Animation when open */
.mobile-menu-toggle.open .hamburger-line:nth-child(1) {
    transform: rotate(45deg) translate(7px, 7px);
    background-color: #FFFFFF;
}

.mobile-menu-toggle.open .hamburger-line:nth-child(2) {
    opacity: 0;
}

.mobile-menu-toggle.open .hamburger-line:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
    background-color: #FFFFFF;
}

.header-buttons-wrapper {
    display: none !important;
}

/* Mobile Responsive */
@media (max-width: 991px) {
    #site-header {
        background-color: #231e1ed6;
        box-shadow: none !important;
    }

    #site-header.sticky {
        background-color: #231e1ed6;
        box-shadow: none !important;
    }

    .home #site-header {
        background-color: transparent;
        box-shadow: none !important;
    }

    .home #site-header.sticky {
        background-color: #231e1ed6;
        box-shadow: none !important;
    }

    .header-logo img {
        max-width: 140px;
        max-height: 50px;
    }

    .header-icons-wrapper {
        gap: 10px;
    }

    .header-icon-btn {
        width: 43px;
        height: 46px;
        color: #ffffff;
    }

    .header-icon-btn:hover {
        background-color: rgba(25, 70, 132, 0.1);
    }

    .hamburger-line {
        background-color: #ffffff;
    }
}

@media (max-width: 767px) {
    .header-icons-wrapper {
        gap: 5px;
    }

    .header-icon-btn {
        width: 38px;
        height: 46px;
        font-size: 18px;
    }

    .pdf-download-btn i {
        font-size: 20px;
    }

    .search-toggle-btn i {
        font-size: 18px;
    }

    .header-logo img {
        max-width: 120px;
        max-height: 45px;
    }
}

@media (max-width: 576px) {
    .header-logo img {
        max-width: 100px;
        max-height: 40px;
    }

    .header-icons-wrapper {
        gap: 3px;
    }

    .header-icon-btn {
        width: 38px;
        height: 46px;
        font-size: 16px;
    }

    .pdf-download-btn i {
        font-size: 18px;
    }
}
/* ============ Navbar Header Updates End ============ */




/* ============ Fullscreen Menu Overlay(Ham PopUp) ============ */
.fullscreen-menu-overlay {
    position: fixed;
    top: -95vh;
    left: 0;
    width: 100%;
    height: 95vh;
    max-height: 910px;
    background: #010812;
    z-index: 50;
    transition: top 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    overflow: hidden;
}

.fullscreen-menu-overlay.active {
    top: 0;
}

.fullscreen-menu-content {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    padding: 80px 40px 40px 40px;
    overflow-y: auto;
    overflow-x: hidden;
    scrollbar-width: thin;
    scrollbar-color: rgba(255, 255, 255, 0.2) transparent;
}

.fullscreen-menu-content::-webkit-scrollbar {
    width: 4px;
}

.fullscreen-menu-content::-webkit-scrollbar-track {
    background: transparent;
}

.fullscreen-menu-content::-webkit-scrollbar-thumb {
    background: rgba(255, 255, 255, 0.2);
    border-radius: 2px;
}


/* Big Watermark Logo Background */
.menu-watermark-logo {
    position: absolute;
    z-index: 1;
    pointer-events: none;
}

.menu-watermark-logo img {
    width: 390px;
    height: auto;
}


/* Left Side Images */
.menu-left-images {
    position: absolute;
    left: 0px;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    gap: 0;
    z-index: 2;
}

.menu-image {
    width: 250px;
    height: 290px;
    border-radius: 15px;
    overflow: hidden;
}

.menu-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.menu-image-1 {
    position: relative;
}

.menu-image-2 {
    margin-top: -80px;
    margin-left: 60px;
    z-index: 1;
}


/* Social Icons - Right Side */
/* CHANGED: position: relative in flow instead of absolute */
.menu-social-right {
    position: relative;      /* CHANGED from absolute */
    right: auto;             /* CHANGED */
    bottom: auto;            /* CHANGED */
    display: flex;
    flex-direction: column;
    gap: 15px;
    align-items: center;
    z-index: 3;
    margin-top: 40px;        /* ADDED - spacing from nav */
}

.menu-social-label {
    font-family: 'Inter', sans-serif;
    font-size: 20px;
    font-weight: 500;
    color: #FFFFFF;
}

.menu-social-icons {
    display: flex;
    gap: 15px;
}

.social-icon-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background-color: #194684;
    color: #FFFFFF;
    font-size: 18px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-icon-link:hover {
    color: #FFFFFF;
    background-color: #2EAAE1;
}


/* Center Menu */
.menu-center {
    position: relative;
    z-index: 3;
}

.fullscreen-nav-list {
    list-style: none;
    padding: 0;
    margin: 0;
    text-align: center;
}

.fullscreen-nav-list li {
    margin-bottom: 20px;
}

.fullscreen-nav-list li a {
    font-family: 'Inter', sans-serif;
    font-size: 35px;
    font-weight: 500;
    color: #FFFFFF;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-block;
    position: relative;
}

.fullscreen-nav-list li a:hover {
    color: #9a9fa1;
}


/* Timeline - Centered Bottom */
.menu-timeline-bottom {
    position: relative;      
    bottom: auto;           
    left: auto;              
    transform: none;        
    z-index: 3;
    margin-top: 165px;        
    margin-bottom: 30px;     
}

.menu-timeline {
    display: flex;
    align-items: center;
    gap: 0;
}

.timeline-item {
    display: flex;
    align-items: center;
    text-align: center;
}

.timeline-year {
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    font-weight: 500;
    color: #FFFFFF;
    margin-left: 10px;
    margin-right: 10px;
}

.timeline-center {
    padding: 0 30px;
}

.timeline-text {
    font-family: 'Inter', sans-serif;
    font-size: 18px;
    font-weight: 500;
    color: #FFFFFF;
}

.timeline-line {
    width: 150px;
    height: 1px;
    background-color: rgba(255, 255, 255, 0.3);
    position: relative;
}

.timeline-arrow-left,
.timeline-arrow-right {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    font-size: 10px;
    color: rgba(255, 255, 255, 0.3);
}

.timeline-arrow-left {
    left: 0;
}

.timeline-arrow-right {
    right: 0;
}


/* Prevent body scroll when menu is open */
body.menu-open {
    overflow: hidden;
}


/* ============ Responsive Breakpoints ============ */


/* Medium Desktops - 1366px to 1599px */
@media (max-width: 1599px) {
    .fullscreen-menu-content {
        padding: 80px 30px 30px 30px;
        justify-content: flex-start;
    }

    .menu-left-images {
        left: 0px;
    }

    .menu-image {
        width: 175px;
        height: 250px;
    }

    .menu-image-2 {
        margin-top: -85px;
        margin-left: 65px;
    }

    .fullscreen-nav-list li a {
        font-size: 35px;
    }

    .fullscreen-nav-list li {
        margin-bottom: 21px;
    }

    .menu-watermark-logo img {
        width: 325px;
    }

    .menu-social-right {
        margin-top: 35px;
    }

    .menu-social-label {
        font-size: 21px;
    }

    .social-icon-link {
        width: 48px;
        height: 48px;
        font-size: 19px;
    }

    .menu-social-icons {
        gap: 16px;
    }

    .timeline-text {
        font-size: 18px;
    }

    .timeline-year {
        font-size: 16px;
    }

    .timeline-line {
        width: 170px;
    }

    .timeline-center {
        padding: 0 33px;
    }

    .menu-timeline-bottom {
        margin-top: 165px;
        margin-bottom: 25px;
    }
}


/* Standard Desktops - 1201px to 1365px */
@media (max-width: 1365px) {
    .fullscreen-menu-content {
        padding: 80px 30px 30px 30px;
        justify-content: flex-start;
    }

    .menu-left-images {
        left: 0px;
    }

    .menu-image {
        width: 185px;
        height: 250px;
    }

    .menu-image-2 {
        margin-top: -80px;
        margin-left: 60px;
    }

    .fullscreen-nav-list li a {
        font-size: 30px;
    }

    .fullscreen-nav-list li {
        margin-bottom: 21px;
    }

    .menu-watermark-logo img {
        width: 325px;
    }

    .menu-social-right {
        margin-top: 30px;
    }

    .menu-social-label {
        font-size: 20px;
    }

    .social-icon-link {
        width: 46px;
        height: 46px;
        font-size: 18px;
    }

    .menu-social-icons {
        gap: 15px;
    }

    .timeline-text {
        font-size: 18px;
    }

    .timeline-year {
        font-size: 16px;
    }

    .timeline-line {
        width: 160px;
    }

    .timeline-center {
        padding: 0 32px;
    }

    .menu-timeline-bottom {
        margin-top: 200px;
        margin-bottom: 20px;
    }
}


/* Below 1200px - Vertical Layout */
@media (max-width: 1200px) {
    .menu-left-images {
        display: none;
    }

    .fullscreen-menu-content {
        padding: 80px 30px 30px 30px;
        justify-content: flex-start;
        gap: 0;
    }

    .menu-center {
        margin-top: auto;
        margin-bottom: auto;
        width: 100%;
        flex-shrink: 0;
    }

    .fullscreen-nav-list li a {
        font-size: 30px;
    }

    .fullscreen-nav-list li {
        margin-bottom: 16px;
    }

    .menu-watermark-logo img {
        width: 300px;
    }

    .menu-social-right {
        margin-top: 30px;
        flex-shrink: 0;
    }

    .menu-social-label {
        font-size: 18px;
    }

    .social-icon-link {
        width: 42px;
        height: 42px;
        font-size: 17px;
    }

    .menu-social-icons {
        gap: 12px;
    }

    .menu-timeline-bottom {
        margin-top: 30px;
        margin-bottom: 30px;
        flex-shrink: 0;
    }

    .timeline-text {
        font-size: 16px;
    }

    .timeline-year {
        font-size: 15px;
    }

    .timeline-line {
        width: 100px;
    }

    .timeline-center {
        padding: 0 25px;
    }
}


/* Tablets - 991px */
@media (max-width: 991px) {
    .fullscreen-menu-content {
        padding: 70px 30px 30px 30px;
        justify-content: flex-start;
        gap: 0;
    }

    .menu-center {
        margin-top: auto;
        margin-bottom: auto;
        flex-shrink: 0;
    }

    .menu-social-right {
        flex-shrink: 0;
        margin-top: 25px;
    }

    .menu-timeline-bottom {
        flex-shrink: 0;
        margin-top: 25px;
        margin-bottom: 25px;
    }

    .fullscreen-nav-list li a {
        font-size: 30px;
    }

    .fullscreen-nav-list li {
        margin-bottom: 14px;
    }

    .menu-watermark-logo img {
        width: 300px;
    }

    .menu-social-label {
        font-size: 17px;
    }

    .social-icon-link {
        width: 40px;
        height: 40px;
        font-size: 16px;
    }

    .timeline-text {
        font-size: 16px;
    }

    .timeline-year {
        font-size: 14px;
    }

    .timeline-line {
        width: 90px;
    }

    .timeline-center {
        padding: 0 20px;
    }
}


/* Small Tablets - 768px */
@media (max-width: 768px) {
    .fullscreen-menu-content {
        padding: 60px 25px 25px 25px;
        justify-content: flex-start;
        gap: 0;
    }

    .menu-center {
        margin-top: auto;
        margin-bottom: auto;
        flex-shrink: 0;
    }

    .menu-social-right {
        flex-shrink: 0;
        margin-top: 25px;
    }

    .menu-timeline-bottom {
        flex-shrink: 0;
        margin-top: 25px;
        margin-bottom: 20px;
    }

    .fullscreen-nav-list li a {
        font-size: 30px;
    }

    .fullscreen-nav-list li {
        margin-bottom: 13px;
    }

    .menu-watermark-logo img {
        width: 300px;
    }

    .menu-social-label {
        font-size: 16px;
    }

    .social-icon-link {
        width: 40px;
        height: 40px;
        font-size: 16px;
    }

    .menu-social-icons {
        gap: 11px;
    }

    .timeline-text {
        font-size: 15px;
    }

    .timeline-year {
        font-size: 14px;
    }

    .timeline-line {
        width: 80px;
    }

    .timeline-center {
        padding: 0 18px;
    }
}


/* Mobile Landscape - 576px */
@media (max-width: 576px) {
    .fullscreen-menu-content {
        padding: 65px 20px 20px 20px;
        justify-content: flex-start;
        gap: 0;
    }

    .menu-center {
        margin-top: auto;
        margin-bottom: auto;
        flex-shrink: 0;
    }

    .menu-social-right {
        flex-shrink: 0;
        margin-top: 22px;
    }

    .menu-timeline-bottom {
        flex-shrink: 0;
        margin-top: 22px;
        margin-bottom: 18px;
    }

    .fullscreen-nav-list li a {
        font-size: 25px;
    }

    .fullscreen-nav-list li {
        margin-bottom: 12px;
    }

    .menu-watermark-logo img {
        width: 300px;
    }

    .menu-social-label {
        font-size: 15px;
    }

    .social-icon-link {
        width: 38px;
        height: 38px;
        font-size: 15px;
    }

    .menu-social-icons {
        gap: 10px;
    }

    .timeline-text {
        font-size: 13px;
    }

    .timeline-year {
        font-size: 12px;
    }

    .timeline-line {
        width: 60px;
    }

    .timeline-center {
        padding: 0 15px;
    }
}


/* Small Mobile - 320px */
@media (max-width: 320px) {
    .fullscreen-menu-content {
        padding: 75px 15px 15px 15px;
        justify-content: flex-start;
        gap: 0;
    }

    .menu-center {
        margin-top: auto;
        margin-bottom: auto;
        flex-shrink: 0;
    }

    .menu-social-right {
        flex-shrink: 0;
        margin-top: 18px;
    }

    .menu-timeline-bottom {
        flex-shrink: 0;
        margin-top: 18px;
        margin-bottom: 15px;
    }

    .fullscreen-nav-list li a {
        font-size: 25px;
    }

    .fullscreen-nav-list li {
        margin-bottom: 10px;
    }

    .menu-watermark-logo img {
        width: 250px;
    }

    .menu-social-label {
        font-size: 14px;
    }

    .social-icon-link {
        width: 35px;
        height: 35px;
        font-size: 14px;
    }

    .menu-social-icons {
        gap: 8px;
    }

    .timeline-text {
        font-size: 11px;
    }

    .timeline-year {
        font-size: 11px;
    }

    .timeline-line {
        width: 50px;
    }

    .timeline-center {
        padding: 0 12px;
    }
}
/* ============ Fullscreen Menu Overlay End ============ */










/* ====== Hero Banner Section ====== */
.hero-banner-section {
    position: relative;
    width: 100%;
    height: 100vh;
    min-height: 600px;
    max-height: 1200px;
    overflow: hidden;
}

.hero-bg-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    z-index: 0;
}

.hero-banner-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(1, 8, 18, 0.15);
    z-index: 1;
}

.hero-mist-layer {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 200%; 
    height: 100%;
    background-repeat: repeat-x;
    background-position: bottom left;
    background-size: 50% 100%; 
    z-index: 2;
    pointer-events: none;
    image-rendering: -webkit-optimize-contrast; 
    image-rendering: crisp-edges;
    will-change: transform;
}

.hero-mist-1 {
    background-image: url('/wp-content/uploads/2026/01/mist-v2-scaled.webp');
    animation: mistMove 30s linear infinite;
    /* opacity: 0.9; */
}

.hero-mist-2 {
    background-image: url('/wp-content/uploads/2026/01/mist-v2-scaled.webp');
    animation: mistMove 30s linear infinite;
    /* opacity: 0.8; */
    animation-delay: 4s; 
}

/* Smooth Mist Animation */
@keyframes mistMove {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

.hero-banner-section .container {
    position: relative;
    z-index: 3;
    height: 100%;
}

.hero-banner-section .extended-container {
    height: 100%;
}

.hero-banner-wrap {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: flex-end;
    height: 100%;
    padding: 60px 0;
    position: relative;
}

.hero-content {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.hero-title {
    font-family: 'Inter', sans-serif;
    font-size: 72px;
    font-weight: 700;
    line-height: 1.2;
    color: #FFFFFF;
        text-shadow: 1px 1px 3px rgb(0, 0, 0);
    text-transform: uppercase;
    margin: 0;
    letter-spacing: -1px;
    text-align: center;
}

.hero-subtitle-wrap {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.hero-subtitle {
    font-family: 'Inter', sans-serif;
    font-size: 48px;
    font-weight: 700;
    line-height: 1.2;
    color: #737373;
    text-shadow: 1px 1px 3px rgb(255 231 231);
    margin: 0;
    text-align: center;
}

.hero-description {
    font-family: 'Inter', sans-serif;
    font-size: 18px;
    font-weight: 400;
    line-height: 1.4;
    color: #737373;
    text-shadow: 1px 1px 3px rgb(175 171 171);
    margin: 0;
    text-align: center;
}

@media (max-width: 1200px) {
    .hero-title {
        font-size: 64px;
    }
    
    .hero-subtitle {
        font-size: 42px;
    }
    
    .hero-description {
        font-size: 17px;
    }
    
    .hero-content {
        gap: 25px;
    }
}

@media (max-width: 991px) {
    .hero-banner-section {
        min-height: 500px;
        max-height: 900px;
    }
    
    .hero-banner-wrap {
        padding: 50px 0;
    }
    
    .hero-title {
        font-size: 56px;
    }
    
    .hero-subtitle {
        font-size: 36px;
    }
    
    .hero-description {
        font-size: 16px;
    }
    
    .hero-content {
        gap: 20px;
    }
}

@media (max-width: 768px) {
    .hero-banner-section {
        min-height: 450px;
        max-height: 700px;
    }
    
    .hero-banner-wrap {
        padding: 40px 0;
    }
    
    .hero-title {
        font-size: 42px;
        letter-spacing: -0.5px;
    }
    
    .hero-subtitle {
        font-size: 32px;
    }
    
    .hero-description {
        font-size: 15px;
    }
    
    .hero-content {
        gap: 18px;
    }
    
    .hero-subtitle-wrap {
        gap: 6px;
    }
}

@media (max-width: 576px) {
    .hero-banner-section {
        min-height: 400px;
        max-height: 650px;
    }
    
    .hero-banner-wrap {
        padding: 30px 0;
    }
    
    .hero-title {
        font-size: 32px;
        letter-spacing: 0;
    }
    
    .hero-subtitle {
        font-size: 26px;
    }
    
    .hero-description {
        font-size: 14px;
    }
    
    .hero-content {
        gap: 15px;
    }
}

@media (max-width: 320px) {
    .hero-banner-section {
        min-height: 350px;
    }
    
    .hero-banner-wrap {
        padding: 25px 0;
    }
    
    .hero-title {
        font-size: 28px;
    }
    
    .hero-subtitle {
        font-size: 22px;
    }
    
    .hero-description {
        font-size: 13px;
    }
    
    .hero-content {
        gap: 12px;
    }
    
    .hero-subtitle-wrap {
        gap: 5px;
    }
}
/* ====== Hero Banner Section End ====== */





/* ============ Journey Section ============ */
.journey-section {
    background: #FFFFFF;
    padding: 100px 0;
}

.journey-wrap {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    gap: 80px;
}

.journey-content {
    display: flex;
    flex-direction: column;
}

.journey-title {
    font-family: 'Inter', sans-serif;
    font-size: 58px;
    font-weight: 500;
    line-height: 1.2;
    color: #010812;
    margin: 0 0 30px 0;
    /* max-width: 525px; */
}

/* Text with Image Background Clip */
.text-image-clip {
    background-image: url('/wp-content/uploads/2026/01/thread-texture.webp');
    background-size: cover;
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
}

.journey-description {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 22px;
    font-weight: 400;
    line-height: 1.7;
    color: #737373;
    margin: 0 0 40px 0;
    text-align: justify;
}

.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    font-weight: 600;
    color: #FFFFFF;
    background: #194684;
    padding: 15px 30px;
    border-radius: 50px;
    text-decoration: none !important;
    transition: all 0.3s ease;
    width: fit-content;
    border: 2px solid #194684;
    position: relative;
    overflow: hidden;
}

.btn-primary:hover {
    background: transparent;
    color: #194684;
    border: 2px solid #194684;
    padding-right: 40px; 
}

.btn-primary i {
    font-size: 14px;
    transition: transform 0.3s ease;
    display: inline-flex;
    align-items: center;
}

.btn-primary:hover i {
    transform: translateX(8px); 
}

.journey-image {
    display: flex;
    justify-content: center;
    flex-shrink: 0;
    position: relative;
    overflow: visible;
    width: 500px;
    height: 500px;
}

.journey-image img {
    width: 100%;
    max-width: 500px;
    height: auto;
    position: absolute;
    right: -100%;
    opacity: 0;
    transition: all 1s cubic-bezier(0.4, 0, 0.2, 1);
}

.journey-section.in-view .journey-image img {
    right: 0;
    opacity: 1;
}

@media (max-width: 1200px) {
    .journey-section {
        padding: 80px 0;
    }
    
    .journey-wrap {
        gap: 60px;
    }
    
    .journey-title {
        font-size: 52px;
        margin: 0 0 25px 0;
        max-width: 480px;
    }
    
    .journey-description {
        font-size: 20px;
        margin: 0 0 35px 0;
    }
    
    .journey-image {
        width: 420px;
        height: 420px;
    }
    
    .journey-image img {
        max-width: 420px;
    }
}

@media (max-width: 991px) {
    .journey-section {
        padding: 70px 0;
    }
    
    .journey-wrap {
        gap: 50px;
    }
    
    .journey-title {
        font-size: 46px;
        margin: 0 0 20px 0;
        max-width: 420px;
    }
    
    .journey-description {
        font-size: 18px;
        line-height: 1.6;
        margin: 0 0 30px 0;
    }
    
    .btn-primary {
        font-size: 15px;
        padding: 14px 28px;
    }
    
    .journey-image {
        width: 350px;
        height: 350px;
    }
    
    .journey-image img {
        max-width: 350px;
    }
}

@media (max-width: 768px) {
    .journey-section {
        padding: 60px 0;
    }
    
    .journey-wrap {
        flex-direction: column-reverse;
        gap: 40px;
    }
    
    .journey-content {
        align-items: center;
        text-align: center;
    }
    
    .journey-title {
        font-size: 42px;
        margin: 0 0 20px 0;
        max-width: 100%;
    }
    
    .journey-description {
        font-size: 17px;
        margin: 0 0 30px 0;
    }
    
    .journey-image {
        width: 400px;
        height: 400px;
    }
    
    .journey-image img {
        max-width: 400px;
    }
}

@media (max-width: 576px) {
    .journey-section {
        padding: 50px 0;
    }
    
    .journey-wrap {
        gap: 35px;
    }
    
    .journey-title {
        font-size: 36px;
        margin: 0 0 18px 0;
    }
    
    .journey-description {
        font-size: 16px;
        line-height: 1.6;
        margin: 0 0 25px 0;
    }
    
    .btn-primary {
        font-size: 14px;
        padding: 12px 24px;
        gap: 8px;
    }
    
    .btn-primary i {
        font-size: 12px;
    }
    
    .journey-image {
        width: 300px;
        height: 300px;
    }
    
    .journey-image img {
        max-width: 300px;
    }
}

@media (max-width: 320px) {
    .journey-section {
        padding: 40px 0;
    }
    
    .journey-wrap {
        gap: 30px;
    }
    
    .journey-title {
        font-size: 32px;
        margin: 0 0 15px 0;
    }
    
    .journey-description {
        font-size: 15px;
        margin: 0 0 20px 0;
    }
    
    .btn-primary {
        font-size: 13px;
        padding: 11px 22px;
    }
    
    .journey-image {
        width: 260px;
        height: 260px;
    }
    
    .journey-image img {
        max-width: 260px;
    }
}
/* ============ Journey Section End ============ */



/* ============ Leadership Section ============ */
.leadership-section {
    position: relative;
    min-height: 700px;
    max-height: 1200px;
    overflow: hidden;
    border-radius: 20px;
    margin: 0 10px 0 10px;
}

.leadership-bg-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    z-index: 0;
}

.leadership-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(1, 8, 18, 0.3);
    z-index: 1;
}

.leadership-section .container {
    position: relative;
    z-index: 2;
}

.leadership-wrap {
    display: flex;
    flex-direction: column;
    gap: 60px;
    padding: 80px 0;
}

.leadership-content {
    display: flex;
    flex-direction: column;
    max-width: 1200px;
}

.leadership-title {
    font-family: 'Inter', sans-serif;
    font-size: 58px;
    font-weight: 500;
    line-height: 1.2;
    color: #FFFFFF;
    margin: 0 0 30px 0;
    max-width: 825px;
}

.leadership-description {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 22px;
    font-weight: 400;
    line-height: 1.7;
    color: #FFFFFF;
    margin: 0;
    text-align: justify;
    max-width: 1100px;
}

.leadership-stats {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    gap: 60px;
    margin-top: 20px;
}

.stat-item {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.stat-number {
    font-family: 'Inter', sans-serif;
    font-size: 70px;
    font-weight: 500;
    line-height: 1;
    color: #FFFFFF;
    margin: 0;
}

.stat-label {
    font-family: 'Inter', sans-serif;
    font-size: 22px;
    font-weight: 500;
    line-height: 1.4;
    color: #FFFFFF;
    margin: 0;
}

@media (max-width: 1600px) {
    .stat-number {
        font-size: 60px;
    }
    
    .stat-label {
        font-size: 20px;
    }
}

@media (max-width: 1200px) {
    .leadership-section {
        min-height: 600px;
        max-height: 1000px;
    }
    
    .leadership-wrap {
        gap: 50px;
        padding: 70px 0;
    }
    
    .leadership-title {
        font-size: 52px;
        margin: 0 0 25px 0;
        max-width: 750px;
    }
    
    .leadership-description {
        font-size: 20px;
        max-width: 1000px;
    }
    
    .leadership-stats {
        gap: 50px;
    }
    
    .stat-number {
        font-size: 50px;
    }
    
    .stat-label {
        font-size: 18px;
    }
}

@media (max-width: 991px) {
    .leadership-section {
        min-height: 550px;
        max-height: 900px;
        border-radius: 15px;
    }
    
    .leadership-wrap {
        gap: 45px;
        padding: 60px 0;
    }
    
    .leadership-title {
        font-size: 46px;
        margin: 0 0 22px 0;
        max-width: 650px;
    }
    
    .leadership-description {
        font-size: 18px;
        line-height: 1.6;
        max-width: 900px;
    }
    
    .leadership-stats {
        gap: 40px;
    }
    
    .stat-number {
        font-size: 45px;
    }
    
    .stat-label {
        font-size: 16px;
    }
}

@media (max-width: 768px) {
    .leadership-section {
        min-height: auto;
        max-height: none;
        border-radius: 12px;
        margin: 0 8px 0 8px;
    }
    
    .leadership-wrap {
        gap: 40px;
        padding: 50px 0;
    }
    
    .leadership-content {
        max-width: 100%;
    }
    
    .leadership-title {
        font-size: 42px;
        margin: 0 0 20px 0;
        max-width: 100%;
    }
    
    .leadership-description {
        font-size: 17px;
        max-width: 100%;
    }
    
    .leadership-stats {
        flex-direction: column;
        align-items: center;
        gap: 35px;
        margin-top: 10px;
    }
    
    .stat-item {
        align-items: center;
        gap: 8px;
    }
    
    .stat-number {
        font-size: 45px;
    }
    
    .stat-label {
        font-size: 16px;
    }
}

@media (max-width: 576px) {
    .leadership-section {
        border-radius: 10px;
        margin: 0 5px 0 5px;
    }
    
    .leadership-wrap {
        gap: 35px;
        padding: 40px 0;
    }
    
    .leadership-title {
        font-size: 36px;
        margin: 0 0 18px 0;
    }
    
    .leadership-description {
        font-size: 16px;
        line-height: 1.6;
    }
    
    .leadership-stats {
        gap: 30px;
    }
    
    .stat-item {
        align-items: center;
        gap: 6px;
    }
    
    .stat-number {
        font-size: 40px;
    }
    
    .stat-label {
        font-size: 16px;
    }
}

@media (max-width: 320px) {
    .leadership-section {
        border-radius: 8px;
    }
    
    .leadership-wrap {
        gap: 30px;
        padding: 35px 0;
    }
    
    .leadership-title {
        font-size: 32px;
        margin: 0 0 15px 0;
    }
    
    .leadership-description {
        font-size: 15px;
    }
    
    .leadership-stats {
        gap: 25px;
    }
    
    .stat-number {
        font-size: 35px;
    }
    
    .stat-label {
        font-size: 15px;
    }
}
/* ============ Leadership Section End ============ */



/* ============ Global Markets Section ============ */
.global-markets-section {
    background: #FFFFFF;
    padding: 100px 0;
}

.global-markets-wrap {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 60px;
}

.global-markets-title {
    font-family: 'Inter', sans-serif;
    font-size: 58px;
    font-weight: 500;
    line-height: 1.2;
    color: #010812;
    margin: 0;
    text-align: center;
    max-width: 950px;
}

/* Global Text Clip */
.global-text-clip {
    background-image: url('/wp-content/uploads/2026/01/global-texture.webp');
    background-size: cover;
    background-position: center;
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
}

.map-image {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
}

.map-image img {
    width: 100%;
    max-width: 1000px;
    height: auto;
}

@media (max-width: 1200px) {
    .global-markets-section {
        padding: 80px 0;
    }
    
    .global-markets-wrap {
        gap: 50px;
    }
    
    .global-markets-title {
        font-size: 52px;
        max-width: 850px;
    }
    
    .map-image img {
        max-width: 900px;
    }
}

@media (max-width: 991px) {
    .global-markets-section {
        padding: 70px 0;
    }
    
    .global-markets-wrap {
        gap: 45px;
    }
    
    .global-markets-title {
        font-size: 46px;
        max-width: 750px;
    }
    
    .map-image img {
        max-width: 750px;
    }
}

@media (max-width: 768px) {
    .global-markets-section {
        padding: 60px 0;
    }
    
    .global-markets-wrap {
        gap: 40px;
    }
    
    .global-markets-title {
        font-size: 42px;
        max-width: 100%;
    }
    
    .map-image img {
        max-width: 100%;
    }
}

@media (max-width: 576px) {
    .global-markets-section {
        padding: 50px 0;
    }
    
    .global-markets-wrap {
        gap: 35px;
    }
    
    .global-markets-title {
        font-size: 36px;
    }
}

@media (max-width: 320px) {
    .global-markets-section {
        padding: 40px 0;
    }
    
    .global-markets-wrap {
        gap: 30px;
    }
    
    .global-markets-title {
        font-size: 32px;
    }
}
/* ============ Global Markets Section End ============ */




/* ============ Sponsors Section ============ */
.sponsors-section {
    background: #00152D;
    padding: 100px 0;
}

.sponsors-wrap {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 60px;
}

.sponsors-title {
    font-family: 'Inter', sans-serif;
    font-size: 58px;
    font-weight: 500;
    line-height: 1.2;
    color: #FFFFFF;
    margin: 0;
    text-align: center;
}

.sponsor-tier {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 40px;
    width: 100%;
}

.sponsor-tier-title {
    font-family: 'Inter', sans-serif;
    font-size: 20px;
    font-weight: 500;
    color: #F9FCFF;
    margin: 0;
    text-align: center;
}

.sponsor-logos {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 60px;
    width: 100%;
}

.gold-sponsors {
    max-width: 800px;
}

.silver-sponsors {
    max-width: 1200px;
}

.sponsor-logo {
    display: flex;
    justify-content: center;
    align-items: center;
    transition: transform 0.3s ease;
}

.sponsor-logo img {
    max-width: 200px;
    max-height: 80px;
    width: auto;
    height: auto;
    object-fit: contain;
}

.gold-sponsors .sponsor-logo img {
    max-width: 250px;
    max-height: 100px;
}

@media (max-width: 1200px) {
    .sponsors-section {
        padding: 80px 0;
    }
    
    .sponsors-wrap {
        gap: 50px;
    }
    
    .sponsors-title {
        font-size: 52px;
    }
    
    .sponsor-tier {
        gap: 35px;
    }
    
    .sponsor-logos {
        gap: 50px;
    }
    
    .gold-sponsors {
        max-width: 700px;
    }
    
    .silver-sponsors {
        max-width: 1000px;
    }
    
    .sponsor-logo img {
        max-width: 180px;
        max-height: 75px;
    }
    
    .gold-sponsors .sponsor-logo img {
        max-width: 220px;
        max-height: 90px;
    }
}

@media (max-width: 991px) {
    .sponsors-section {
        padding: 70px 0;
    }
    
    .sponsors-wrap {
        gap: 45px;
    }
    
    .sponsors-title {
        font-size: 46px;
    }
    
    .sponsor-tier {
        gap: 30px;
    }
    
    .sponsor-tier-title {
        font-size: 18px;
    }
    
    .sponsor-logos {
        gap: 40px;
    }
    
    .gold-sponsors {
        max-width: 600px;
    }
    
    .silver-sponsors {
        max-width: 900px;
    }
    
    .sponsor-logo img {
        max-width: 160px;
        max-height: 70px;
    }
    
    .gold-sponsors .sponsor-logo img {
        max-width: 200px;
        max-height: 85px;
    }
}

@media (max-width: 768px) {
    .sponsors-section {
        padding: 60px 0;
    }
    
    .sponsors-wrap {
        gap: 40px;
    }
    
    .sponsors-title {
        font-size: 42px;
    }
    
    .sponsor-tier {
        gap: 28px;
    }
    
    .sponsor-tier-title {
        font-size: 17px;
    }
    
    .sponsor-logos {
        gap: 35px;
    }
    
    .gold-sponsors {
        max-width: 100%;
    }
    
    .silver-sponsors {
        max-width: 100%;
    }
    
    .sponsor-logo img {
        max-width: 140px;
        max-height: 65px;
    }
    
    .gold-sponsors .sponsor-logo img {
        max-width: 180px;
        max-height: 80px;
    }
}

@media (max-width: 576px) {
    .sponsors-section {
        padding: 50px 0;
    }
    
    .sponsors-wrap {
        gap: 35px;
    }
    
    .sponsors-title {
        font-size: 36px;
    }
    
    .sponsor-tier {
        gap: 25px;
    }
    
    .sponsor-tier-title {
        font-size: 16px;
    }
    
    .sponsor-logos {
        gap: 30px;
    }
    
    .sponsor-logo img {
        max-width: 120px;
        max-height: 55px;
    }
    
    .gold-sponsors .sponsor-logo img {
        max-width: 150px;
        max-height: 70px;
    }
}

@media (max-width: 320px) {
    .sponsors-section {
        padding: 40px 0;
    }
    
    .sponsors-wrap {
        gap: 30px;
    }
    
    .sponsors-title {
        font-size: 32px;
    }
    
    .sponsor-tier {
        gap: 20px;
    }
    
    .sponsor-tier-title {
        font-size: 15px;
    }
    
    .sponsor-logos {
        gap: 25px;
    }
    
    .sponsor-logo img {
        max-width: 100px;
        max-height: 50px;
    }
    
    .gold-sponsors .sponsor-logo img {
        max-width: 130px;
        max-height: 65px;
    }
}
/* ============ Sponsors Section End ============ */



/* ============ Key Features Section ============ */
.key-features-section {
    background: #FFFFFF;
    padding: 100px 0;
}

.key-features-wrap {
    display: flex;
    flex-direction: column;
    gap: 60px;
}

.features-header {
    display: flex;
    flex-direction: row;
    gap: 80px;
    align-items: flex-start;
}

.features-main-title {
    font-family: 'Inter', sans-serif;
    font-size: 58px;
    font-weight: 500;
    line-height: 1.2;
    color: #010812;
    margin: 0;
    min-width: 530px;
    max-width: 530px;
}

/* Text with Image Background Clip */
.features-text-clip {
    background-image: url('/wp-content/uploads/2026/01/features-texture-scaled.webp');
    background-size: cover;
    background-position: center;
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
}

.features-description {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 22px;
    font-weight: 400;
    line-height: 1.7;
    color: #737373;
    text-align: justify;
    margin: 0;
}

.features-grid {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.feature-row {
    display: flex;
    flex-direction: row;
    gap: 30px;
    border-bottom: 1px solid #E5E7EB;
    padding: 30px 0;
    transition: all 0.4s ease;
}

/* Hide rows 4 & 5 by default on ALL screen sizes */
.feature-row-hidden {
    max-height: 0;
    opacity: 0;
    overflow: hidden;
    padding: 0;
    border-bottom: none;
    pointer-events: none;
}

/* Show hidden rows when expanded on ALL screen sizes */
.features-grid.expanded .feature-row-hidden {
    max-height: 1000px;
    opacity: 1;
    padding: 30px 0;
    border-bottom: 1px solid #E5E7EB;
    pointer-events: auto;
}

.feature-item {
    display: inline-flex;
    align-items: center;
    background: #F3F4F6;
    padding: 25px 35px;
    border-radius: 50px;
    width: fit-content;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    text-decoration: none;
}

a.feature-item {
    display: inline-flex;
}

.feature-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: var(--hover-bg);
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 0;
}

.feature-item:hover::before {
    opacity: 1;
}

.feature-text {
    font-family: 'Inter', sans-serif;
    font-size: 18px;
    font-weight: 500;
    line-height: 1.4;
    color: #010812;
    margin: 0;
    white-space: nowrap;
    position: relative;
    z-index: 1;
    transition: color 0.3s ease;
}

.feature-item:hover .feature-text {
    color: #FFFFFF;
}

.feature-text i {
    margin: 0 8px;
    font-size: 16px;
}

/* See More Button */
.features-see-more-wrap {
    display: flex;
    justify-content: center;
    margin-top: 5px;
}

.features-see-more-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: #010812;
    color: #FFFFFF;
    font-family: 'Inter', sans-serif;
    font-size: 15px;
    font-weight: 500;
    padding: 15px 30px;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.features-see-more-btn:hover {
    background: #393939;
}

.features-see-more-btn .btn-icon {
    font-size: 14px;
    transition: transform 0.3s ease;
}

.features-see-more-btn.expanded .btn-icon {
    transform: rotate(180deg);
}

@media (max-width: 1500px) {
    .feature-text {
        font-size: 18px;
    }
}

@media (max-width: 1400px) {
    .feature-item {
        padding: 20px 28px;
    }
    
    .feature-text i {
        font-size: 14px;
    }

    .feature-text {
        font-size: 16px;
    }
}

@media (max-width: 1300px) {
    .feature-item {
        padding: 18px 25px;
    }
    
    .feature-row {
        gap: 25px;
    }

    .feature-text {
        font-size: 16px;
    }
}

@media (max-width: 1200px) {
    .key-features-section {
        padding: 80px 0;
    }
    
    .key-features-wrap {
        gap: 30px;
    }
    
    .features-header {
        gap: 60px;
    }
    
    .features-main-title {
        font-size: 52px;
        min-width: 480px;
        max-width: 480px;
    }
    
    .features-description {
        font-size: 20px;
    }
    
    .feature-row {
        gap: 25px;
        padding: 10px 0 0;
        border-bottom: none;
    }
    
    .features-grid.expanded .feature-row-hidden {
        padding: 25px 0;
    }
    
    .feature-item {
        padding: 22px 32px;
    }
    
    .feature-text {
        font-size: 13px;
    }
    
    .feature-text i {
        font-size: 15px;
    }
}

@media (max-width: 991px) {
    .key-features-section {
        padding: 70px 0;
    }
    
    .key-features-wrap {
        gap: 25px;
    }
    
    .features-header {
        gap: 50px;
    }
    
    .features-main-title {
        font-size: 46px;
        min-width: 420px;
        max-width: 420px;
    }
    
    .features-description {
        font-size: 18px;
        line-height: 1.6;
    }
    
    .feature-row {
        gap: 20px;
        padding: 10px 0 0;
        border-bottom: none;
    }
    
    .features-grid.expanded .feature-row-hidden {
        padding: 22px 0;
    }
    
    .feature-item {
        padding: 20px 28px;
    }
    
    .feature-text {
        font-size: 10px;
    }
    
    .feature-text i {
        font-size: 12px;
        margin: 0 6px;
    }
}

/* ============ MOBILE: Show Only Row 1 ============ */
@media (max-width: 768px) {
    .key-features-section {
        padding: 60px 0;
    }
    
    .key-features-wrap {
        gap: 20px;
    }
    
    .features-header {
        flex-direction: column;
        gap: 25px;
    }
    
    .features-main-title {
        font-size: 42px;
        min-width: auto;
        max-width: 100%;
    }
    
    .features-description {
        font-size: 17px;
    }
    
    .feature-row {
        flex-direction: column;
        gap: 10px;
        padding: 0px 0;
        border-bottom: none;
    }
    
    /* Hide rows 2 & 3 on mobile by default */
    .feature-row-mobile-hidden {
        max-height: 0;
        opacity: 0;
        overflow: hidden;
        padding: 0;
        border-bottom: none;
        pointer-events: none;
    }
    
    /* Show rows 2 & 3 when expanded on mobile */
    .features-grid.expanded .feature-row-mobile-hidden {
        max-height: 2000px;
        opacity: 1;
        padding: 20px 0;
        border-bottom: 1px solid #E5E7EB;
        pointer-events: auto;
    }
    
    .features-grid.expanded .feature-row-hidden {
        padding: 20px 0;
    }
    
    .feature-item {
        padding: 18px 25px;
        width: 100%;
        justify-content: center;
    }
    
    .feature-text {
        font-size: 18px;
        white-space: normal;
        text-align: center;
    }
    
    .features-see-more-btn {
        font-size: 16px;
        padding: 16px 35px;
    }
}

@media (max-width: 576px) {
    .key-features-section {
        padding: 50px 0;
    }
    
    .key-features-wrap {
        gap: 18px;
    }
    
    .features-header {
        gap: 20px;
    }
    
    .features-main-title {
        font-size: 36px;
    }
    
    .features-description {
        font-size: 16px;
        line-height: 1.6;
    }
    
    .feature-row {
        gap: 10px;
        padding: 0px 0;
        border-bottom: none;
    }
    
    .features-grid.expanded .feature-row-mobile-hidden {
        padding: 18px 0;
    }
    
    .features-grid.expanded .feature-row-hidden {
        padding: 18px 0;
    }
    
    .feature-item {
        padding: 16px 22px;
        border-radius: 40px;
    }
    
    .feature-text {
        font-size: 15px;
    }
    
    .feature-text i {
        font-size: 13px;
        margin: 0 5px;
    }
    
    .features-see-more-btn {
        font-size: 15px;
        padding: 14px 30px;
    }
}

@media (max-width: 320px) {
    .key-features-section {
        padding: 40px 0;
    }
    
    .key-features-wrap {
        gap: 15px;
    }
    
    .features-header {
        gap: 18px;
    }
    
    .features-main-title {
        font-size: 32px;
    }
    
    .features-description {
        font-size: 15px;
    }
    
    .feature-row {
        gap: 10px;
        padding: 0px 0;
        border-bottom: none;
    }
    
    .features-grid.expanded .feature-row-mobile-hidden {
        padding: 15px 0;
    }
    
    .features-grid.expanded .feature-row-hidden {
        padding: 15px 0;
    }
    
    .feature-item {
        padding: 14px 20px;
        border-radius: 35px;
    }
    
    .feature-text {
        font-size: 15px;
    }
    
    .feature-text i {
        font-size: 12px;
    }
    
    .features-see-more-btn {
        font-size: 14px;
        padding: 12px 25px;
    }
}
/* ============ Key Features Section End ============ */






/* ============ Articles Section ============ */
.articles-section {
    background: linear-gradient(180deg, #e9fcff54 0%, #FFFFFF 100%);
    padding: 100px 0;
}

.articles-wrap {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 60px;
}

.articles-title {
    font-family: 'Inter', sans-serif;
    font-size: 58px;
    font-weight: 500;
    line-height: 1.2;
    color: #010812;
    margin: 0;
    text-align: center;
}

/* Articles Text Clip */
.articles-text-clip {
    background-image: url('/wp-content/uploads/2026/01/articles-texture.webp');
    background-size: cover;
    background-position: center;
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
}

.articles-swiper {
    width: 100%;
    padding-bottom: 60px;
}

/* Make swiper slides equal height */
.articles-swiper .swiper-slide {
    height: auto;
}

.article-card {
    display: flex;
    flex-direction: column;
    background: #FFFFFF;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.06), 0 10px 15px -3px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: 100%;
    text-decoration: none;
    cursor: pointer;
}

.article-image {
    width: 100%;
    height: 280px;
    overflow: hidden;
    border-radius: 15px;
}

.article-image img {
    width: 100%;
    height: 100%;
    object-position: top;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.article-card:hover .article-image img {
    transform: scale(1.05);
}

.article-content {
    display: flex;
    flex-direction: column;
    padding: 30px;
    gap: 15px;
    flex-grow: 1;
}

.article-title {
    font-family: 'Inter', sans-serif;
    font-size: 20px;
    font-weight: 500;
    line-height: 1.3;
    color: #010812;
    margin: 0;
    transition: color 0.3s ease;
}

.article-title:hover {
    color: #194684;
}

.article-excerpt {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 18px;
    font-weight: 400;
    line-height: 1.6;
    color: #737373;
    margin: 0;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
    overflow: hidden;
}

.article-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: auto;
    padding-top: 20px;
    border-top: 1px solid #E5E7EB;
}

/* ============ Articles Section Button Sizing ============ */
/* Buttons inside article cards */
.article-footer .btn-primary {
    font-size: 15px;
    padding: 12px 24px;
}

.article-footer .btn-primary:hover {
    padding-right: 34px;
}

.article-footer .btn-primary i {
    font-size: 12px;
}

/* Bottom explore more button */
.articles-bottom .btn-primary {
    font-size: 15px;
    padding: 16px 32px;
}

.articles-bottom .btn-primary:hover {
    padding-right: 42px;
}

.articles-bottom .btn-primary i {
    font-size: 14px;
}
/* ============ End Articles Section Button Sizing ============ */

.article-date {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 14px;
    font-weight: 400;
    color: #737373;
}

/* Swiper Pagination */
.swiper-pagination {
    bottom: 20px;
}

.swiper-pagination-bullet {
    width: 12px;
    height: 12px;
    background: #D1D5DB;
    opacity: 1;
}

.swiper-pagination-bullet-active {
    background: #194684;
}

/* Bottom Explore More Button */
.articles-bottom {
    display: flex;
    justify-content: center;
    margin-top: 20px;
}

/* ============ Responsive Breakpoints ============ */
@media (max-width: 1200px) {
    .articles-section {
        padding: 80px 0;
    }
    
    .articles-wrap {
        gap: 50px;
    }
    
    .articles-title {
        font-size: 52px;
    }
    
    .articles-swiper {
        padding-bottom: 55px;
    }
    
    .article-image {
        height: 260px;
    }
    
    .article-content {
        padding: 28px;
        gap: 14px;
    }
    
    .article-title {
        font-size: 19px;
    }
    
    .article-excerpt {
        font-size: 17px;
    }
    
    .articles-bottom {
        margin-top: 15px;
    }
}

@media (max-width: 991px) {
    .articles-section {
        padding: 70px 0;
    }
    
    .articles-wrap {
        gap: 45px;
    }
    
    .articles-title {
        font-size: 46px;
    }
    
    .articles-swiper {
        padding-bottom: 50px;
    }
    
    .article-image {
        height: 240px;
    }
    
    .article-content {
        padding: 25px;
        gap: 12px;
    }
    
    .article-title {
        font-size: 18px;
    }
    
    .article-excerpt {
        font-size: 16px;
        line-height: 1.5;
    }
    
    .article-footer {
        padding-top: 18px;
    }
    
    /* Button sizing */
    .article-footer .btn-primary {
        font-size: 14px;
        padding: 11px 22px;
    }
    
    .article-footer .btn-primary:hover {
        padding-right: 32px;
    }
    
    .articles-bottom .btn-primary {
        font-size: 14px;
        padding: 15px 30px;
    }
    
    .articles-bottom .btn-primary:hover {
        padding-right: 40px;
    }
    
    .article-date {
        font-size: 13px;
    }
}

@media (max-width: 768px) {
    .articles-section {
        padding: 60px 0;
    }
    
    .articles-wrap {
        gap: 40px;
    }
    
    .articles-title {
        font-size: 42px;
    }
    
    .articles-swiper {
        padding-bottom: 50px;
    }
    
    .article-image {
        height: 220px;
    }
    
    .article-content {
        padding: 22px;
    }
    
    .article-title {
        font-size: 17px;
    }
    
    .article-excerpt {
        font-size: 15px;
    }
    
    .article-footer {
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
        padding-top: 16px;
    }
    
    /* Button sizing */
    .article-footer .btn-primary {
        width: auto;
        justify-content: center;
    }
    
    .swiper-pagination-bullet {
        width: 10px;
        height: 10px;
    }
    
    .articles-bottom {
        margin-top: 10px;
    }
    
    .articles-bottom .btn-primary {
        width: auto;
        justify-content: center;
    }
}

@media (max-width: 576px) {
    .articles-section {
        padding: 50px 0;
    }
    
    .articles-wrap {
        gap: 35px;
    }
    
    .articles-title {
        font-size: 36px;
    }
    
    .articles-swiper {
        padding-bottom: 45px;
    }
    
    .article-card {
        border-radius: 12px;
    }
    
    .article-image {
        height: 200px;
        border-radius: 12px;
    }
    
    .article-content {
        padding: 20px;
        gap: 10px;
    }
    
    .article-title {
        font-size: 16px;
    }
    
    .article-excerpt {
        font-size: 14px;
    }
    
    .article-footer {
        gap: 10px;
        padding-top: 14px;
    }
    
    /* Button sizing */
    .article-footer .btn-primary {
        font-size: 13px;
        padding: 10px 20px;
        gap: 6px;
    }
    
    .article-footer .btn-primary:hover {
        padding-right: 30px;
    }
    
    .article-footer .btn-primary i {
        font-size: 11px;
    }
    
    .articles-bottom .btn-primary {
        font-size: 13px;
        padding: 14px 28px;
        gap: 8px;
    }
    
    .articles-bottom .btn-primary:hover {
        padding-right: 38px;
    }
    
    .articles-bottom .btn-primary i {
        font-size: 12px;
    }
    
    .article-date {
        font-size: 12px;
    }
    
    .swiper-pagination {
        bottom: 15px;
    }
    
    .swiper-pagination-bullet {
        width: 8px;
        height: 8px;
    }
}

@media (max-width: 320px) {
    .articles-section {
        padding: 40px 0;
    }
    
    .articles-wrap {
        gap: 30px;
    }
    
    .articles-title {
        font-size: 32px;
    }
    
    .articles-swiper {
        padding-bottom: 40px;
    }
    
    .article-card {
        border-radius: 10px;
    }
    
    .article-image {
        height: 180px;
        border-radius: 10px;
    }
    
    .article-content {
        padding: 18px;
    }
    
    .article-title {
        font-size: 15px;
    }
    
    .article-excerpt {
        font-size: 13px;
    }
    
    .article-footer {
        padding-top: 12px;
    }
    
    /* Button sizing */
    .article-footer .btn-primary {
        font-size: 12px;
        padding: 9px 18px;
    }
    
    .article-footer .btn-primary:hover {
        padding-right: 28px;
    }
    
    .articles-bottom .btn-primary {
        font-size: 12px;
        padding: 12px 24px;
    }
    
    .articles-bottom .btn-primary:hover {
        padding-right: 34px;
    }
}
/* ============ Articles Section End ============ */





/* ============ Insights Section ============ */
.insights-section {
    display: none !important;
}

.insights-section {
    background: #FFFFFF;
    padding: 100px 0 0 0;
    position: relative;
}

.insights-line {
    position: absolute;
    top: 0;
    width: 100%;
    height: 1px;
    background: #E5E7EB;
}

.insights-wrap {
    display: flex;
    flex-direction: column;
    gap: 60px;
    padding-bottom: 60px;
}

.insights-header {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 20px;
}

.insights-title {
    font-family: 'Inter', sans-serif;
    font-size: 58px;
    font-weight: 500;
    line-height: 1.2;
    color: #010812;
    margin: 0;
}

/* Insights Text Clip */
.insights-text-clip {
    background-image: url('/wp-content/uploads/2026/01/insights-texture.webp');
    background-size: cover;
    background-position: center;
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
}

.insights-description {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 22px;
    font-weight: 400;
    line-height: 1.7;
    color: #737373;
    margin: 0;
    max-width: 800px;
}

.insights-flex {
    display: flex;
    flex-direction: row;
    gap: 0;
    width: 100%;
}

.insight-card {
    position: relative;
    height: 700px;
    overflow: hidden;
    text-decoration: none;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    flex: 1;
}

.insight-bg-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    transition: transform 0.5s ease, opacity 0.3s ease;
}

.insight-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    transition: background 0.3s ease;
    z-index: 1;
}

.insight-content {
    position: relative;
    z-index: 2;
    padding: 40px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100%;
}

.insight-number {
    font-family: 'Inter', sans-serif;
    font-size: 150px;
    font-weight: 700;
    line-height: 1;
    margin: 0;
    transition: color 0.3s ease;
}

.insight-text {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.insight-title {
    font-family: 'Inter', sans-serif;
    font-size: 45px;
    font-weight: 500;
    line-height: 1.2;
    margin: 0;
    transition: color 0.3s ease;
}

.insight-excerpt {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 20px;
    font-weight: 400;
    line-height: 1.6;
    margin: 0;
    transition: color 0.3s ease;
}

/* Card 1 - Static */
.insight-card-static {
    cursor: default;
    transition: all 0.3s ease;
}

.insight-card-static .insight-overlay {
    background: linear-gradient(180deg, rgb(1 8 18 / 12%) 0%, rgb(1 8 18 / 18%) 100%);
}

.insight-card-static .insight-number,
.insight-card-static .insight-title,
.insight-card-static .insight-excerpt {
    color: #FFFFFF;
}

/* Cards 2 & 3 - Hover Effect */
.insight-card-hover {
    cursor: pointer;
    background: #FFFFFF;
    border: 1px solid #E5E7EB;
}

.insight-card-hover .insight-bg-image {
    opacity: 0;
}

.insight-card-hover .insight-overlay {
    background: transparent;
}

.insight-card-hover .insight-number,
.insight-card-hover .insight-title,
.insight-card-hover .insight-excerpt {
    color: #010812;
}

.insight-card-hover:hover .insight-bg-image {
    opacity: 1;
    transform: scale(1.1);
}

.insight-card-hover:hover .insight-overlay {
    background: linear-gradient(180deg, rgb(1 8 18 / 12%) 0%, rgb(1 8 18 / 18%) 100%);
}

.insight-card-hover:hover .insight-number,
.insight-card-hover:hover .insight-title,
.insight-card-hover:hover .insight-excerpt {
    color: #FFFFFF;
}

.insights-flex:has(.insight-card-hover:hover) .insight-card-static .insight-bg-image {
    opacity: 0;
}

.insights-flex:has(.insight-card-hover:hover) .insight-card-static .insight-overlay {
    background: transparent;
}

.insights-flex:has(.insight-card-hover:hover) .insight-card-static .insight-number,
.insights-flex:has(.insight-card-hover:hover) .insight-card-static .insight-title,
.insights-flex:has(.insight-card-hover:hover) .insight-card-static .insight-excerpt {
    color: #010812;
}

@media (max-width: 1200px) {
    .insights-section {
        padding: 80px 0 0 0;
    }
    
    .insights-wrap {
        gap: 50px;
        padding-bottom: 50px;
    }
    
    .insights-title {
        font-size: 52px;
    }
    
    .insights-description {
        font-size: 20px;
        max-width: 700px;
    }
    
    .insight-card {
        height: 650px;
    }
    
    .insight-content {
        padding: 35px;
    }
    
    .insight-number {
        font-size: 130px;
    }
    
    .insight-title {
        font-size: 35px;
    }
    
    .insight-excerpt {
        font-size: 18px;
    }
}

@media (max-width: 991px) {
    .insights-section {
        padding: 70px 0 0 0;
    }
    
    .insights-wrap {
        gap: 45px;
        padding-bottom: 45px;
    }
    
    .insights-header {
        gap: 18px;
    }
    
    .insights-title {
        font-size: 46px;
    }
    
    .insights-description {
        font-size: 18px;
        line-height: 1.6;
        max-width: 650px;
    }
    
    .insight-card {
        height: 600px;
    }
    
    .insight-content {
        padding: 30px;
    }
    
    .insight-number {
        font-size: 110px;
    }
    
    .insight-text {
        gap: 12px;
    }
    
    .insight-title {
        font-size: 28px;
    }
    
    .insight-excerpt {
        font-size: 17px;
    }
}

@media (max-width: 768px) {
    .insights-section {
        padding: 60px 0 0 0;
    }
    
    .insights-wrap {
        gap: 40px;
        padding-bottom: 40px;
    }
    
    .insights-header {
        gap: 16px;
    }
    
    .insights-title {
        font-size: 42px;
    }
    
    .insights-description {
        font-size: 17px;
        max-width: 100%;
    }
    
    .insights-flex {
        flex-direction: column;
    }
    
    .insight-card {
        height: 500px;
    }
    
    .insight-content {
        padding: 28px;
    }
    
    .insight-number {
        font-size: 100px;
    }
    
    .insight-text {
        gap: 10px;
    }
    
    .insight-title {
        font-size: 32px;
    }
    
    .insight-excerpt {
        font-size: 16px;
    }
}

@media (max-width: 576px) {
    .insights-section {
        padding: 50px 0 0 0;
    }
    
    .insights-wrap {
        gap: 35px;
        padding-bottom: 35px;
    }
    
    .insights-header {
        gap: 14px;
    }
    
    .insights-title {
        font-size: 36px;
    }
    
    .insights-description {
        font-size: 16px;
        line-height: 1.6;
    }
    
    .insight-card {
        height: 450px;
    }
    
    .insight-content {
        padding: 25px;
    }
    
    .insight-number {
        font-size: 85px;
    }
    
    .insight-text {
        gap: 8px;
    }
    
    .insight-title {
        font-size: 28px;
    }
    
    .insight-excerpt {
        font-size: 15px;
    }
}

@media (max-width: 320px) {
    .insights-section {
        padding: 40px 0 0 0;
    }
    
    .insights-wrap {
        gap: 30px;
        padding-bottom: 30px;
    }
    
    .insights-header {
        gap: 12px;
    }
    
    .insights-title {
        font-size: 32px;
    }
    
    .insights-description {
        font-size: 15px;
    }
    
    .insight-card {
        height: 400px;
    }
    
    .insight-content {
        padding: 22px;
    }
    
    .insight-number {
        font-size: 75px;
    }
    
    .insight-title {
        font-size: 25px;
    }
    
    .insight-excerpt {
        font-size: 14px;
    }
}
/* ============ Insights Section End ============ */




/* ============ Community Section ============ */
.community-section {
    background: linear-gradient(180deg, #e9fcff54 0%, #FFFFFF 100%);
    padding: 100px 0;
}

.community-wrap {
    display: flex;
    flex-direction: column;
    gap: 80px;
}

.community-title {
    font-family: 'Inter', sans-serif;
    font-size: 58px;
    font-weight: 500;
    line-height: 1.2;
    color: #010812;
    margin: 0 0 60px 0;
    text-align: center;
}

/* Community Text Clip */
.community-text-clip {
    background-image: url('/wp-content/uploads/2026/01/purple-fabric-bg.webp');
    background-size: cover;
    background-position: center;
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
}

.community-row {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 80px;
}

.community-content {
    display: flex;
    flex-direction: column;
    gap: 20px;
    flex: 1;
}

.community-subtitle {
    font-family: 'Inter', sans-serif;
    font-size: 40px;
    font-weight: 500;
    line-height: 1.2;
    color: #010812;
    margin: 0;
}

.community-description {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 22px;
    font-weight: 400;
    line-height: 1.7;
    color: #737373;
    text-align: justify;
    margin: 0;
}

.community-image {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}

.community-image img {
    width: 100%;
    height: auto;
    border-radius: 10px;
}


@media (max-width: 1200px) {
    .community-section {
        padding: 80px 0;
    }
    
    .community-wrap {
        gap: 70px;
    }
    
    .community-title {
        font-size: 52px;
        margin: 0 0 50px 0;
    }
    
    .community-row {
        gap: 60px;
    }
    
    .community-subtitle {
        font-size: 36px;
    }
    
    .community-description {
        font-size: 20px;
    }
}

@media (max-width: 991px) {
    .community-section {
        padding: 70px 0;
    }
    
    .community-wrap {
        gap: 60px;
    }
    
    .community-title {
        font-size: 46px;
        margin: 0 0 45px 0;
    }
    
    .community-row {
        gap: 50px;
    }
    
    .community-content {
        gap: 18px;
    }
    
    .community-subtitle {
        font-size: 32px;
    }
    
    .community-description {
        font-size: 18px;
        line-height: 1.6;
    }
}

@media (max-width: 768px) {
    .community-section {
        padding: 60px 0;
    }
    
    .community-wrap {
        gap: 50px;
    }
    
    .community-title {
        font-size: 42px;
        margin: 0 0 40px 0;
    }
    
    .community-row {
        flex-direction: column-reverse;
        gap: 30px;
    }
    
    .community-row-reverse {
        flex-direction: column;
    }
    
    .community-content {
        gap: 16px;
    }
    
    .community-subtitle {
        font-size: 28px;
        text-align: center;
    }
    
    .community-description {
        font-size: 17px;
        text-align: center;
    }
    
    .community-image {
        width: 100%;
    }
    
    .community-image img {
        max-width: 100%;
    }
}

@media (max-width: 576px) {
    .community-section {
        padding: 50px 0;
    }
    
    .community-wrap {
        gap: 40px;
    }
    
    .community-title {
        font-size: 36px;
        margin: 0 0 35px 0;
    }
    
    .community-row {
        gap: 25px;
    }
    
    .community-content {
        gap: 14px;
    }
    
    .community-subtitle {
        font-size: 26px;
    }
    
    .community-description {
        font-size: 16px;
        line-height: 1.6;
    }
    
    .community-image img {
        border-radius: 8px;
    }
}

@media (max-width: 320px) {
    .community-section {
        padding: 40px 0;
    }
    
    .community-wrap {
        gap: 35px;
    }
    
    .community-title {
        font-size: 32px;
        margin: 0 0 30px 0;
    }
    
    .community-row {
        gap: 20px;
    }
    
    .community-content {
        gap: 12px;
    }
    
    .community-subtitle {
        font-size: 24px;
    }
    
    .community-description {
        font-size: 15px;
    }
    
    .community-image img {
        border-radius: 6px;
    }
}
/* ============ Community Section End ============ */



/* ============ Building Strength Section ============ */
.building-strength-section {
    background: #FFFFFF;
    padding: 150px 0;
    position: relative;
    overflow: hidden;
}

.building-strength-wrap {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 600px;
}

.building-strength-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 20px;
    max-width: 800px;
    position: relative;
    z-index: 10;
}

/* ============ Building Strength Button Sizing ============ */
.building-strength-content .btn-primary {
    margin-top: 20px;
    font-size: 16px;
    padding: 16px 32px;
}

.building-strength-content .btn-primary:hover {
    padding-right: 42px;
}

.building-strength-content .btn-primary i {
    font-size: 14px;
}
/* ============ End Building Strength Button Sizing ============ */

.building-strength-label {
    font-family: 'Inter', sans-serif;
    font-size: 20px;
    font-weight: 500;
    color: #010812;
    text-transform: capitalize;
    margin: 0;
}

.building-strength-title {
    font-family: 'Inter', sans-serif;
    font-size: 40px;
    font-weight: 500;
    line-height: 1.2;
    color: #212323;
    margin: 0;
}

/* Building Strength Text Clip */
.building-strength-text-clip {
    background-image: url('/wp-content/uploads/2026/01/global-texture.webp');
    background-size: cover;
    background-position: center;
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
}

.building-strength-description {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 18px;
    font-weight: 400;
    line-height: 1.7;
    color: #464848;
    margin: 0;
    max-width: 700px;
}

/* Gradient */
.gradient-bg {
    position: absolute;
    width: 207px;
    height: 207px;
    border-radius: 50%;
    pointer-events: none;
    z-index: 1;
}

.gradient-bg-green {
    background: radial-gradient(circle, rgba(74, 184, 108, 1) 0%, rgba(74, 184, 108, 0) 60%);
    filter: blur(50px);
    top: 50px;
    left: 5%;
}

.gradient-bg-blue {
    background: radial-gradient(circle, rgba(46, 170, 225, 1) 0%, rgba(46, 170, 225, 0) 75%);
    filter: blur(90px);
    bottom: 24px;
    right: 1%;
}

/* Floating Images */
.floating-image {
    position: absolute;
    border-radius: 50%;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    animation: float 6s ease-in-out infinite;
    z-index: 5;
}

.floating-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.floating-image-1 {
    width: 95px;
    height: 95px;
    top: 80px;
    left: 7%;
    animation-delay: 0s;
}

.floating-image-2 {
    width: 165px;
    height: 165px;
    top: 180px;
    left: 20%;
    animation-delay: 1s;
}

.floating-image-3 {
    width: 100px;
    height: 100px;
    top: 65px;
    left: 75%;
    transform: translateX(-50%);
    animation-delay: 1.5s;
}

.floating-image-4 {
    width: 165px;
    height: 165px;
    top: 580px;
    right: 12%;
    animation-delay: 2s;
}

.floating-image-5 {
    width: 245px;
    height: 245px;
    top: 170px;
    right: -2%;
    animation-delay: 0.5s;
}

.floating-image-6 {
    width: 150px;
    height: 150px;
    bottom: 80px;
    left: 15%;
    animation-delay: 2.5s;
}

.floating-image-7 {
    width: 245px;
    height: 245px;
    bottom: 310px;
    left: -3%;
    animation-delay: 3s;
}

.floating-image-8 {
    width: 100px;
    height: 100px;
    bottom: 60px;
    right: 47%;
    animation-delay: 1.8s;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-20px);
    }
}

/* ============ Responsive Breakpoints ============ */
@media (max-width: 1200px) {
    .building-strength-section {
        padding: 120px 0;
    }
    
    .building-strength-wrap {
        min-height: 550px;
    }
    
    .building-strength-content {
        gap: 18px;
        max-width: 700px;
    }
    
    .building-strength-label {
        font-size: 18px;
    }
    
    .building-strength-title {
        font-size: 36px;
    }
    
    .building-strength-description {
        font-size: 17px;
        max-width: 650px;
    }
    
    /* Button sizing */
    .building-strength-content .btn-primary {
        font-size: 14px;
        padding: 15px 30px;
        margin-top: 18px;
    }
    
    .building-strength-content .btn-primary:hover {
        padding-right: 40px;
    }
    
    /* Adjust floating images */
    .floating-image-1 {
        width: 85px;
        height: 85px;
        top: 70px;
        left: 5%;
    }
    
    .floating-image-2 {
        width: 145px;
        height: 145px;
        top: 160px;
        left: 18%;
    }
    
    .floating-image-3 {
        width: 90px;
        height: 90px;
        top: 60px;
        left: 72%;
    }
    
    .floating-image-4 {
        width: 145px;
        height: 145px;
        top: 520px;
        right: 10%;
    }
    
    .floating-image-5 {
        width: 185px;
        height: 185px;
        top: 150px;
        right: -2%;
    }
    
    .floating-image-6 {
        width: 130px;
        height: 130px;
        bottom: 70px;
        left: 13%;
    }
    
    .floating-image-7 {
        width: 185px;
        height: 185px;
        bottom: 280px;
        left: -3%;
    }
    
    .floating-image-8 {
        width: 90px;
        height: 90px;
        bottom: 55px;
        right: 45%;
    }
    
    /* Adjust gradients */
    .gradient-bg {
        width: 180px;
        height: 180px;
    }
    
    .gradient-bg-green {
        top: 45px;
        left: 4%;
    }
    
    .gradient-bg-blue {
        bottom: 20px;
        right: 1%;
    }
}

@media (max-width: 991px) {
    .building-strength-section {
        padding: 100px 0;
    }
    
    .building-strength-wrap {
        min-height: 500px;
    }
    
    .building-strength-content {
        gap: 16px;
        max-width: 650px;
    }
    
    .building-strength-label {
        font-size: 17px;
    }
    
    .building-strength-title {
        font-size: 32px;
    }
    
    .building-strength-description {
        font-size: 16px;
        line-height: 1.6;
        max-width: 600px;
    }
    
    /* Button sizing */
    .building-strength-content .btn-primary {
        font-size: 13px;
        padding: 14px 28px;
        margin-top: 16px;
    }
    
    .building-strength-content .btn-primary:hover {
        padding-right: 38px;
    }
    
    /* Adjust floating images */
    .floating-image-1 {
        width: 75px;
        height: 75px;
        top: 60px;
        left: 4%;
    }
    
    .floating-image-2 {
        width: 125px;
        height: 125px;
        top: 140px;
        left: 15%;
    }
    
    .floating-image-3 {
        width: 80px;
        height: 80px;
        top: 55px;
        left: 70%;
    }
    
    .floating-image-4 {
        width: 125px;
        height: 125px;
        top: 460px;
        right: 8%;
    }
    
    .floating-image-5 {
        width: 150px;
        height: 150px;
        top: 130px;
        right: -2%;
    }
    
    .floating-image-6 {
        width: 115px;
        height: 115px;
        bottom: 60px;
        left: 11%;
    }
    
    .floating-image-7 {
        width: 150px;
        height: 150px;
        bottom: 250px;
        left: -3%;
    }
    
    .floating-image-8 {
        width: 80px;
        height: 80px;
        bottom: 50px;
        right: 43%;
    }
    
    /* Adjust gradients */
    .gradient-bg {
        width: 160px;
        height: 160px;
    }
    
    .gradient-bg-green {
        top: 40px;
        left: 3%;
    }
    
    .gradient-bg-blue {
        bottom: 18px;
        right: 0%;
    }
}

@media (max-width: 768px) {
    .building-strength-section {
        padding: 80px 0;
    }
    
    .building-strength-wrap {
        min-height: 450px;
    }
    
    .building-strength-content {
        gap: 14px;
        max-width: 100%;
    }
    
    .building-strength-label {
        font-size: 16px;
    }
    
    .building-strength-title {
        font-size: 28px;
    }
    
    .building-strength-description {
        font-size: 15px;
        max-width: 100%;
    }
    
    /* Button sizing */
    .building-strength-content .btn-primary {
        font-size: 13px;
        padding: 13px 26px;
        margin-top: 14px;
    }
    
    .building-strength-content .btn-primary:hover {
        padding-right: 36px;
    }
    
    /* Hide some floating images on mobile */
    .floating-image-2,
    .floating-image-7 {
        display: none;
    }
    
    /* Adjust remaining floating images */
    .floating-image-1 {
        width: 65px;
        height: 65px;
        top: 50px;
        left: 3%;
    }
    
    .floating-image-3 {
        width: 70px;
        height: 70px;
        top: 45px;
        left: auto;
        right: 5%;
        transform: none;
    }
    
    .floating-image-4 {
        width: 105px;
        height: 105px;
        top: auto;
        bottom: 120px;
        right: 5%;
    }
    
    .floating-image-5 {
        width: 110px;
        height: 110px;
        top: 150px;
        right: -5%;
    }
    
    .floating-image-6 {
        width: 95px;
        height: 95px;
        bottom: 50px;
        left: 8%;
    }
    
    .floating-image-8 {
        width: 70px;
        height: 70px;
        bottom: 40px;
        right: auto;
        left: 50%;
        transform: translateX(-50%);
    }
    
    /* Adjust gradients */
    .gradient-bg {
        width: 140px;
        height: 140px;
    }
    
    .gradient-bg-green {
        top: 35px;
        left: 2%;
    }
    
    .gradient-bg-blue {
        bottom: 15px;
        right: -2%;
    }
    
    @keyframes float {
        0%, 100% {
            transform: translateY(0px);
        }
        50% {
            transform: translateY(-15px);
        }
    }
}

@media (max-width: 576px) {
    .building-strength-section {
        padding: 60px 0;
    }
    
    .building-strength-wrap {
        min-height: 400px;
    }
    
    .building-strength-content {
        gap: 12px;
    }
    
    .building-strength-label {
        font-size: 15px;
    }
    
    .building-strength-title {
        font-size: 26px;
    }
    
    .building-strength-description {
        font-size: 14px;
        line-height: 1.6;
    }
    
    /* Button sizing */
    .building-strength-content .btn-primary {
        font-size: 12px;
        padding: 12px 24px;
        gap: 8px;
        margin-top: 12px;
    }
    
    .building-strength-content .btn-primary:hover {
        padding-right: 34px;
    }
    
    .building-strength-content .btn-primary i {
        font-size: 12px;
    }
    
    /* Further adjust floating images */
    .floating-image-1 {
        width: 55px;
        height: 55px;
        top: 40px;
        left: 2%;
    }
    
    .floating-image-3 {
        width: 60px;
        height: 60px;
        top: 35px;
        right: 3%;
    }
    
    .floating-image-4 {
        width: 90px;
        height: 90px;
        bottom: 100px;
        right: 3%;
    }
    
    .floating-image-5 {
        width: 80px;
        height: 80px;
        top: 102px;
        right: -8%;
    }
    
    .floating-image-6 {
        width: 80px;
        height: 80px;
        bottom: 40px;
        left: 5%;
    }
    
    .floating-image-8 {
        width: 60px;
        height: 60px;
        bottom: 35px;
    }
    
    /* Adjust gradients */
    .gradient-bg {
        width: 120px;
        height: 120px;
    }
    
    .gradient-bg-green {
        filter: blur(40px);
        top: 30px;
        left: 0%;
    }
    
    .gradient-bg-blue {
        filter: blur(70px);
        bottom: 12px;
        right: -5%;
    }
}

@media (max-width: 320px) {
    .building-strength-section {
        padding: 50px 0;
    }
    
    .building-strength-wrap {
        min-height: 360px;
    }
    
    .building-strength-content {
        gap: 10px;
    }
    
    .building-strength-label {
        font-size: 14px;
    }
    
    .building-strength-title {
        font-size: 24px;
    }
    
    .building-strength-description {
        font-size: 13px;
    }
    
    /* Button sizing */
    .building-strength-content .btn-primary {
        font-size: 11px;
        padding: 11px 22px;
    }
    
    .building-strength-content .btn-primary:hover {
        padding-right: 32px;
    }
    
    /* Minimal floating images */
    .floating-image-1 {
        width: 50px;
        height: 50px;
        top: 35px;
        left: 1%;
    }
    
    .floating-image-3 {
        width: 55px;
        height: 55px;
        top: 30px;
        right: 2%;
    }
    
    .floating-image-4 {
        width: 75px;
        height: 75px;
        bottom: 85px;
        right: 2%;
    }
    
    .floating-image-5 {
        width: 80px;
        height: 80px;
        top: 102px;
        right: -10%;
    }
    
    .floating-image-6 {
        width: 70px;
        height: 70px;
        bottom: 35px;
        left: 3%;
    }
    
    .floating-image-8 {
        width: 50px;
        height: 50px;
        bottom: 30px;
    }
    
    /* Adjust gradients */
    .gradient-bg {
        width: 100px;
        height: 100px;
    }
    
    @keyframes float {
        0%, 100% {
            transform: translateY(0px);
        }
        50% {
            transform: translateY(-10px);
        }
    }
}
/* ============ Building Strength Section End ============ */





/* ============ Technology Section ============ */
.technology-section {
    background: #FFFFFF;
    padding: 100px 0;
    position: relative;
}

.technology-line-top {
    position: absolute;
    top: 0;
    width: 100%;
    height: 1px;
    background: #D2D2D2;
}

.technology-wrap {
    display: flex;
    flex-direction: column;
    gap: 100px;
}

.technology-header {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-start;
    gap: 80px;
}

.technology-title {
    font-family: 'Inter', sans-serif;
    font-size: 58px;
    font-weight: 500;
    line-height: 1.2;
    color: #010812;
    margin: 0;
    min-width: 400px;
}

/* Technology Text Clip */
.technology-text-clip {
    background-image: url('/wp-content/uploads/2026/01/technology-texture.webp');
    background-size: cover;
    background-position: center;
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
}

.technology-intro {
    display: flex;
    flex-direction: column;
    gap: 30px;
    flex: 1;
}

.technology-description {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 22px;
    font-weight: 400;
    line-height: 1.7;
    color: #737373;
    text-align: justify;
    margin: 0;
}

.technology-intro .btn-primary {
    font-size: 15px;
    padding: 16px 32px;
}

.technology-intro .btn-primary:hover {
    padding-right: 42px;
}

.technology-intro .btn-primary i {
    font-size: 14px;
}

.technology-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
}

.tech-card {
    display: flex;
    flex-direction: column;
    gap: 16px;
    flex: 0 1 calc(33.333% - 20px);
    min-width: 250px;
    margin-bottom: 50px;
}

/* Last card centered wrapper */
.tech-row-last {
    width: 100%;
    display: flex;
    justify-content: center;
}

.tech-row-last .tech-card {
    flex: 0 1 calc(33.333% - 20px);
    min-width: 250px;
    margin-bottom: 0;
}

/* Image */
.tech-image {
    width: 100%;
    height: 240px;
    border-radius: 12px;
    overflow: hidden;
}

.tech-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.tech-card:hover .tech-image img {
    transform: scale(1.05);
}

.tech-title {
    font-family: 'Inter', sans-serif;
    font-size: 20px;
    font-weight: 500;
    line-height: 1.3;
    text-align: center;
    color: #010812;
    margin: 0;
}

.tech-card:hover .tech-title {
    color: #194684;
}

.tech-description {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 18px;
    font-weight: 400;
    line-height: 1.6;
    text-align: center;
    color: #737373;
    text-align: justify;
    margin: 0;
}

/* Source Links */
.tech-links {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: auto;
    justify-content: center;
}

.tech-source {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 13px;
    font-weight: 500;
    color: #194684;
    text-decoration: none !important;
    border: 1px solid #194684;
    border-radius: 20px;
    padding: 4px 14px;
    transition: background 0.3s ease, color 0.3s ease;
}

.tech-source:hover {
    background: #194684;
    color: #FFFFFF;
}

/* ============ Responsive Breakpoints ============ */
@media (max-width: 1400px) {
    .technology-section {
        padding: 90px 0;
    }

    .technology-wrap {
        gap: 55px;
    }

    .technology-header {
        gap: 70px;
    }

    .technology-title {
        font-size: 54px;
        min-width: 380px;
    }

    .technology-intro {
        gap: 28px;
    }

    .technology-description {
        font-size: 21px;
    }

    .technology-intro .btn-primary {
        font-size: 14px;
        padding: 15px 31px;
    }

    .technology-intro .btn-primary:hover {
        padding-right: 41px;
    }

    .technology-grid {
        gap: 28px;
    }

    .tech-card {
        flex: 0 1 calc(33.333% - 19px);
        gap: 15px;
    }

    .tech-row-last .tech-card {
        flex: 0 1 calc(33.333% - 19px);
    }

    .tech-image {
        height: 230px;
    }

    .tech-title {
        font-size: 19px;
    }

    .tech-description {
        font-size: 17px;
    }

    .tech-source {
        font-size: 12px;
        padding: 4px 13px;
    }
}

@media (max-width: 1200px) {
    .technology-section {
        padding: 80px 0;
    }

    .technology-wrap {
        gap: 50px;
    }

    .technology-header {
        flex-direction: column;
        align-items: center;
        gap: 60px;
    }

    .technology-title {
        font-size: 52px;
        min-width: 360px;
    }

    .technology-intro {
        gap: 25px;
        text-align: center;
        align-items: center;
    }

    .technology-description {
        font-size: 20px;
    }

    .technology-intro .btn-primary {
        font-size: 14px;
        padding: 15px 30px;
    }

    .technology-intro .btn-primary:hover {
        padding-right: 40px;
    }

    .technology-grid {
        gap: 25px;
    }

    .tech-card {
        flex: 0 1 calc(33.333% - 17px);
        gap: 15px;
    }

    .tech-row-last .tech-card {
        flex: 0 1 calc(33.333% - 17px);
    }

    .tech-image {
        height: 220px;
    }

    .tech-title {
        font-size: 19px;
    }

    .tech-description {
        font-size: 17px;
    }
}

@media (max-width: 991px) {
    .technology-section {
        padding: 70px 0;
    }

    .technology-wrap {
        gap: 45px;
    }

    .technology-header {
        flex-direction: column;
        gap: 50px;
    }

    .technology-title {
        font-size: 46px;
        min-width: 320px;
    }

    .technology-intro {
        gap: 22px;
    }

    .technology-description {
        font-size: 18px;
        line-height: 1.6;
    }

    .technology-intro .btn-primary {
        font-size: 13px;
        padding: 14px 28px;
    }

    .technology-intro .btn-primary:hover {
        padding-right: 38px;
    }

    .technology-grid {
        gap: 22px;
    }

    /* 2 columns */
    .tech-card {
        flex: 0 1 calc(50% - 11px);
        gap: 14px;
        min-width: 200px;
    }

    /* Left aligned on 2-col */
    .tech-row-last {
        justify-content: flex-start;
    }

    .tech-row-last .tech-card {
        flex: 0 1 calc(50% - 11px);
        min-width: 200px;
    }

    .tech-image {
        height: 200px;
    }

    .tech-title {
        font-size: 18px;
    }

    .tech-description {
        font-size: 16px;
    }

    .tech-source {
        font-size: 12px;
    }
}

@media (max-width: 768px) {
    .technology-section {
        padding: 60px 0;
    }

    .technology-wrap {
        gap: 40px;
    }

    .technology-header {
        flex-direction: column;
        gap: 25px;
    }

    .technology-title {
        font-size: 42px;
        min-width: auto;
    }

    .technology-intro {
        gap: 20px;
    }

    .technology-description {
        font-size: 17px;
    }

    .technology-intro .btn-primary {
        font-size: 13px;
        padding: 13px 26px;
    }

    .technology-intro .btn-primary:hover {
        padding-right: 36px;
    }

    .technology-grid {
        gap: 20px;
    }

    .tech-card {
        flex: 0 1 calc(50% - 10px);
        gap: 13px;
    }

    .tech-row-last .tech-card {
        flex: 0 1 calc(50% - 10px);
    }

    .tech-image {
        height: 180px;
        border-radius: 10px;
    }

    .tech-title {
        font-size: 17px;
    }

    .tech-description {
        font-size: 15px;
    }

    .tech-source {
        font-size: 12px;
        padding: 4px 12px;
    }
}

@media (max-width: 576px) {
    .technology-section {
        padding: 50px 0;
    }

    .technology-wrap {
        gap: 35px;
    }

    .technology-header {
        gap: 20px;
    }

    .technology-title {
        font-size: 36px;
        text-align: center;
    }

    .technology-intro {
        gap: 18px;
    }

    .technology-description {
        font-size: 16px;
        line-height: 1.6;
    }

    .technology-intro .btn-primary {
        font-size: 12px;
        padding: 12px 24px;
        gap: 8px;
    }

    .technology-intro .btn-primary:hover {
        padding-right: 34px;
    }

    .technology-intro .btn-primary i {
        font-size: 12px;
    }

    .technology-grid {
        gap: 18px;
    }

    /* Single column */
    .tech-card {
        flex: 1 1 100%;
        gap: 12px;
        min-width: auto;
        margin-bottom: 30px;
    }

    .tech-row-last {
        justify-content: flex-start;
    }

    .tech-row-last .tech-card {
        flex: 1 1 100%;
        min-width: auto;
        margin-bottom: 0;
    }

    .tech-image {
        height: 200px;
        border-radius: 8px;
    }

    .tech-title {
        font-size: 18px;
    }

    .tech-description {
        font-size: 15px;
    }

    .tech-source {
        font-size: 11px;
        padding: 3px 12px;
    }
}

@media (max-width: 320px) {
    .technology-section {
        padding: 40px 0;
    }

    .technology-wrap {
        gap: 30px;
    }

    .technology-header {
        gap: 18px;
    }

    .technology-title {
        font-size: 32px;
        text-align: center;
    }

    .technology-intro {
        gap: 16px;
    }

    .technology-description {
        font-size: 15px;
    }

    .technology-intro .btn-primary {
        font-size: 11px;
        padding: 11px 22px;
    }

    .technology-intro .btn-primary:hover {
        padding-right: 32px;
    }

    .technology-grid {
        gap: 16px;
    }

    .tech-card {
        gap: 10px;
    }

    .tech-row-last .tech-card {
        gap: 10px;
    }

    .tech-image {
        height: 180px;
    }

    .tech-title {
        font-size: 17px;
    }

    .tech-description {
        font-size: 14px;
    }

    .tech-source {
        font-size: 11px;
        padding: 3px 10px;
    }
}
/* ============ Technology Section End ============ */






/* ============ Partnerships Section ============ */
.partnerships-section {
    background: #FFFFFF;
    padding: 100px 0;
    position: relative;
}

.partnerships-line {
    position: absolute;
    top: 0;
    width: 100%;
    height: 1px;
    background: #D2D2D2;
}

.partnerships-wrap {
    display: flex;
    flex-direction: column;
    gap: 60px;
}

.partnerships-header {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 20px;
}

.partnerships-title {
    font-family: 'Inter', sans-serif;
    font-size: 58px;
    font-weight: 500;
    line-height: 1.2;
    color: #010812;
    margin: 0;
}

/* Partnerships Text Clip */
.partnerships-text-clip {
    background-image: url('/wp-content/uploads/2026/01/partnerships-texture.webp');
    background-size: cover;
    background-position: center;
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
}

.partnerships-description {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 22px;
    font-weight: 400;
    line-height: 1.7;
    color: #737373;
    margin: 0;
    max-width: 700px;
}

/* Logo Marquee */
.partnerships-marquee {
    width: 100%;
    position: relative;
    padding: 40px 0;
}

.partnerships-track {
    display: flex;
    align-items: center;
    gap: 40px;
    animation: scroll 10s linear infinite;
    width: fit-content;
}

.partnerships-marquee:hover .partnerships-track {
    animation-play-state: paused;
}

.partner-logo {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 200px;
    height: 150px;
    transition: transform 0.3s ease;
    cursor: pointer;
}

.partner-logo:hover {
    transform: scale(1.1);
}

.partner-logo img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: filter 0.3s ease;
}

/* Marquee Animation */
@keyframes scroll {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}


@media (max-width: 1200px) {
    .partnerships-section {
        padding: 80px 0;
    }
    
    .partnerships-wrap {
        gap: 50px;
    }
    
    .partnerships-header {
        gap: 18px;
    }
    
    .partnerships-title {
        font-size: 52px;
    }
    
    .partnerships-description {
        font-size: 20px;
        max-width: 650px;
    }
    
    .partnerships-marquee {
        padding: 35px 0;
    }
    
    .partner-logo {
        width: 180px;
        height: 135px;
    }
}

@media (max-width: 991px) {
    .partnerships-section {
        padding: 70px 0;
    }
    
    .partnerships-wrap {
        gap: 45px;
    }
    
    .partnerships-header {
        gap: 16px;
    }
    
    .partnerships-title {
        font-size: 46px;
    }
    
    .partnerships-description {
        font-size: 18px;
        line-height: 1.6;
        max-width: 600px;
    }
    
    .partnerships-marquee {
        padding: 30px 0;
    }
    
    .partner-logo {
        width: 160px;
        height: 120px;
    }
}

@media (max-width: 768px) {
    .partnerships-section {
        padding: 60px 0;
    }
    
    .partnerships-wrap {
        gap: 40px;
    }
    
    .partnerships-header {
        gap: 14px;
    }
    
    .partnerships-title {
        font-size: 42px;
    }
    
    .partnerships-description {
        font-size: 17px;
        max-width: 100%;
    }
    
    .partnerships-marquee {
        padding: 25px 0;
    }
    
    .partnerships-track {
        gap: 40px;
    }
    
    .partner-logo {
        width: 140px;
        height: 105px;
    }
    
    .partner-logo:hover {
        transform: scale(1.05);
    }
}

@media (max-width: 576px) {
    .partnerships-section {
        padding: 50px 0;
    }
    
    .partnerships-wrap {
        gap: 35px;
    }
    
    .partnerships-header {
        gap: 12px;
    }
    
    .partnerships-title {
        font-size: 36px;
    }
    
    .partnerships-description {
        font-size: 16px;
        line-height: 1.6;
    }
    
    .partnerships-marquee {
        padding: 20px 0;
    }
    
    .partnerships-track {
        gap: 35px;
        animation: scroll 15s linear infinite;
    }
    
    .partner-logo {
        width: 120px;
        height: 90px;
    }
}

@media (max-width: 320px) {
    .partnerships-section {
        padding: 40px 0;
    }
    
    .partnerships-wrap {
        gap: 30px;
    }
    
    .partnerships-header {
        gap: 10px;
    }
    
    .partnerships-title {
        font-size: 32px;
    }
    
    .partnerships-description {
        font-size: 15px;
    }
    
    .partnerships-marquee {
        padding: 18px 0;
    }
    
    .partnerships-track {
        gap: 30px;
        animation: scroll 18s linear infinite;
    }
    
    .partner-logo {
        width: 100px;
        height: 75px;
    }
}
/* ============ Partnerships Section End ============ */




/* ============ Data & Annexure Section ============ */
.data-annexure-section {
    padding: 100px 0;
    background: #FFFFFF;
    position: relative;
}

/* Border Line */
.data-annexure-section::before {
    content: '';
    position: absolute;
    top: 0;
    width: 100%;
    height: 1px;
    background: #D2D2D2;
}

.data-annexure-header {
    text-align: center;
    margin-bottom: 60px;
}

.data-annexure-title {
    font-family: 'Inter', sans-serif;
    font-size: 58px;
    font-weight: 500;
    color: #010812;
    margin-bottom: 15px;
    line-height: 1.2;
}

.annexure-text-clip {
    background-image: url('/wp-content/uploads/2026/01/global-texture.webp');
    background-size: cover;
    background-position: center;
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
}

.data-annexure-description {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 22px;
    font-weight: 400;
    color: #737373;
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.6;
}

.data-annexure-btn {
    margin-top: 30px;
    display: inline-flex;
}

.chart-container {
    background: #FFFFFF;
    padding: 50px;
    border-radius: 16px;
    margin-bottom: 40px;
    box-shadow: 0 2px 16px rgba(0, 0, 0, 0.06);
    border: 1px solid #E8E8E8;
}

.chart-title {
    font-family: 'Inter', sans-serif;
    font-size: 40px;
    font-weight: 500;
    color: #010812;
    margin-bottom: 40px;
    text-align: center;
}

/* Chart Scroll Wrapper */
.chart-scroll-wrapper {
    overflow-x: auto;
    overflow-y: hidden;
    width: 100%;
}

/* Chart scroll */
#compositionChart {
    min-width: 2000px;
    position: relative;
    padding-top: 50px;
}

#compositionChart .apexcharts-legend {
    position: absolute !important;
    top: 0 !important;
    left: 50% !important;
    transform: translateX(-50%) !important;
    width: auto !important;
}

.apexcharts-bar-series .apexcharts-series {
    transform: translateX(0);
}
.apexcharts-bar-series .apexcharts-series[seriesName="2022"] {
    transform: translateX(-1px);
}
.apexcharts-bar-series .apexcharts-series[seriesName="2023"] {
    transform: translateX(1px);
}


@media (max-width: 1200px) {
    .data-annexure-section {
        padding: 80px 0;
    }
    
    .data-annexure-header {
        margin-bottom: 50px;
    }
    
    .data-annexure-title {
        font-size: 52px;
        margin-bottom: 14px;
    }
    
    .data-annexure-description {
        font-size: 20px;
        max-width: 650px;
    }
    
    .chart-container {
        padding: 45px;
        margin-bottom: 35px;
    }
    
    .chart-title {
        font-size: 36px;
        margin-bottom: 35px;
    }
    
    #compositionChart {
        min-width: 1800px;
        padding-top: 50px;
    }
}

@media (max-width: 991px) {
    .data-annexure-section {
        padding: 70px 0;
    }
    
    .data-annexure-header {
        margin-bottom: 45px;
    }
    
    .data-annexure-title {
        font-size: 46px;
        margin-bottom: 12px;
    }
    
    .data-annexure-description {
        font-size: 18px;
        line-height: 1.6;
        max-width: 600px;
    }
    
    .chart-container {
        padding: 40px;
        border-radius: 14px;
        margin-bottom: 30px;
    }
    
    .chart-title {
        font-size: 32px;
        margin-bottom: 30px;
    }
    
    #compositionChart {
        min-width: 1600px;
        padding-top: 50px;
    }
}

@media (max-width: 768px) {
    .data-annexure-section {
        padding: 60px 0;
    }
    
    .data-annexure-header {
        margin-bottom: 40px;
    }
    
    .data-annexure-title {
        font-size: 42px;
        margin-bottom: 12px;
    }
    
    .data-annexure-description {
        font-size: 17px;
        max-width: 100%;
    }

    .data-annexure-btn {
        margin-top: 25px;
    }
    
    .chart-container {
        padding: 30px;
        border-radius: 12px;
        margin-bottom: 25px;
    }
    
    .chart-title {
        font-size: 28px;
        margin-bottom: 25px;
    }
    
    #compositionChart {
        min-width: 1500px;
        padding-top: 45px;
    }
}

@media (max-width: 576px) {
    .data-annexure-section {
        padding: 50px 0;
    }
    
    .data-annexure-header {
        margin-bottom: 35px;
    }
    
    .data-annexure-title {
        font-size: 36px;
        margin-bottom: 10px;
    }
    
    .data-annexure-description {
        font-size: 16px;
        line-height: 1.6;
    }

    .data-annexure-btn {
        margin-top: 20px;
    }
    
    .chart-container {
        padding: 20px;
        border-radius: 10px;
        margin-bottom: 20px;
    }
    
    .chart-title {
        font-size: 24px;
        margin-bottom: 20px;
        line-height: 1.3;
    }
    
    #compositionChart {
        min-width: 1400px;
        padding-top: 40px;
    }
}

@media (max-width: 320px) {
    .data-annexure-section {
        padding: 40px 0;
    }
    
    .data-annexure-header {
        margin-bottom: 30px;
    }
    
    .data-annexure-title {
        font-size: 32px;
        margin-bottom: 10px;
    }
    
    .data-annexure-description {
        font-size: 15px;
    }
    
    .chart-container {
        padding: 18px;
        border-radius: 8px;
    }
    
    .chart-title {
        font-size: 22px;
        margin-bottom: 18px;
    }
    
    #compositionChart {
        min-width: 1400px;
        padding-top: 40px;
    }
}
/* ============ Data & Annexure Section End ============ */






/* ============= Two Charts ============= */
.chart-row {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    margin-bottom: 40px;
}

.chart-half {
    flex: 1;
    min-width: 300px;
    margin-bottom: 0;
}

/* Chart Scroll */
.chart-scroll-wrapper-small {
    overflow-x: auto;
    overflow-y: hidden;
    width: 100%;
}

#apparelQuantityChart,
#exportValueChart {
    min-width: 1200px; 
}

.apexcharts-bar-series .apexcharts-series {
    transform: translateX(0);
}
.apexcharts-bar-series .apexcharts-series[seriesName="QuantityxPcsxMn"] {
    transform: translateX(-1px);
}
.apexcharts-bar-series .apexcharts-series[seriesName="QuantityxKgsxMn"] {
    transform: translateX(1px);
}


@media (max-width: 1400px) {
    .chart-row {
        gap: 25px;
    }
    
    #apparelQuantityChart,
    #exportValueChart {
        min-width: 1100px; 
    }
}

@media (max-width: 1200px) {
    .chart-row {
        gap: 25px;
    }
    
    .chart-half {
        flex: 100%;
        min-width: 100%;
    }
    
    #apparelQuantityChart,
    #exportValueChart {
        min-width: 1000px; 
    }
}

@media (max-width: 991px) {
    .chart-row {
        gap: 20px;
    }
    
    .chart-half {
        flex: 100%;
        min-width: 100%;
    }
    
    #apparelQuantityChart,
    #exportValueChart {
        min-width: 900px;  
    }
}

@media (max-width: 768px) {
    .chart-row {
        gap: 20px;
    }
    
    .chart-half {
        flex: 100%;
        min-width: 100%;
    }
    
    #apparelQuantityChart,
    #exportValueChart {
        min-width: 800px;  
    }
}

@media (max-width: 576px) {
    .chart-row {
        gap: 15px;
        margin-bottom: 30px;
    }
    
    .chart-half {
        flex: 100%;
        min-width: 100%;
    }
    
    #apparelQuantityChart,
    #exportValueChart {
        min-width: 700px;  
    }
}

@media (max-width: 480px) {
    .chart-row {
        gap: 15px;
    }
    
    .chart-half {
        flex: 100%;
        min-width: 100%;
    }
    
    #apparelQuantityChart,
    #exportValueChart {
        min-width: 650px;  
    }
}

@media (max-width: 320px) {
    .chart-row {
        gap: 12px;
    }
    
    .chart-half {
        flex: 100%;
        min-width: 100%;
    }
    
    #apparelQuantityChart,
    #exportValueChart {
        min-width: 600px; 
    }
}
/* ============= Two Charts End ============= */





/* ============ Export & Download Section ============ */
.export-download-wrap {
    padding: 80px 0;
}

.export-download-row {
    display: flex;
    flex-wrap: wrap;
    gap: 50px;
    align-items: stretch;
}

/* Left Column */
.export-chart-col {
    flex: 1;
    min-width: 300px;
}

.chart-subtitle {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 16px;
    font-weight: 400;
    color: #737373;
    margin-bottom: 30px;
    text-align: left;
}

/* Chart Scroll Wrapper */
.chart-scroll-wrapper-small {
    overflow-x: auto;
    overflow-y: hidden;
    width: 100%;
}

#exportApparelChart {
    min-width: 100%;
}

/* Right Column */
.download-report-col {
    flex: 1;
    min-width: 300px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.download-report-content {
    padding: 40px;
    border-radius: 16px;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.download-title {
    font-family: 'Inter', sans-serif;
    font-size: 40px;
    font-weight: 500;
    color: #010812;
    margin-bottom: 20px;
    line-height: 1.2;
    text-align: center;
}

.download-description {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 18px;
    font-weight: 400;
    color: #737373;
    line-height: 1.6;
    text-align: justify;
    margin-bottom: 30px;
}

/* Download Book Section */
.download-book-section {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 30px;
}

.download-book-image {
    flex: 0 0 auto;
}

.download-book-image img {
    max-width: 200px;
    height: auto;
    filter: drop-shadow(0 10px 30px rgba(0, 0, 0, 0.15));
}

.download-book-section .btn-primary {
    font-size: 15px;
    padding: 16px 32px;
}

.download-book-section .btn-primary:hover {
    padding-right: 42px;
}

.download-book-section .btn-primary i {
    font-size: 14px;
}

/* ApexCharts Custom Positioning */
.apexcharts-bar-series .apexcharts-series[seriesName="Chapterx61"] {
    transform: translateX(-1.5px);
}

.apexcharts-bar-series .apexcharts-series[seriesName="Chapterx62"] {
    transform: translateX(0px);
}

.apexcharts-bar-series .apexcharts-series[seriesName="Chapterx63"] {
    transform: translateX(1.5px);
}

/* ============ Responsive Breakpoints ============ */
@media (max-width: 1200px) {
    .export-download-wrap {
        padding: 70px 0;
    }
    
    .export-download-row {
        gap: 40px;
    }
    
    .download-title {
        font-size: 36px;
        text-align: center;
    }
    
    .download-description {
        font-size: 17px;
    }
    
    .download-report-content {
        padding: 35px;
    }
    
    #exportApparelChart {
        min-width: 600px;
    }
}

@media (max-width: 991px) {
    .export-download-wrap {
        padding: 60px 0;
    }
    
    .export-download-row {
        gap: 35px;
    }
    
    .download-title {
        font-size: 32px;
        text-align: center;
    }
    
    .download-description {
        font-size: 16px;
    }
    
    .download-report-content {
        padding: 30px;
    }
    
    .download-book-image img {
        max-width: 180px;
    }
    
    #exportApparelChart {
        min-width: 650px;
    }
}

@media (max-width: 768px) {
    .export-download-wrap {
        padding: 50px 0;
    }
    
    .export-download-row {
        gap: 30px;
    }
    
    .export-chart-col,
    .download-report-col {
        flex: 100%;
        min-width: 100%;
    }
    
    .download-title {
        font-size: 28px;
        margin-bottom: 15px;
        text-align: center;
    }
    
    .download-description {
        font-size: 16px;
        margin-bottom: 25px;
    }
    
    .download-report-content {
        padding: 25px;
    }
    
    .chart-subtitle {
        font-size: 15px;
        margin-bottom: 25px;
    }
    
    .download-book-section {
        gap: 25px;
        justify-content: center;
    }
    
    .download-book-image img {
        max-width: 160px;
    }
    
    .download-book-section .btn-primary {
        font-size: 14px;
        padding: 14px 28px;
    }
    
    .download-book-section .btn-primary:hover {
        padding-right: 38px;
    }
    
    #exportApparelChart {
        min-width: 700px;
    }
}

@media (max-width: 576px) {
    .export-download-wrap {
        padding: 40px 0;
    }
    
    .export-download-row {
        gap: 25px;
    }
    
    .download-title {
        font-size: 24px;
        margin-bottom: 12px;
        text-align: center;
    }
    
    .download-description {
        font-size: 15px;
        line-height: 1.5;
        margin-bottom: 20px;
    }
    
    .download-report-content {
        padding: 20px;
    }
    
    .chart-subtitle {
        font-size: 14px;
        margin-bottom: 20px;
    }
    
    .download-book-section {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }
    
    .download-book-image img {
        max-width: 140px;
    }
    
    .download-book-section .btn-primary {
        font-size: 14px;
        padding: 14px 28px;
    }
    
    .download-book-section .btn-primary:hover {
        padding-right: 38px;
    }
    
    #exportApparelChart {
        min-width: 600px;
    }
}

@media (max-width: 480px) {
    .export-download-wrap {
        padding: 35px 0;
    }
    
    .download-title {
        font-size: 22px;
        text-align: center;
    }
    
    .download-description {
        font-size: 14px;
    }
    
    .download-report-content {
        padding: 18px;
    }
    
    .download-book-image img {
        max-width: 120px;
    }

    .download-book-section .btn-primary {
        font-size: 13px;
        padding: 12px 24px;
    }
    
    .download-book-section .btn-primary:hover {
        padding-right: 34px;
    }
    
    #exportApparelChart {
        min-width: 550px;
    }
}

@media (max-width: 320px) {
    .export-download-wrap {
        padding: 30px 0;
    }
    
    .export-download-row {
        gap: 20px;
    }
    
    .download-title {
        font-size: 20px;
    }
    
    .download-description {
        font-size: 13px;
    }
    
    .download-report-content {
        padding: 15px;
    }
    
    .chart-subtitle {
        font-size: 13px;
    }
    
    .download-book-image img {
        max-width: 100px;
    }
    
    .download-book-section .btn-primary {
        font-size: 12px;
        padding: 10px 20px;
    }
    
    .download-book-section .btn-primary:hover {
        padding-right: 30px;
    }
    
    #exportApparelChart {
        min-width: 500px;
    }
}
/* ============ Export & Download Section End ============ */









/* ============ Footer Section ============ */
.footer-section {
    background: #010812;
    padding: 80px 0;
    position: relative;
    overflow: visible;
}

/* Background Watermark */
.footer-bg-watermark {
    position: absolute;
    right: -75px;
    top: 4%;
    width: 530px;
    height: 590px;
    pointer-events: none;
    z-index: 1;
}

.footer-bg-watermark img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

/* Footer Main Flex */
.footer-main {
    display: flex;
    gap: 60px;
    position: relative;
    z-index: 1;
}

/* Left Column */
.footer-left {
    display: flex;
    flex-direction: column;
    gap: 30px;
    flex: 1.2;
}

.footer-logo {
    width: 150px;
}

.footer-logo img {
    width: 100%;
    height: auto;
}

.footer-about {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 18px;
    font-weight: 400;
    line-height: 1.7;
    color: #F9FCFF;
    margin: 0;
}

.footer-social {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.footer-social-title {
    font-family: 'Inter', sans-serif;
    font-size: 20px;
    font-weight: 500;
    color: #F9FCFF;
    margin: 0;
}

.footer-social-icons {
    display: flex;
    gap: 15px;
}

.social-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: #1C3A6E;
    color: #FFFFFF;
    font-size: 18px;
    transition: all 0.3s ease;
    text-decoration: none;
}

.social-icon:hover {
    background: #2EAAE1;
    color: #FFFFFF;
}

/* Footer Columns */
.footer-column {
    display: flex;
    flex-direction: column;
    gap: 25px;
    flex: 1;
}

.footer-sponsors-col {
    flex: 1.3;
}

.footer-column-title {
    font-family: 'Inter', sans-serif;
    font-size: 20px;
    font-weight: 600;
    color: #FFFFFF;
    margin: 0;
}

/* Quick Links */
.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-links li a {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 18px;
    font-weight: 400;
    color: #F9FCFF;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links li a:hover {
    color: #2EAAE1;
}

/* Contact List */
.footer-contact {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.footer-contact li {
    display: flex;
    gap: 15px;
    align-items: flex-start;
}

.footer-contact li i {
    color: #194684;
    font-size: 16px;
    min-width: 20px;
    margin-top: 3px;
}

.footer-contact li span,
.footer-contact li a {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 18px;
    font-weight: 400;
    color: #F9FCFF;
    text-decoration: none;
    line-height: 1.6;
    transition: color 0.3s ease;
}

.footer-contact li a:hover {
    color: #2EAAE1;
}

.footer-sponsors-col {
    gap: 35px;
}

.footer-sponsor-group {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.footer-sponsor-group-title {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 18px;
    font-weight: 400;
    color: #F9FCFF;
    margin: 0;
}

.footer-sponsor-logos {
    display: flex;
    gap: 20px;
    flex-wrap: nowrap;
    align-items: center;
}

.footer-sponsor-logos img {
    height: 50px;
    width: auto;
    object-fit: contain;
}

.footer-sponsor-logos-grid {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.footer-sponsor-row {
    display: flex;
    gap: 20px;
    align-items: center;
}

.footer-sponsor-fedex,
.footer-sponsor-hellmann {
    height: 45px;
    width: auto;
    object-fit: contain;
}

.footer-sponsor-row:last-child {
    align-items: flex-start;
}

.footer-sponsor-rajkrup {
    height: 95px;
    width: auto;
    object-fit: contain;
}

.footer-sponsor-row-right {
    display: flex;
    flex-direction: row;
    gap: 20px;
}

.footer-sponsor-avery,
.footer-sponsor-hsbc {
    height: 35px;
    width: auto;
    object-fit: contain;
}

/* Responsive Breakpoints */
@media (max-width: 1400px) {
    .footer-section {
        padding: 70px 0;
    }
    
    .footer-main {
        flex-wrap: wrap;
        gap: 50px;
        align-items: flex-start;
    }
    
    .footer-left {
        flex: 0 0 100%;
        max-width: 100%;
        order: 1;
    }
    
    .footer-column:nth-child(2) {
        flex: 0 0 calc(50% - 25px);
        order: 2;
    }
    
    .footer-sponsors-col {
        flex: 0 0 calc(50% - 25px);
        order: 2;
    }
    
    /* Contact Us column below both */
    .footer-column:nth-child(3) {
        flex: 0 0 100%;
        order: 3;
        padding-top: 20px;
        border-top: 1px solid rgba(255, 255, 255, 0.1);
        margin-top: 15px;
    }
    
    .footer-bg-watermark {
        width: 450px;
        height: 500px;
        right: -60px;
    }
}

@media (max-width: 1200px) {
    .footer-section {
        padding: 60px 0;
    }
    
    .footer-main {
        flex-wrap: wrap;
        gap: 40px;
        align-items: flex-start;
    }
    
    .footer-left {
        flex: 0 0 100%;
        max-width: 100%;
        order: 1;
    }
    
    .footer-column:nth-child(2) {
        flex: 0 0 calc(50% - 20px);
        order: 2;
    }
    
    .footer-sponsors-col {
        flex: 0 0 calc(50% - 20px);
        order: 2;
    }
    
    /* Contact Us column below both */
    .footer-column:nth-child(3) {
        flex: 0 0 100%;
        order: 3;
        padding-top: 20px;
        border-top: 1px solid rgba(255, 255, 255, 0.1);
        margin-top: 15px;
    }
    
    .footer-bg-watermark {
        width: 400px;
        height: 450px;
        right: -50px;
    }
    
    .footer-about {
        font-size: 17px;
    }
    
    .footer-links li a,
    .footer-contact li span,
    .footer-contact li a {
        font-size: 17px;
    }
}

@media (max-width: 991px) {
    .footer-section {
        padding: 50px 0;
    }
    
    .footer-main {
        gap: 35px;
    }
    
    .footer-left {
        flex: 100%;
        max-width: 100%;
        gap: 25px;
        order: 1;
    }
    
    .footer-column:nth-child(2) {
        flex: 0 0 calc(50% - 17.5px);
        order: 2;
    }
    
    .footer-sponsors-col {
        flex: 0 0 calc(50% - 17.5px);
        order: 2;
        padding-top: 0;
        border-top: none;
        margin-top: 0;
    }
    
    /* Contact Us column below both */
    .footer-column:nth-child(3) {
        flex: 0 0 100%;
        order: 3;
        padding-top: 20px;
        border-top: 1px solid rgba(255, 255, 255, 0.1);
        margin-top: 15px;
    }
    
    .footer-bg-watermark {
        width: 285px;
        height: 475px;
        right: 30%;
        top: 30%;
    }
    
    .footer-logo {
        width: 130px;
    }
    
    .footer-about {
        font-size: 16px;
    }
    
    .footer-column-title {
        font-size: 18px;
    }
    
    .footer-links li a,
    .footer-contact li span,
    .footer-contact li a {
        font-size: 16px;
    }
    
    .footer-sponsor-group-title {
        font-size: 16px;
    }
}

@media (max-width: 768px) {
    .footer-section {
        padding: 40px 0;
    }
    
    .footer-main {
        gap: 35px;
        align-items: flex-start; 
    }
    
    .footer-left {
        flex: 100%;
        max-width: 100%;
        gap: 25px;
        order: 1;
    }
    
    /* Quick Links and Contact Us side by side */
    .footer-column:nth-child(2),
    .footer-column:nth-child(3) {
        flex: 1;
        min-width: 45%;
        order: 2;
    }
    
    /* Sponsors column below */
    .footer-sponsors-col {
        flex: 100%;
        order: 3;
        padding-top: 20px;
        border-top: 1px solid rgba(255, 255, 255, 0.1);
        margin-top: 15px;
    }
    
    .footer-bg-watermark {
        width: 300px;
        height: 350px;
        right: -30px;
        top: 2%;
        opacity: 0.2;
    }
    
    .footer-logo {
        width: 120px;
    }
    
    .footer-about {
        font-size: 16px;
        line-height: 1.6;
    }
    
    .footer-social-title {
        font-size: 18px;
    }
    
    .footer-column-title {
        font-size: 18px;
    }
    
    .footer-links {
        gap: 10px;
    }
    
    .footer-links li a {
        font-size: 16px;
    }
    
    .footer-contact {
        gap: 18px;
    }
    
    .footer-contact li span,
    .footer-contact li a {
        font-size: 16px;
    }
    
    .footer-sponsor-logos {
        gap: 15px;
    }
    
    .footer-sponsor-logos img {
        height: 40px;
    }
    
    .footer-sponsor-logos-grid {
        gap: 15px;
    }
    
    .footer-sponsor-row {
        gap: 15px;
    }
    
    .footer-sponsor-fedex,
    .footer-sponsor-hellmann {
        height: 35px;
    }
    
    .footer-sponsor-rajkrup {
        height: 75px;
    }
    
    .footer-sponsor-row-right {
        gap: 15px;
    }
    
    .footer-sponsor-avery,
    .footer-sponsor-hsbc {
        height: 28px;
    }
}

@media (max-width: 576px) {
    .footer-section {
        padding: 35px 0;
    }
    
    .footer-main {
        flex-direction: column;
        gap: 30px;
    }
    
    .footer-left {
        gap: 20px;
        order: 1;
    }
    
    .footer-column:nth-child(2),
    .footer-column:nth-child(3) {
        flex: 100%;
        min-width: 100%;
        order: 2;
    }
    
    .footer-sponsors-col {
        flex: 100%;
        order: 3;
        padding-top: 20px;
        border-top: 1px solid rgba(255, 255, 255, 0.1);
        margin-top: 10px;
    }
    
    .footer-bg-watermark {
        width: 250px;
        height: 300px;
        right: -20px;
        opacity: 0.15;
    }
    
    .footer-logo {
        width: 110px;
    }
    
    .footer-about {
        font-size: 15px;
    }
    
    .footer-social-title {
        font-size: 17px;
    }
    
    .social-icon {
        width: 40px;
        height: 40px;
        font-size: 16px;
    }
    
    .footer-column {
        gap: 20px;
    }
    
    .footer-column-title {
        font-size: 17px;
    }
    
    .footer-links li a,
    .footer-contact li span,
    .footer-contact li a {
        font-size: 15px;
    }
    
    .footer-sponsor-group-title {
        font-size: 15px;
    }
    
    .footer-sponsor-logos {
        flex-wrap: wrap;
        gap: 12px;
    }
    
    .footer-sponsor-logos img {
        height: 35px;
    }
    
    .footer-sponsor-row {
        flex-wrap: wrap;
        gap: 12px;
    }
    
    .footer-sponsor-fedex,
    .footer-sponsor-hellmann {
        height: 30px;
    }
    
    .footer-sponsor-rajkrup {
        height: 65px;
    }
    
    .footer-sponsor-row-right {
        flex-wrap: wrap;
        gap: 12px;
    }
    
    .footer-sponsor-avery,
    .footer-sponsor-hsbc {
        height: 25px;
    }
}

@media (max-width: 480px) {
    .footer-section {
        padding: 30px 0;
    }
    
    .footer-about {
        font-size: 14px;
    }
    
    .footer-links li a,
    .footer-contact li span,
    .footer-contact li a {
        font-size: 14px;
    }
    
    .footer-sponsor-logos img {
        height: 30px;
    }
    
    .footer-sponsor-fedex,
    .footer-sponsor-hellmann {
        height: 28px;
    }
    
    .footer-sponsor-rajkrup {
        height: 60px;
    }
    
    .footer-sponsor-avery,
    .footer-sponsor-hsbc {
        height: 22px;
    }
}

@media (max-width: 320px) {
    .footer-section {
        padding: 25px 0;
    }
    
    .footer-main {
        gap: 25px;
    }
    
    .footer-logo {
        width: 100px;
    }
    
    .footer-about {
        font-size: 13px;
    }
    
    .footer-social-icons {
        gap: 12px;
    }
    
    .social-icon {
        width: 38px;
        height: 38px;
        font-size: 15px;
    }
    
    .footer-column-title {
        font-size: 16px;
    }
    
    .footer-links li a,
    .footer-contact li span,
    .footer-contact li a {
        font-size: 13px;
    }
    
    .footer-bg-watermark {
        display: none;
    }
}
/* ============ Footer Section End ============ */





/* ============ Footer Bottom Section ============ */
#footer-bottom {
    background: #010812;
    padding: 30px 0;
    position: relative;
}

/* Top Line */
.footer-bottom-line {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    max-width: 1400px;
    height: 1px;
    background: #1E293B;
}

/* Main Wrapper */
#footer-bottom .fb-1 {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: nowrap;
    line-height: 1;
}

/* Copyright Text */
#footer-bottom .copyright-note {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 14px;
    font-weight: 400;
    color: #F9FCFF;
    margin-bottom: 0;
}

/* Site Creator Section */
#footer-bottom .fb-site-creater {
    display: flex;
    align-items: center;
    gap: 8px;
}

#footer-bottom .fb-sc-text {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 14px;
    font-weight: 400;
    color: #F9FCFF;
    margin-right: 0;
    position: static;
}

/* Creator Link */
#footer-bottom .fb-sc-link {
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 600;
    color: #F9FCFF;
    text-decoration: none;
    transition: all 0.3s ease;
}

#footer-bottom .fb-sc-link:hover,
#footer-bottom .fb-sc-link:focus,
#footer-bottom .fb-sc-link:active {
    color: #2EAAE1;
    opacity: 1;
}

/* Creator Logo Image */
#footer-bottom .fb-sc-l-img {
    width: 20px;
    height: 20px;
    max-width: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 0;
}

#footer-bottom .fb-sc-l-img img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    opacity: 1;
}

/* Creator Name */
#footer-bottom .fb-sc-l-name {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 14px;
    font-weight: 600;
    color: #F9FCFF;
    position: static;
    top: auto;
}
/* ================================ Footer Bottom Section End ================================= */











/* ================================ Charts Page Start=================================== */
/* ============ Export Table ============ */
.export-table-wrap {
    overflow-x: auto;
    width: 100%;
}

.export-table {
    width: 100%;
    border-collapse: collapse;
    font-family: 'Plus Jakarta Sans', sans-serif;
    min-width: 700px;
}

.export-table thead tr {
    border-top: 2px solid #010812;
    border-bottom: 1px solid #010812;
}

.export-table thead th {
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    font-weight: 700;
    color: #010812;
    padding: 14px 20px;
    text-align: center;
    vertical-align: top;
    line-height: 1.3;
}

.export-table thead th.export-table-label {
    text-align: left;
}

.export-table thead th span {
    display: block;
    font-size: 13px;
    font-weight: 400;
    color: #737373;
    margin-top: 4px;
}

.export-table tbody tr {
    border-bottom: 1px solid #E8E8E8;
}

.export-table tbody td {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 15px;
    font-weight: 400;
    color: #464848;
    padding: 16px 20px;
    text-align: center;
}

.export-table tbody td:first-child {
    text-align: left;
    font-weight: 600;
    color: #010812;
}

/* Total Exports Row */
.export-table-total td {
    font-weight: 700 !important;
    color: #010812 !important;
    font-size: 16px !important;
    border-top: 2px solid #010812;
    border-bottom: 2px solid #010812;
}

.chart-section-label {
    font-family: 'Inter', sans-serif;
    font-size: 20px;
    font-weight: 600;
    color: #010812;
    text-align: center;
    margin: 30px 0 20px 0;
}

/* Change % column */
.export-table tbody td:last-child {
    font-weight: 600;
    color: #010812;
}

/* Charts - force horizontal scroll */
#exportApparelChart,
#chapterBasisChart,
#usaExportChart,
#usaExportCumulativeChart,
#euExportChart,
#euExportCumulativeExclUkChart,
#importsCompositionChart {
    min-width: 600px;
}


@media (max-width: 1200px) {
    .export-table {
        min-width: 650px;
    }

    .export-table thead th {
        font-size: 15px;
        padding: 13px 18px;
    }

    .export-table thead th span {
        font-size: 12px;
    }

    .export-table tbody td {
        font-size: 14px;
        padding: 15px 18px;
    }

    .export-table-total td {
        font-size: 15px !important;
    }
}


@media (max-width: 991px) {
    .export-table {
        min-width: 620px;
    }

    .export-table thead th {
        font-size: 14px;
        padding: 12px 15px;
    }

    .export-table thead th span {
        font-size: 11px;
        margin-top: 3px;
    }

    .export-table tbody td {
        font-size: 13px;
        padding: 14px 15px;
    }

    .export-table-total td {
        font-size: 14px !important;
    }
}


@media (max-width: 768px) {
    .export-table {
        min-width: 580px;
    }

    .export-table thead th {
        font-size: 13px;
        padding: 11px 13px;
    }

    .export-table thead th span {
        font-size: 11px;
        margin-top: 3px;
    }

    .export-table tbody td {
        font-size: 13px;
        padding: 13px 13px;
    }

    .export-table-total td {
        font-size: 13px !important;
    }
}


@media (max-width: 576px) {
    .export-table {
        min-width: 520px;
    }

    .export-table thead th {
        font-size: 12px;
        padding: 10px 10px;
    }

    .export-table thead th span {
        font-size: 10px;
        margin-top: 2px;
    }

    .export-table tbody td {
        font-size: 12px;
        padding: 11px 10px;
    }

    .export-table-total td {
        font-size: 12px !important;
    }
}


@media (max-width: 320px) {
    .export-table {
        min-width: 480px;
    }

    .export-table thead th {
        font-size: 11px;
        padding: 9px 8px;
    }

    .export-table thead th span {
        font-size: 9px;
        margin-top: 2px;
    }

    .export-table tbody td {
        font-size: 11px;
        padding: 10px 8px;
    }

    .export-table-total td {
        font-size: 11px !important;
    }
}
/* ============ Export Table End ============ */

/* ================================ Charts Page End =================================== */








/* ================================ Export Tables Page =================================== */

/* Main Section */
.data-tables-section {
    background: #FFFFFF;
    padding: 100px 0;
}

.data-tables-wrap {
    display: flex;
    flex-direction: column;
    gap: 60px;
}

/* Main Header */
.tables-header {
    display: flex;
    flex-direction: column;
    gap: 15px;
    text-align: center;
}

.tables-main-title {
    font-family: 'Inter', sans-serif;
    font-size: 58px;
    font-weight: 600;
    line-height: 1.2;
    color: #010812;
    margin: 0;
}

.tables-description {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 22px;
    font-weight: 400;
    color: #737373;
    margin: 0;
}

/* Table Pages */
.table-page {
    display: none;
    animation: fadeIn 0.4s ease;
}

.table-page.active {
    display: block;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Individual Table Header */
.table-header {
    display: flex;
    flex-direction: column;
    gap: 10px;
    text-align: center;
    margin-bottom: 40px;
}

.table-page-title {
    font-family: 'Inter', sans-serif;
    font-size: 42px;
    font-weight: 600;
    line-height: 1.2;
    color: #010812;
    margin: 0;
}

.table-source {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 13px;
    font-weight: 400;
    color: #6B7280;
    margin: 0;
}

/* Responsive Table Wrapper */
.table-responsive {
    width: 100%;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
}

/* Pagination Controls */
.pagination-controls {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin-top: 40px;
}

.pagination-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    font-weight: 500;
    color: #FFFFFF;
    background: #194684;
    padding: 12px 24px;
    border-radius: 8px;
    border: 2px solid #194684;
    cursor: pointer;
    transition: all 0.3s ease;
}

.pagination-btn:hover {
    background: #2EAAE1;
    border-color: #2EAAE1;
}

.pagination-btn:disabled {
    background: #D1D5DB;
    border-color: #D1D5DB;
    color: #9CA3AF;
    cursor: not-allowed;
}

.pagination-btn i {
    font-size: 14px;
}

.pagination-numbers {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    justify-content: center;
}

.page-number {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    font-weight: 500;
    color: #010812;
    background: #F3F4F6;
    border: 2px solid #E5E7EB;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.page-number:hover {
    background: #E5E7EB;
    border-color: #D1D5DB;
}

.page-number.active {
    background: #194684;
    color: #FFFFFF;
    border-color: #194684;
}

.page-number.ellipsis {
    cursor: default;
    background: transparent;
    border: none;
    pointer-events: none;
}

.page-number.ellipsis:hover {
    background: transparent;
}


/* ============================================
   TABLE 1: EXPORT DESTINATIONS
   ============================================ */

.export-destinations-table {
    width: 100%;
    border-collapse: collapse;
    font-family: 'Plus Jakarta Sans', sans-serif;
    background: #FFFFFF;
    border: 1px solid #E5E7EB;
}

.export-destinations-table thead {
    background: #010812;
    color: #FFFFFF;
}

.export-destinations-table thead th {
    padding: 18px 15px;
    text-align: center;
    font-family: 'Inter', sans-serif;
    font-size: 15px;
    font-weight: 600;
    line-height: 1.4;
    border: 1px solid #374151;
}

.export-destinations-table .rank-column {
    width: 60px;
}

.export-destinations-table .country-column {
    text-align: left;
    min-width: 200px;
}

.export-destinations-table .value-column {
    width: 150px;
}

.export-destinations-table .year-header {
    font-weight: 700;
    font-size: 15px;
}

.export-destinations-table tbody td {
    padding: 14px 15px;
    text-align: center;
    font-size: 15px;
    font-weight: 400;
    color: #010812;
    border: 1px solid #E5E7EB;
}

.export-destinations-table .rank-cell {
    text-align: center;
    font-weight: 600;
}

.export-destinations-table .country-cell {
    text-align: left;
    font-weight: 500;
}

.export-destinations-table .value-cell {
    text-align: right;
    font-weight: 400;
}

.export-destinations-table tbody tr:hover {
    background: #F3F4F6;
}

.export-destinations-table .total-row {
    background: #010812;
    color: #FFFFFF;
    font-weight: 700;
}

.export-destinations-table .total-row td {
    color: #FFFFFF;
    font-weight: 700;
    border-color: #374151;
}

.export-destinations-table .total-row:hover {
    background: #010812;
}


@media (max-width: 1400px) {
    .data-tables-section {
        padding: 80px 0;
    }
    
    .tables-main-title {
        font-size: 52px;
    }
    
    .tables-description {
        font-size: 20px;
    }
    
    .table-page-title {
        font-size: 38px;
    }
}

@media (max-width: 1200px) {
    .data-tables-section {
        padding: 70px 0;
    }
    
    .data-tables-wrap {
        gap: 50px;
    }
    
    .tables-main-title {
        font-size: 46px;
    }
    
    .tables-description {
        font-size: 19px;
    }
    
    .table-page-title {
        font-size: 34px;
    }
    
    .table-header {
        margin-bottom: 35px;
    }
    
    .export-destinations-table thead th {
        padding: 16px 12px;
    }
    
    .export-destinations-table tbody td {
        padding: 12px;
    }
}

@media (max-width: 991px) {
    .data-tables-section {
        padding: 60px 0;
    }
    
    .data-tables-wrap {
        gap: 40px;
    }
    
    .tables-main-title {
        font-size: 40px;
    }
    
    .tables-description {
        font-size: 18px;
    }
    
    .table-page-title {
        font-size: 30px;
    }
    
    .table-header {
        margin-bottom: 30px;
    }
    
    .table-responsive {
        border: 1px solid #E5E7EB;
        border-radius: 8px;
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    }
    
    .export-destinations-table {
        min-width: 800px;
    }
    
    .export-destinations-table thead th {
        padding: 14px 10px;
    }
    
    .export-destinations-table tbody td {
        padding: 12px 10px;
    }
    
    .pagination-controls {
        gap: 15px;
        margin-top: 35px;
    }
    
    .pagination-btn {
        padding: 10px 20px;
        font-size: 15px;
    }
    
    .page-number {
        width: 42px;
        height: 42px;
        font-size: 15px;
    }
}

@media (max-width: 768px) {
    .data-tables-section {
        padding: 50px 0;
    }
    
    .data-tables-wrap {
        gap: 35px;
    }
    
    .tables-main-title {
        font-size: 34px;
    }
    
    .tables-description {
        font-size: 17px;
    }
    
    .table-page-title {
        font-size: 26px;
    }
    
    .table-header {
        margin: 40px 0 40px 0;
    }
    
    .table-source {
        font-size: 12px;
    }
    
    .table-responsive {
        border-radius: 6px;
    }
    
    .export-destinations-table {
        min-width: 750px;
    }
    
    .export-destinations-table thead th {
        padding: 12px 8px;
    }
    
    .export-destinations-table tbody td {
        padding: 10px 8px;
    }
    
    .export-destinations-table .country-column {
        min-width: 180px;
    }
    
    .pagination-controls {
        flex-wrap: wrap;
        gap: 12px;
        margin-top: 30px;
    }
    
    .pagination-btn {
        padding: 9px 18px;
        font-size: 14px;
    }
    
    .pagination-numbers {
        order: 3;
        width: 100%;
        gap: 8px;
    }
    
    .page-number {
        width: 40px;
        height: 40px;
        font-size: 14px;
    }
}

@media (max-width: 576px) {
    .data-tables-section {
        padding: 40px 0;
    }
    
    .data-tables-wrap {
        gap: 30px;
    }
    
    .tables-main-title {
        font-size: 28px;
    }
    
    .tables-description {
        font-size: 16px;
    }
    
    .table-page-title {
        font-size: 22px;
    }
    
    .table-header {
        margin: 40px 0 40px 0;
    }
    
    .export-destinations-table {
        min-width: 700px;
    }
    
    .export-destinations-table thead th {
        padding: 10px 6px;
    }
    
    .export-destinations-table tbody td {
        padding: 9px 6px;
    }
    
    .export-destinations-table .country-column {
        min-width: 160px;
    }
    
    .export-destinations-table tbody td[style*="padding-left: 30px"] {
        padding-left: 20px !important;
    }
    
    .export-destinations-table tbody td[style*="padding-left: 50px"] {
        padding-left: 30px !important;
    }
    
    .pagination-btn {
        padding: 8px 16px;
        font-size: 13px;
    }
    
    .pagination-btn i {
        font-size: 12px;
    }

    .page-number {
        width: 38px;
        height: 38px;
        font-size: 13px;
    }
}

@media (max-width: 480px) {
    .data-tables-section {
        padding: 35px 0;
    }
    
    .tables-main-title {
        font-size: 24px;
    }
    
    .tables-description {
        font-size: 15px;
    }
    
    .table-page-title {
        font-size: 20px;
    }
    
    .export-destinations-table {
        min-width: 650px;
    }
    
    .export-destinations-table thead th {
        padding: 8px 5px;
    }
    
    .export-destinations-table tbody td {
        padding: 8px 5px;
    }
    
    .pagination-btn {
        padding: 7px 14px;
        font-size: 12px;
    }
    
    .page-number {
        width: 36px;
        height: 36px;
        font-size: 12px;
    }
}

@media (max-width: 320px) {
    .data-tables-section {
        padding: 30px 0;
    }
    
    .tables-main-title {
        font-size: 22px;
    }
    
    .table-page-title {
        font-size: 18px;
    }
    
    .export-destinations-table {
        min-width: 600px;
    }
    
    .pagination-btn {
        padding: 6px 12px;
        font-size: 11px;
    }
    
    .page-number {
        width: 34px;
        height: 34px;
        font-size: 11px;
    }
}




/* ============================================
   TABLE 2: EXPORT BY MAJOR PRODUCT GROUPS
   ============================================ */
.product-groups-table {
    width: 100%;
    border-collapse: collapse;
    font-family: 'Plus Jakarta Sans', sans-serif;
    background: #FFFFFF;
    border: 1px solid #E5E7EB;
}

.product-groups-table .table-title-header {
    background: #D1D5DB;
    color: #010812;
    font-family: 'Inter', sans-serif;
    font-size: 18px;
    font-weight: 700;
    padding: 15px;
    text-align: center;
    border: 1px solid #9CA3AF;
}

.product-groups-table .table-source-header {
    background: #FFFFFF;
    color: #010812;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 13px;
    font-weight: 400;
    padding: 10px;
    text-align: right;
    border: 1px solid #E5E7EB;
    line-height: 1.6;
}

.product-groups-table thead {
    background: #010812;
    color: #FFFFFF;
}

.product-groups-table thead th {
    padding: 18px 15px;
    text-align: center;
    font-family: 'Inter', sans-serif;
    font-size: 15px;
    font-weight: 600;
    line-height: 1.4;
    border: 1px solid #374151;
}

.product-groups-table .rank-col {
    width: 50px;
    text-align: center;
    font-weight: 600;
}

.product-groups-table .code-col {
    width: 100px;
    text-align: center;
    font-family: 'Inter', sans-serif;
    font-size: 14px;
}

.product-groups-table .category-col {
    text-align: left;
    min-width: 400px;
}

.product-groups-table .product-column {
    min-width: 300px;
    text-align: left;
}

.product-groups-table .value-column {
    width: 120px;
}

.product-groups-table .change-column {
    width: 100px;
}

.product-groups-table .year-header {
    font-weight: 700;
    font-size: 15px;
}

.product-groups-table .category-description {
    text-align: left;
    line-height: 1.6;
    padding: 12px 15px;
    font-size: 15px;
}

.product-groups-table .sub-text {
    font-size: 13px;
    color: #4B5563;
    display: block;
    margin-top: 5px;
    font-style: italic;
}

.product-groups-table tbody td {
    padding: 14px 15px;
    text-align: center;
    font-size: 15px;
    font-weight: 400;
    color: #010812;
    border: 1px solid #E5E7EB;
}

.product-groups-table .product-cell {
    text-align: left;
    font-weight: 500;
}

.product-groups-table .value-cell {
    text-align: right;
    font-weight: 400;
}

.product-groups-table .change-cell {
    text-align: center;
    font-weight: 500;
}

.product-groups-table .positive-change {
    color: #059669;
}

.product-groups-table .negative-change {
    color: #DC2626;
}

.product-groups-table .other-products-row {
    background: #F9FAFB;
}

.product-groups-table .other-products-row td {
    font-weight: 600;
}

.product-groups-table tbody tr:not(.other-products-row):not(.total-row):hover {
    background: #F3F4F6;
}

.product-groups-table .total-row {
    background: #010812;
    color: #FFFFFF;
}

.product-groups-table .total-row td {
    color: #FFFFFF;
    font-weight: 700;
    border-color: #374151;
}

.product-groups-table .total-row:hover {
    background: #010812;
}

@media (max-width: 1400px) {
    .product-groups-table .table-title-header {
        font-size: 17px;
        padding: 14px;
    }
    
    .product-groups-table .category-col {
        min-width: 380px;
    }
    
    .product-groups-table thead th {
        padding: 16px 12px;
    }
    
    .product-groups-table tbody td {
        padding: 12px;
    }
    
    .product-groups-table .category-description {
        padding: 12px;
    }
}

@media (max-width: 1200px) {
    .product-groups-table .table-title-header {
        padding: 13px;
    }
    
    .product-groups-table .table-source-header {
        padding: 9px;
    }
    
    .product-groups-table .category-col {
        min-width: 350px;
    }
    
    .product-groups-table thead th {
        padding: 14px 10px;
    }
    
    .product-groups-table tbody td {
        padding: 11px 10px;
    }
    
    .product-groups-table .category-description {
        padding: 11px 10px;
    }
    
    .product-groups-table .code-col {
        width: 90px;
    }
    
    .product-groups-table .value-column {
        width: 110px;
    }
}

@media (max-width: 991px) {
    .table-page[data-page="2"] {
        padding-top: 25px;
    }
    
    .product-groups-table {
        min-width: 900px;
    }
    
    .product-groups-table .table-title-header {
        padding: 16px 12px;
    }
    
    .product-groups-table .table-source-header {
        padding: 8px;
    }
    
    .product-groups-table .category-col {
        min-width: 320px;
    }
    
    .product-groups-table thead th {
        padding: 12px 8px;
    }
    
    .product-groups-table tbody td {
        padding: 10px 8px;
    }
    
    .product-groups-table .category-description {
        padding: 10px 8px;
    }
    
    .product-groups-table .sub-text {
        margin-top: 4px;
    }
    
    .product-groups-table .code-col {
        width: 85px;
    }
    
    .product-groups-table .rank-col {
        width: 45px;
    }
    
    .product-groups-table .value-column {
        width: 100px;
    }
}

@media (max-width: 768px) {
    .table-page[data-page="2"] {
        padding-top: 30px;
    }
    
    .product-groups-table {
        min-width: 850px;
    }
    
    .product-groups-table .table-title-header {
        padding: 14px 11px;
    }
    
    .product-groups-table .table-source-header {
        padding: 7px;
    }
    
    .product-groups-table .category-col {
        min-width: 300px;
    }
    
    .product-groups-table thead th {
        padding: 10px 6px;
    }
    
    .product-groups-table tbody td {
        padding: 9px 6px;
    }
    
    .product-groups-table .category-description {
        padding: 9px 6px;
        line-height: 1.5;
    }
    
    .product-groups-table .sub-text {
        margin-top: 3px;
    }
    
    .product-groups-table .code-col {
        width: 80px;
    }
    
    .product-groups-table .rank-col {
        width: 40px;
    }
    
    .product-groups-table .value-column {
        width: 95px;
    }
}

@media (max-width: 576px) {
    .table-page[data-page="2"] {
        padding-top: 35px;
    }
    
    .product-groups-table {
        min-width: 800px;
    }
    
    .product-groups-table .table-title-header {
        padding: 12px 10px;
    }
    
    .product-groups-table .table-source-header {
        padding: 6px;
        line-height: 1.5;
    }
    
    .product-groups-table .category-col {
        min-width: 280px;
    }
    
    .product-groups-table thead th {
        padding: 9px 5px;
    }
    
    .product-groups-table tbody td {
        padding: 8px 5px;
    }
    
    .product-groups-table .category-description {
        padding: 8px 5px;
        line-height: 1.4;
    }
    
    .product-groups-table .sub-text {
        margin-top: 2px;
    }
    
    .product-groups-table .code-col {
        width: 75px;
    }
    
    .product-groups-table .rank-col {
        width: 35px;
    }
    
    .product-groups-table .value-column {
        width: 90px;
    }
}

@media (max-width: 480px) {
    .table-page[data-page="2"] {
        padding-top: 40px;
    }
    
    .product-groups-table {
        min-width: 750px;
    }
    
    .product-groups-table .table-title-header {
        padding: 10px 9px;
    }
    
    .product-groups-table .table-source-header {
        padding: 5px;
    }
    
    .product-groups-table .category-col {
        min-width: 260px;
    }
    
    .product-groups-table thead th {
        padding: 8px 4px;
    }
    
    .product-groups-table tbody td {
        padding: 7px 4px;
    }
    
    .product-groups-table .category-description {
        padding: 7px 4px;
        line-height: 1.4;
    }
    
    .product-groups-table .sub-text {
        margin-top: 2px;
    }
    
    .product-groups-table .code-col {
        width: 70px;
    }
    
    .product-groups-table .rank-col {
        width: 32px;
    }
    
    .product-groups-table .value-column {
        width: 85px;
    }
}

@media (max-width: 320px) {
    .table-page[data-page="2"] {
        padding-top: 40px;
    }
    
    .product-groups-table {
        min-width: 700px;
    }
    
    .product-groups-table .table-title-header {
        padding: 9px 8px;
    }
    
    .product-groups-table .table-source-header {
        padding: 4px;
    }
    
    .product-groups-table .category-col {
        min-width: 240px;
    }
    
    .product-groups-table thead th {
        padding: 7px 3px;
    }
    
    .product-groups-table tbody td {
        padding: 6px 3px;
    }
    
    .product-groups-table .category-description {
        padding: 6px 3px;
    }
    
    .product-groups-table .code-col {
        width: 65px;
    }
    
    .product-groups-table .rank-col {
        width: 30px;
    }
}




/* ============================================
   TABLE 3: EXPORT STATISTICS - CHAPTER 61
   ============================================ */
.chapter-61-table {
    width: 100%;
    border-collapse: collapse;
    background: #FFFFFF;
    font-family: 'Plus Jakarta Sans', sans-serif;
    border: 1px solid #E5E7EB;
}

.chapter-61-table thead th {
    padding: 12px 10px;
    text-align: center;
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    font-weight: 600;
    line-height: 1.3;
    border: 1px solid #374151;
    background: #010812;
    color: #FFFFFF;
    vertical-align: middle;
}

.chapter-61-table .code-column {
    width: 80px;
    text-align: center;
}

.chapter-61-table .description-column {
    min-width: 400px;
    text-align: left;
}

.chapter-61-table .year-header {
    font-weight: 700;
    font-size: 15px;
}

.chapter-61-table .data-header {
    font-weight: 600;
    font-size: 13px;
}

.chapter-61-table tbody td {
    padding: 10px;
    font-size: 13px;
    font-weight: 400;
    color: #010812;
    border: 1px solid #D1D5DB;
    vertical-align: top;
}

.chapter-61-table .code-cell {
    text-align: center;
    font-weight: 600;
    width: 80px;
}

.chapter-61-table .description-cell {
    text-align: left;
    line-height: 1.6;
    padding: 10px 15px;
}

.chapter-61-table .main-item-row .description-cell strong {
    font-weight: 600;
    display: block;
    margin-bottom: 5px;
}

.chapter-61-table .data-cell {
    text-align: right;
    padding-right: 15px;
}

.chapter-61-table .sub-item-row .description-cell {
    border-top: none;
    padding-top: 0;
}

.chapter-61-table .total-row {
    background: #010812;
    color: #FFFFFF;
}

.chapter-61-table .total-row td {
    color: #FFFFFF;
    font-weight: 700;
    border-color: #374151;
}

.chapter-61-table tbody tr:not(.sub-item-row):not(.total-row):hover {
    background: #F3F4F6;
}
@media (max-width: 1400px) {
    .table-page[data-page="3"] .table-page-title {
        font-size: 38px;
    }
    
    .table-page[data-page="3"] .table-source {
        font-size: 12px;
    }
    
    .chapter-61-table thead th {
        padding: 11px 9px;
    }
    
    .chapter-61-table .description-column {
        min-width: 380px;
    }
    
    .chapter-61-table tbody td {
        padding: 9px;
    }
    
    .chapter-61-table .description-cell {
        padding: 9px 13px;
    }
    
    .chapter-61-table .data-cell {
        padding-right: 13px;
    }
}

@media (max-width: 1200px) {
    .table-page[data-page="3"] .table-page-title {
        font-size: 34px;
    }
    
    .table-page[data-page="3"] .table-source {
        font-size: 12px;
    }
    
    .chapter-61-table thead th {
        padding: 10px 8px;
    }
    
    .chapter-61-table tbody td {
        padding: 8px;
    }
    
    .chapter-61-table .description-column {
        min-width: 350px;
    }
    
    .chapter-61-table .description-cell {
        padding: 8px 12px;
        line-height: 1.5;
    }
    
    .chapter-61-table .data-cell {
        padding-right: 12px;
    }
    
    .chapter-61-table .code-column {
        width: 75px;
    }
    
    .chapter-61-table .code-cell {
        width: 75px;
    }
}

@media (max-width: 991px) {
    .table-page[data-page="3"] {
        padding-top: 25px;
    }
    
    .table-page[data-page="3"] .table-page-title {
        font-size: 30px;
    }
    
    .chapter-61-table {
        min-width: 850px;
    }
    
    .chapter-61-table thead th {
        padding: 9px 7px;
    }
    
    .chapter-61-table tbody td {
        padding: 7px;
    }
    
    .chapter-61-table .description-column {
        min-width: 320px;
    }
    
    .chapter-61-table .description-cell {
        padding: 7px 10px;
        line-height: 1.5;
    }
    
    .chapter-61-table .main-item-row .description-cell strong {
        margin-bottom: 4px;
    }
    
    .chapter-61-table .data-cell {
        padding-right: 10px;
    }
    
    .chapter-61-table .code-column {
        width: 70px;
    }
    
    .chapter-61-table .code-cell {
        width: 70px;
    }
}

@media (max-width: 768px) {
    .table-page[data-page="3"] {
        padding-top: 30px;
    }
    
    .table-page[data-page="3"] .table-page-title {
        font-size: 26px;
    }
    
    .chapter-61-table {
        min-width: 800px;
    }
    
    .chapter-61-table thead th {
        padding: 8px 6px;
    }
    
    .chapter-61-table tbody td {
        padding: 6px;
    }
    
    .chapter-61-table .description-column {
        min-width: 300px;
    }
    
    .chapter-61-table .description-cell {
        padding: 6px 8px;
        line-height: 1.4;
    }
    
    .chapter-61-table .main-item-row .description-cell strong {
        margin-bottom: 3px;
    }
    
    .chapter-61-table .data-cell {
        padding-right: 8px;
    }
    
    .chapter-61-table .code-column {
        width: 65px;
    }
    
    .chapter-61-table .code-cell {
        width: 65px;
    }
}

@media (max-width: 576px) {
    .table-page[data-page="3"] {
        padding-top: 35px;
    }
    
    .table-page[data-page="3"] .table-page-title {
        font-size: 22px;
    }
    
    .chapter-61-table {
        min-width: 750px;
    }
    
    .chapter-61-table thead th {
        padding: 7px 5px;
        line-height: 1.2;
    }
    
    .chapter-61-table tbody td {
        padding: 5px;
    }
    
    .chapter-61-table .description-column {
        min-width: 280px;
    }
    
    .chapter-61-table .description-cell {
        padding: 5px 7px;
        line-height: 1.4;
    }
    
    .chapter-61-table .main-item-row .description-cell strong {
        margin-bottom: 2px;
    }
    
    .chapter-61-table .data-cell {
        padding-right: 7px;
    }
    
    .chapter-61-table .code-column {
        width: 60px;
    }
    
    .chapter-61-table .code-cell {
        width: 60px;
    }
}

@media (max-width: 480px) {
    .table-page[data-page="3"] {
        padding-top: 40px;
    }
    
    .chapter-61-table {
        min-width: 700px;
    }
    
    .chapter-61-table thead th {
        padding: 6px 4px;
        line-height: 1.2;
    }
    
    .chapter-61-table tbody td {
        padding: 4px;
    }
    
    .chapter-61-table .description-column {
        min-width: 260px;
    }
    
    .chapter-61-table .description-cell {
        padding: 4px 6px;
        line-height: 1.3;
    }
    
    .chapter-61-table .data-cell {
        padding-right: 6px;
    }
    
    .chapter-61-table .code-column {
        width: 55px;
    }
    
    .chapter-61-table .code-cell {
        width: 55px;
    }
}

@media (max-width: 320px) {
    .table-page[data-page="3"] {
        padding-top: 40px;
    }
    
    .chapter-61-table {
        min-width: 650px;
    }
    
    .chapter-61-table thead th {
        padding: 5px 3px;
    }
    
    .chapter-61-table tbody td {
        padding: 3px;
    }
    
    .chapter-61-table .description-column {
        min-width: 240px;
    }
    
    .chapter-61-table .description-cell {
        padding: 3px 5px;
        line-height: 1.3;
    }
    
    .chapter-61-table .data-cell {
        padding-right: 5px;
    }
    
    .chapter-61-table .code-column {
        width: 50px;
    }
    
    .chapter-61-table .code-cell {
        width: 50px;
    }
}




/* ============================================
   TABLE 4: EXPORT STATISTICS - CHAPTER 62
   ============================================ */
.chapter-62-table {
    width: 100%;
    border-collapse: collapse;
    background: #FFFFFF;
    font-family: 'Plus Jakarta Sans', sans-serif;
    border: 1px solid #E5E7EB;
}

.chapter-62-table thead th {
    padding: 12px 10px;
    text-align: center;
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    font-weight: 600;
    line-height: 1.3;
    border: 1px solid #374151;
    background: #010812;
    color: #FFFFFF;
    vertical-align: middle;
}

.chapter-62-table .code-column {
    width: 80px;
    text-align: center;
}

.chapter-62-table .description-column {
    min-width: 400px;
    text-align: left;
}

.chapter-62-table .year-header {
    font-weight: 700;
    font-size: 15px;
}

.chapter-62-table .data-header {
    font-weight: 600;
    font-size: 13px;
}

.chapter-62-table tbody td {
    padding: 10px;
    font-size: 13px;
    font-weight: 400;
    color: #010812;
    border: 1px solid #D1D5DB;
    vertical-align: top;
}

.chapter-62-table .code-cell {
    text-align: center;
    font-weight: 600;
    width: 80px;
}

.chapter-62-table .description-cell {
    text-align: left;
    line-height: 1.6;
    padding: 10px 15px;
}

.chapter-62-table .main-item-row .description-cell strong {
    font-weight: 600;
    display: block;
    margin-bottom: 5px;
}

.chapter-62-table .data-cell {
    text-align: right;
    padding-right: 15px;
}

.chapter-62-table .sub-item-row .description-cell {
    border-top: none;
    padding-top: 0;
}

.chapter-62-table .total-row {
    background: #010812;
    color: #FFFFFF;
}

.chapter-62-table .total-row td {
    color: #FFFFFF;
    font-weight: 700;
    border-color: #374151;
}

.chapter-62-table tbody tr:not(.sub-item-row):not(.total-row):hover {
    background: #F3F4F6;
}

@media (max-width: 1400px) {
    .table-page[data-page="4"] .table-page-title {
        font-size: 38px;
    }
    
    .table-page[data-page="4"] .table-source {
        font-size: 12px;
    }
    
    .chapter-62-table thead th {
        padding: 11px 9px;
    }
    
    .chapter-62-table .description-column {
        min-width: 380px;
    }
    
    .chapter-62-table tbody td {
        padding: 9px;
    }
    
    .chapter-62-table .description-cell {
        padding: 9px 13px;
    }
    
    .chapter-62-table .data-cell {
        padding-right: 13px;
    }
}

@media (max-width: 1200px) {
    .table-page[data-page="4"] .table-page-title {
        font-size: 34px;
    }
    
    .table-page[data-page="4"] .table-source {
        font-size: 12px;
    }
    
    .chapter-62-table thead th {
        padding: 10px 8px;
    }
    
    .chapter-62-table tbody td {
        padding: 8px;
    }
    
    .chapter-62-table .description-column {
        min-width: 350px;
    }
    
    .chapter-62-table .description-cell {
        padding: 8px 12px;
        line-height: 1.5;
    }
    
    .chapter-62-table .data-cell {
        padding-right: 12px;
    }
    
    .chapter-62-table .code-column {
        width: 75px;
    }
    
    .chapter-62-table .code-cell {
        width: 75px;
    }
}

@media (max-width: 991px) {
    .table-page[data-page="4"] {
        padding-top: 25px;
    }
    
    .table-page[data-page="4"] .table-page-title {
        font-size: 30px;
    }
    
    .chapter-62-table {
        min-width: 850px;
    }
    
    .chapter-62-table thead th {
        padding: 9px 7px;
    }
    
    .chapter-62-table tbody td {
        padding: 7px;
    }
    
    .chapter-62-table .description-column {
        min-width: 320px;
    }
    
    .chapter-62-table .description-cell {
        padding: 7px 10px;
        line-height: 1.5;
    }
    
    .chapter-62-table .main-item-row .description-cell strong {
        margin-bottom: 4px;
    }
    
    .chapter-62-table .data-cell {
        padding-right: 10px;
    }
    
    .chapter-62-table .code-column {
        width: 70px;
    }
    
    .chapter-62-table .code-cell {
        width: 70px;
    }
}

@media (max-width: 768px) {
    .table-page[data-page="4"] {
        padding-top: 30px;
    }
    
    .table-page[data-page="4"] .table-page-title {
        font-size: 26px;
    }

    .chapter-62-table {
        min-width: 800px;
    }
    
    .chapter-62-table thead th {
        padding: 8px 6px;
    }
    
    .chapter-62-table tbody td {
        padding: 6px;
    }
    
    .chapter-62-table .description-column {
        min-width: 300px;
    }
    
    .chapter-62-table .description-cell {
        padding: 6px 8px;
        line-height: 1.4;
    }
    
    .chapter-62-table .main-item-row .description-cell strong {
        margin-bottom: 3px;
    }
    
    .chapter-62-table .data-cell {
        padding-right: 8px;
    }
    
    .chapter-62-table .code-column {
        width: 65px;
    }
    
    .chapter-62-table .code-cell {
        width: 65px;
    }
}

@media (max-width: 576px) {
    .table-page[data-page="4"] .table-page-title {
        font-size: 22px;
    }
    
    .chapter-62-table {
        min-width: 750px;
    }
    
    .chapter-62-table thead th {
        padding: 7px 5px;
        line-height: 1.2;
    }
    
    .chapter-62-table tbody td {
        padding: 5px;
    }
    
    .chapter-62-table .description-column {
        min-width: 280px;
    }
    
    .chapter-62-table .description-cell {
        padding: 5px 7px;
        line-height: 1.4;
    }
    
    .chapter-62-table .main-item-row .description-cell strong {
        margin-bottom: 2px;
    }
    
    .chapter-62-table .data-cell {
        padding-right: 7px;
    }
    
    .chapter-62-table .code-column {
        width: 60px;
    }
    
    .chapter-62-table .code-cell {
        width: 60px;
    }
}

@media (max-width: 480px) {
    .chapter-62-table {
        min-width: 700px;
    }
    
    .chapter-62-table thead th {
        padding: 6px 4px;
        line-height: 1.2;
    }
    
    .chapter-62-table tbody td {
        padding: 4px;
    }
    
    .chapter-62-table .description-column {
        min-width: 260px;
    }
    
    .chapter-62-table .description-cell {
        padding: 4px 6px;
        line-height: 1.3;
    }
    
    .chapter-62-table .data-cell {
        padding-right: 6px;
    }
    
    .chapter-62-table .code-column {
        width: 55px;
    }
    
    .chapter-62-table .code-cell {
        width: 55px;
    }
}

@media (max-width: 320px) {
    .chapter-62-table {
        min-width: 650px;
    }
    
    .chapter-62-table thead th {
        padding: 5px 3px;
    }
    
    .chapter-62-table tbody td {
        padding: 3px;
    }
    
    .chapter-62-table .description-column {
        min-width: 240px;
    }
    
    .chapter-62-table .description-cell {
        padding: 3px 5px;
        line-height: 1.3;
    }
    
    .chapter-62-table .data-cell {
        padding-right: 5px;
    }
    
    .chapter-62-table .code-column {
        width: 50px;
    }
    
    .chapter-62-table .code-cell {
        width: 50px;
    }
}



/* ============================================
   TABLE 5: EXPORT STATISTICS - CHAPTER 63
   ============================================ */
.chapter-63-table {
    width: 100%;
    border-collapse: collapse;
    background: #FFFFFF;
    font-family: 'Plus Jakarta Sans', sans-serif;
    border: 1px solid #E5E7EB;
}

.chapter-63-table thead th {
    padding: 12px 10px;
    text-align: center;
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    font-weight: 600;
    line-height: 1.3;
    border: 1px solid #374151;
    background: #010812;
    color: #FFFFFF;
    vertical-align: middle;
}

.chapter-63-table .code-column {
    width: 80px;
    text-align: center;
}

.chapter-63-table .description-column {
    min-width: 400px;
    text-align: left;
}

.chapter-63-table .year-header {
    font-weight: 700;
    font-size: 15px;
}

.chapter-63-table .data-header {
    font-weight: 600;
    font-size: 13px;
}

.chapter-63-table tbody td {
    padding: 10px;
    font-size: 13px;
    font-weight: 400;
    color: #010812;
    border: 1px solid #D1D5DB;
    vertical-align: top;
}

.chapter-63-table .code-cell {
    text-align: center;
    font-weight: 600;
    width: 80px;
}

.chapter-63-table .description-cell {
    text-align: left;
    line-height: 1.6;
    padding: 10px 15px;
}

.chapter-63-table .main-item-row .description-cell strong {
    font-weight: 600;
    display: block;
    margin-bottom: 5px;
}

.chapter-63-table .data-cell {
    text-align: right;
    padding-right: 15px;
}

.chapter-63-table .sub-item-row .description-cell {
    border-top: none;
    padding-top: 0;
}

.chapter-63-table .total-row {
    background: #010812;
    color: #FFFFFF;
}

.chapter-63-table .total-row td {
    color: #FFFFFF;
    font-weight: 700;
    border-color: #374151;
}

.chapter-63-table tbody tr:not(.sub-item-row):not(.total-row):hover {
    background: #F3F4F6;
}

@media (max-width: 1400px) {
    /* Table header text */
    .table-page[data-page="5"] .table-page-title {
        font-size: 38px;
    }
    
    .table-page[data-page="5"] .table-source {
        font-size: 12px;
    }
    
    /* Table styles */
    .chapter-63-table thead th {
        padding: 11px 9px;
    }
    
    .chapter-63-table .description-column {
        min-width: 380px;
    }
    
    .chapter-63-table tbody td {
        padding: 9px;
    }
    
    .chapter-63-table .description-cell {
        padding: 9px 13px;
    }
    
    .chapter-63-table .data-cell {
        padding-right: 13px;
    }
}

@media (max-width: 1200px) {
    /* Table header text */
    .table-page[data-page="5"] .table-page-title {
        font-size: 34px;
    }
    
    .table-page[data-page="5"] .table-source {
        font-size: 12px;
    }
    
    /* Table styles */
    .chapter-63-table thead th {
        padding: 10px 8px;
    }
    
    .chapter-63-table tbody td {
        padding: 8px;
    }
    
    .chapter-63-table .description-column {
        min-width: 350px;
    }
    
    .chapter-63-table .description-cell {
        padding: 8px 12px;
        line-height: 1.5;
    }
    
    .chapter-63-table .data-cell {
        padding-right: 12px;
    }
    
    .chapter-63-table .code-column {
        width: 75px;
    }
    
    .chapter-63-table .code-cell {
        width: 75px;
    }
}

@media (max-width: 991px) {
    .table-page[data-page="5"] {
        padding-top: 25px;
    }
    
    /* Table header text */
    .table-page[data-page="5"] .table-page-title {
        font-size: 30px;
    }
    
    /* Table styles */
    .chapter-63-table {
        min-width: 850px;
    }
    
    .chapter-63-table thead th {
        padding: 9px 7px;
    }
    
    .chapter-63-table tbody td {
        padding: 7px;
    }
    
    .chapter-63-table .description-column {
        min-width: 320px;
    }
    
    .chapter-63-table .description-cell {
        padding: 7px 10px;
        line-height: 1.5;
    }
    
    .chapter-63-table .main-item-row .description-cell strong {
        margin-bottom: 4px;
    }
    
    .chapter-63-table .data-cell {
        padding-right: 10px;
    }
    
    .chapter-63-table .code-column {
        width: 70px;
    }
    
    .chapter-63-table .code-cell {
        width: 70px;
    }
}

@media (max-width: 768px) {
    .table-page[data-page="5"] {
        padding-top: 30px;
    }
    
    /* Table header text */
    .table-page[data-page="5"] .table-page-title {
        font-size: 26px;
    }
    
    /* Table styles */
    .chapter-63-table {
        min-width: 800px;
    }
    
    .chapter-63-table thead th {
        padding: 8px 6px;
    }
    
    .chapter-63-table tbody td {
        padding: 6px;
    }
    
    .chapter-63-table .description-column {
        min-width: 300px;
    }
    
    .chapter-63-table .description-cell {
        padding: 6px 8px;
        line-height: 1.4;
    }
    
    .chapter-63-table .main-item-row .description-cell strong {
        margin-bottom: 3px;
    }
    
    .chapter-63-table .data-cell {
        padding-right: 8px;
    }
    
    .chapter-63-table .code-column {
        width: 65px;
    }
    
    .chapter-63-table .code-cell {
        width: 65px;
    }
}

@media (max-width: 576px) {
    .table-page[data-page="5"] {
        padding-top: 35px;
    }
    
    /* Table header text */
    .table-page[data-page="5"] .table-page-title {
        font-size: 22px;
    }

    /* Table styles */
    .chapter-63-table {
        min-width: 750px;
    }
    
    .chapter-63-table thead th {
        padding: 7px 5px;
        line-height: 1.2;
    }
    
    .chapter-63-table tbody td {
        padding: 5px;
    }
    
    .chapter-63-table .description-column {
        min-width: 280px;
    }
    
    .chapter-63-table .description-cell {
        padding: 5px 7px;
        line-height: 1.4;
    }
    
    .chapter-63-table .main-item-row .description-cell strong {
        margin-bottom: 2px;
    }
    
    .chapter-63-table .data-cell {
        padding-right: 7px;
    }
    
    .chapter-63-table .code-column {
        width: 60px;
    }
    
    .chapter-63-table .code-cell {
        width: 60px;
    }
}

@media (max-width: 480px) {
    .table-page[data-page="5"] {
        padding-top: 40px;
    }
    
    /* Table styles */
    .chapter-63-table {
        min-width: 700px;
    }
    
    .chapter-63-table thead th {
        padding: 6px 4px;
        line-height: 1.2;
    }
    
    .chapter-63-table tbody td {
        padding: 4px;
    }
    
    .chapter-63-table .description-column {
        min-width: 260px;
    }
    
    .chapter-63-table .description-cell {
        padding: 4px 6px;
        line-height: 1.3;
    }
    
    .chapter-63-table .data-cell {
        padding-right: 6px;
    }
    
    .chapter-63-table .code-column {
        width: 55px;
    }
    
    .chapter-63-table .code-cell {
        width: 55px;
    }
}

@media (max-width: 320px) {
    .table-page[data-page="5"] {
        padding-top: 40px;
    }
    
    /* Table styles */
    .chapter-63-table {
        min-width: 650px;
    }
    
    .chapter-63-table thead th {
        padding: 5px 3px;
    }
    
    .chapter-63-table tbody td {
        padding: 3px;
    }
    
    .chapter-63-table .description-column {
        min-width: 240px;
    }
    
    .chapter-63-table .description-cell {
        padding: 3px 5px;
        line-height: 1.3;
    }
    
    .chapter-63-table .data-cell {
        padding-right: 5px;
    }
    
    .chapter-63-table .code-column {
        width: 50px;
    }
    
    .chapter-63-table .code-cell {
        width: 50px;
    }
}





/* ============================================
   TABLE 6: GLOBAL EXPORT OF APPAREL
   ============================================ */

.global-export-table {
    width: 100%;
    border-collapse: collapse;
    font-family: 'Plus Jakarta Sans', sans-serif;
    background: #FFFFFF;
    border: 1px solid #E5E7EB;
}

.global-export-table thead {
    background: #010812;
    color: #FFFFFF;
}

.global-export-table thead th {
    padding: 18px 15px;
    text-align: center;
    font-family: 'Inter', sans-serif;
    font-size: 15px;
    font-weight: 600;
    line-height: 1.4;
    border: 1px solid #374151;
}

.global-export-table .country-column {
    text-align: left;
    min-width: 300px;
}

.global-export-table .year-column {
    width: 120px;
    font-weight: 700;
}

.global-export-table tbody td {
    padding: 14px 15px;
    font-size: 15px;
    font-weight: 400;
    color: #010812;
    border: 1px solid #E5E7EB;
}

.global-export-table .country-name {
    text-align: left;
    font-weight: 500;
}

.global-export-table .value-cell {
    text-align: right;
    font-weight: 400;
}

.global-export-table tbody tr:hover {
    background: #F3F4F6;
}

.global-export-table tbody tr:nth-child(odd) {
    background: #F9FAFB;
}

.global-export-table tbody tr:nth-child(odd):hover {
    background: #F3F4F6;
}


/* ============================================
   TABLE 7: ADDITIONAL EXPORT DESTINATIONS
   ============================================ */

.additional-export-table {
    width: 100%;
    border-collapse: collapse;
    font-family: 'Plus Jakarta Sans', sans-serif;
    background: #FFFFFF;
    border: 1px solid #E5E7EB;
}

.additional-export-table thead {
    background: #010812;
    color: #FFFFFF;
}

.additional-export-table thead th {
    padding: 18px 15px;
    text-align: center;
    font-family: 'Inter', sans-serif;
    font-size: 15px;
    font-weight: 600;
    line-height: 1.4;
    border: 1px solid #374151;
}

.additional-export-table .country-column {
    text-align: left;
    min-width: 300px;
}

.additional-export-table .year-column {
    width: 120px;
    font-weight: 700;
}

.additional-export-table tbody td {
    padding: 14px 15px;
    font-size: 15px;
    font-weight: 400;
    color: #010812;
    border: 1px solid #E5E7EB;
}

.additional-export-table .country-name {
    text-align: left;
    font-weight: 500;
}

.additional-export-table .value-cell {
    text-align: right;
    font-weight: 400;
}

.additional-export-table tbody tr:hover {
    background: #F3F4F6;
}

.additional-export-table tbody tr:nth-child(odd) {
    background: #F9FAFB;
}

.additional-export-table tbody tr:nth-child(odd):hover {
    background: #F3F4F6;
}

.additional-export-table .total-row {
    background: #010812;
    color: #FFFFFF;
    font-weight: 700;
    border-top: 3px solid #010812;
}

.additional-export-table .total-row td {
    color: #FFFFFF;
    font-weight: 700;
    padding: 18px 15px;
    border-color: #374151;
}

.additional-export-table .total-row:hover {
    background: #010812;
}



/* ============================================
   TABLE 8: EU IMPORTS - CHAPTER 61
   ============================================ */

.eu-import-table {
    width: 100%;
    border-collapse: collapse;
    font-family: 'Plus Jakarta Sans', sans-serif;
    background: #FFFFFF;
    border: 1px solid #E5E7EB;
}

.eu-import-table thead {
    background: #D1D5DB;
    color: #010812;
}

.eu-import-table thead th {
    padding: 14px 12px;
    text-align: center;
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    font-weight: 700;
    line-height: 1.4;
    border: 1px solid #9CA3AF;
    vertical-align: middle;
}

.eu-import-table .country-column {
    text-align: left;
    min-width: 200px;
    background: #D1D5DB;
}

.eu-import-table .year-header {
    font-weight: 700;
    font-size: 14px;
    background: #D1D5DB;
}

.eu-import-table .year-subheader {
    font-weight: 600;
    font-size: 13px;
    background: #E5E7EB;
    width: 130px;
}

.eu-import-table tbody td {
    padding: 12px;
    font-size: 14px;
    font-weight: 400;
    color: #010812;
    border: 1px solid #D1D5DB;
}

.eu-import-table .country-name {
    text-align: left;
    font-weight: 500;
    padding-left: 15px;
}

.eu-import-table .value-cell {
    text-align: right;
    font-weight: 400;
    padding-right: 15px;
}

.eu-import-table tbody tr:hover {
    background: #F3F4F6;
}

.eu-import-table tbody tr:nth-child(odd):not(.total-row) {
    background: #F9FAFB;
}

.eu-import-table tbody tr:nth-child(odd):not(.total-row):hover {
    background: #F3F4F6;
}

.eu-import-table .total-row {
    background: #D1D5DB;
    border-top: 3px solid #9CA3AF;
}

.eu-import-table .total-row td {
    color: #010812;
    font-weight: 700;
    padding: 16px 15px;
    border-color: #9CA3AF;
}

.eu-import-table .total-row:hover {
    background: #D1D5DB;
}


/* ============================================
   TABLE 9: EU IMPORTS CH61 - WITH TITLE HEADER
   ============================================ */
.eu-import-ch61-table {
    width: 100%;
    border-collapse: collapse;
    font-family: 'Plus Jakarta Sans', sans-serif;
    background: #FFFFFF;
    border: 2px solid #000000;
}

.eu-import-ch61-table .table-main-title {
    background: #FFFFFF;
    color: #000000;
    font-family: 'Inter', sans-serif;
    font-size: 18px;
    font-weight: 700;
    padding: 15px;
    text-align: center;
    border-bottom: 2px solid #000000;
    letter-spacing: 0.5px;
}

.eu-import-ch61-table thead th {
    padding: 12px 10px;
    text-align: center;
    font-family: 'Inter', sans-serif;
    font-size: 13px;
    font-weight: 600;
    line-height: 1.3;
    border: 1px solid #000000;
    background: #FFFFFF;
    color: #000000;
    vertical-align: middle;
}

.eu-import-ch61-table .chapter-label {
    background: #FFFFFF;
    color: #000000;
    font-weight: 700;
    text-align: left;
    padding-left: 15px;
    width: 120px;
}

.eu-import-ch61-table .year-group-header {
    font-weight: 700;
    font-size: 13px;
    background: #FFFFFF;
}

.eu-import-ch61-table .year-subheader {
    font-weight: 600;
    font-size: 12px;
    background: #FFFFFF;
    width: 150px;
}

.eu-import-ch61-table .country-header-row th {
    background: #FFFFFF;
    font-weight: 700;
    border-top: 2px solid #000000;
}

.eu-import-ch61-table .country-header-cell {
    text-align: left;
    padding-left: 15px;
}

.eu-import-ch61-table .data-header-cell {
    text-align: center;
}

.eu-import-ch61-table tbody td {
    padding: 10px 12px;
    font-size: 13px;
    font-weight: 400;
    color: #000000;
    border: 1px solid #000000;
}

.eu-import-ch61-table .country-name {
    text-align: left;
    font-weight: 500;
    padding-left: 15px;
}

.eu-import-ch61-table .value-cell {
    text-align: right;
    font-weight: 400;
    padding-right: 15px;
}

.eu-import-ch61-table tbody tr:hover:not(.total-row) {
    background: #F3F4F6;
}

.eu-import-ch61-table .total-row {
    background: #FFFFFF;
    border-top: 2px solid #000000;
}

.eu-import-ch61-table .total-row td {
    font-weight: 700;
    padding: 12px 15px;
}

.eu-import-ch61-table .source-footer {
    text-align: right;
    font-size: 12px;
    font-style: italic;
    padding: 10px 15px;
    border-top: 2px solid #000000;
    background: #FFFFFF;
}

@media (max-width: 1400px) {
    .eu-import-ch61-table thead th {
        padding: 11px 9px;
    }
    
    .eu-import-ch61-table .table-main-title {
        padding: 14px;
    }
    
    .eu-import-ch61-table .chapter-label {
        width: 115px;
        padding-left: 13px;
    }
    
    .eu-import-ch61-table .year-subheader {
        width: 140px;
    }
    
    .eu-import-ch61-table tbody td {
        padding: 9px 11px;
    }
    
    .eu-import-ch61-table .country-name {
        padding-left: 13px;
    }
    
    .eu-import-ch61-table .value-cell {
        padding-right: 13px;
    }
    
    .eu-import-ch61-table .total-row td {
        padding: 11px 13px;
    }
}

@media (max-width: 1200px) {
    .eu-import-ch61-table thead th {
        padding: 10px 8px;
    }
    
    .eu-import-ch61-table .table-main-title {
        padding: 13px;
    }
    
    .eu-import-ch61-table .chapter-label {
        width: 110px;
        padding-left: 12px;
    }
    
    .eu-import-ch61-table .year-subheader {
        width: 130px;
    }
    
    .eu-import-ch61-table tbody td {
        padding: 8px 10px;
    }
    
    .eu-import-ch61-table .country-name {
        padding-left: 12px;
    }
    
    .eu-import-ch61-table .value-cell {
        padding-right: 12px;
    }
    
    .eu-import-ch61-table .total-row td {
        padding: 10px 12px;
    }
}

@media (max-width: 991px) {
    .table-page[data-page="9"] {
        padding-top: 25px;
    }
    
    .eu-import-ch61-table {
        min-width: 900px;
    }
    
    .eu-import-ch61-table thead th {
        padding: 9px 7px;
    }
    
    .eu-import-ch61-table .table-main-title {
        padding: 12px;
    }
    
    .eu-import-ch61-table .chapter-label {
        width: 100px;
        padding-left: 10px;
    }
    
    .eu-import-ch61-table .year-subheader {
        width: 120px;
    }
    
    .eu-import-ch61-table .country-header-cell {
        padding-left: 10px;
    }
    
    .eu-import-ch61-table tbody td {
        padding: 7px 8px;
    }
    
    .eu-import-ch61-table .country-name {
        padding-left: 10px;
    }
    
    .eu-import-ch61-table .value-cell {
        padding-right: 10px;
    }
    
    .eu-import-ch61-table .total-row td {
        padding: 9px 10px;
    }
    
    .eu-import-ch61-table .source-footer {
        padding: 8px 10px;
    }
}

@media (max-width: 768px) {
    .table-page[data-page="9"] {
        padding-top: 30px;
    }
    
    .eu-import-ch61-table {
        min-width: 850px;
    }
    
    .eu-import-ch61-table thead th {
        padding: 8px 6px;
    }
    
    .eu-import-ch61-table .table-main-title {
        padding: 11px;
    }
    
    .eu-import-ch61-table .chapter-label {
        width: 95px;
        padding-left: 9px;
    }
    
    .eu-import-ch61-table .year-subheader {
        width: 110px;
    }
    
    .eu-import-ch61-table .country-header-cell {
        padding-left: 9px;
    }
    
    .eu-import-ch61-table tbody td {
        padding: 6px 7px;
    }
    
    .eu-import-ch61-table .country-name {
        padding-left: 9px;
    }
    
    .eu-import-ch61-table .value-cell {
        padding-right: 9px;
    }
    
    .eu-import-ch61-table .total-row td {
        padding: 8px 9px;
    }
    
    .eu-import-ch61-table .source-footer {
        padding: 7px 9px;
    }
}

@media (max-width: 576px) {
    .table-page[data-page="9"] {
        padding-top: 35px;
    }
    
    .eu-import-ch61-table {
        min-width: 800px;
    }
    
    .eu-import-ch61-table thead th {
        padding: 7px 5px;
        line-height: 1.2;
    }
    
    .eu-import-ch61-table .table-main-title {
        padding: 10px;
    }
    
    .eu-import-ch61-table .chapter-label {
        width: 90px;
        padding-left: 8px;
    }
    
    .eu-import-ch61-table .year-subheader {
        width: 100px;
    }
    
    .eu-import-ch61-table .country-header-cell {
        padding-left: 8px;
    }
    
    .eu-import-ch61-table tbody td {
        padding: 5px 6px;
    }
    
    .eu-import-ch61-table .country-name {
        padding-left: 8px;
    }
    
    .eu-import-ch61-table .value-cell {
        padding-right: 8px;
    }
    
    .eu-import-ch61-table .total-row td {
        padding: 7px 8px;
    }
    
    .eu-import-ch61-table .source-footer {
        padding: 6px 8px;
    }
}

@media (max-width: 480px) {
    .table-page[data-page="9"] {
        padding-top: 40px;
    }
    
    .eu-import-ch61-table {
        min-width: 750px;
    }
    
    .eu-import-ch61-table thead th {
        padding: 6px 4px;
        line-height: 1.2;
    }
    
    .eu-import-ch61-table .table-main-title {
        padding: 9px;
    }
    
    .eu-import-ch61-table .chapter-label {
        width: 85px;
        padding-left: 7px;
    }
    
    .eu-import-ch61-table .year-subheader {
        width: 95px;
    }
    
    .eu-import-ch61-table .country-header-cell {
        padding-left: 7px;
    }
    
    .eu-import-ch61-table tbody td {
        padding: 4px 5px;
    }
    
    .eu-import-ch61-table .country-name {
        padding-left: 7px;
    }
    
    .eu-import-ch61-table .value-cell {
        padding-right: 7px;
    }
    
    .eu-import-ch61-table .total-row td {
        padding: 6px 7px;
    }
    
    .eu-import-ch61-table .source-footer {
        padding: 5px 7px;
    }
}

@media (max-width: 320px) {
    .table-page[data-page="9"] {
        padding-top: 40px;
    }
    
    .eu-import-ch61-table {
        min-width: 700px;
    }
    
    .eu-import-ch61-table thead th {
        padding: 5px 3px;
    }
    
    .eu-import-ch61-table .table-main-title {
        padding: 8px;
    }
    
    .eu-import-ch61-table .chapter-label {
        width: 80px;
        padding-left: 6px;
    }
    
    .eu-import-ch61-table .year-subheader {
        width: 90px;
    }
    
    .eu-import-ch61-table .country-header-cell {
        padding-left: 6px;
    }
    
    .eu-import-ch61-table tbody td {
        padding: 3px 4px;
    }
    
    .eu-import-ch61-table .country-name {
        padding-left: 6px;
    }
    
    .eu-import-ch61-table .value-cell {
        padding-right: 6px;
    }
    
    .eu-import-ch61-table .total-row td {
        padding: 5px 6px;
    }
    
    .eu-import-ch61-table .source-footer {
        padding: 4px 6px;
    }
}



/* ============================================
   TABLE 10: EU IMPORTS CH62 - WITH TITLE HEADER
   ============================================ */
.eu-import-ch62-table {
    width: 100%;
    border-collapse: collapse;
    font-family: 'Plus Jakarta Sans', sans-serif;
    background: #FFFFFF;
    border: 2px solid #000000;
}

.eu-import-ch62-table .table-main-title {
    background: #D1D5DB;
    color: #000000;
    font-family: 'Inter', sans-serif;
    font-size: 18px;
    font-weight: 700;
    padding: 15px;
    text-align: center;
    border-bottom: 2px solid #000000;
    letter-spacing: 0.5px;
}

.eu-import-ch62-table thead th {
    padding: 12px 10px;
    text-align: center;
    font-family: 'Inter', sans-serif;
    font-size: 13px;
    font-weight: 600;
    line-height: 1.3;
    border: 1px solid #000000;
    background: #FFFFFF;
    color: #000000;
    vertical-align: middle;
}

.eu-import-ch62-table .chapter-label {
    background: #FFFFFF;
    color: #000000;
    font-weight: 700;
    text-align: left;
    padding-left: 15px;
    width: 120px;
}

.eu-import-ch62-table .year-group-header {
    font-weight: 700;
    font-size: 13px;
    background: #FFFFFF;
}

.eu-import-ch62-table .year-subheader {
    font-weight: 600;
    font-size: 12px;
    background: #FFFFFF;
    width: 150px;
}

.eu-import-ch62-table .country-header-row th {
    background: #FFFFFF;
    font-weight: 700;
    border-top: 2px solid #000000;
}

.eu-import-ch62-table .country-header-cell {
    text-align: left;
    padding-left: 15px;
}

.eu-import-ch62-table .data-header-cell {
    text-align: center;
}

.eu-import-ch62-table tbody td {
    padding: 10px 12px;
    font-size: 13px;
    font-weight: 400;
    color: #000000;
    border: 1px solid #000000;
}

.eu-import-ch62-table .country-name {
    text-align: left;
    font-weight: 500;
    padding-left: 15px;
}

.eu-import-ch62-table .value-cell {
    text-align: right;
    font-weight: 400;
    padding-right: 15px;
}

.eu-import-ch62-table tbody tr:hover:not(.total-row) {
    background: #F3F4F6;
}

.eu-import-ch62-table .total-row {
    background: #FFFFFF;
    border-top: 2px solid #000000;
}

.eu-import-ch62-table .total-row td {
    font-weight: 700;
    padding: 12px 15px;
}

.eu-import-ch62-table .source-footer {
    text-align: right;
    font-size: 12px;
    font-style: italic;
    padding: 10px 15px;
    border-top: 2px solid #000000;
    background: #FFFFFF;
}

@media (max-width: 1400px) {
    .eu-import-ch62-table thead th {
        padding: 11px 9px;
    }
    
    .eu-import-ch62-table .table-main-title {
        padding: 14px;
    }
    
    .eu-import-ch62-table .chapter-label {
        width: 115px;
        padding-left: 13px;
    }
    
    .eu-import-ch62-table .year-subheader {
        width: 140px;
    }
    
    .eu-import-ch62-table tbody td {
        padding: 9px 11px;
    }
    
    .eu-import-ch62-table .country-name {
        padding-left: 13px;
    }
    
    .eu-import-ch62-table .value-cell {
        padding-right: 13px;
    }
    
    .eu-import-ch62-table .total-row td {
        padding: 11px 13px;
    }
}

@media (max-width: 1200px) {
    .eu-import-ch62-table thead th {
        padding: 10px 8px;
    }
    
    .eu-import-ch62-table .table-main-title {
        padding: 13px;
    }
    
    .eu-import-ch62-table .chapter-label {
        width: 110px;
        padding-left: 12px;
    }
    
    .eu-import-ch62-table .year-subheader {
        width: 130px;
    }
    
    .eu-import-ch62-table tbody td {
        padding: 8px 10px;
    }
    
    .eu-import-ch62-table .country-name {
        padding-left: 12px;
    }
    
    .eu-import-ch62-table .value-cell {
        padding-right: 12px;
    }
    
    .eu-import-ch62-table .total-row td {
        padding: 10px 12px;
    }
}

@media (max-width: 991px) {
    .table-page[data-page="10"] {
        padding-top: 25px;
    }
    
    .eu-import-ch62-table {
        min-width: 900px;
    }
    
    .eu-import-ch62-table thead th {
        padding: 9px 7px;
    }
    
    .eu-import-ch62-table .table-main-title {
        padding: 12px;
    }
    
    .eu-import-ch62-table .chapter-label {
        width: 100px;
        padding-left: 10px;
    }
    
    .eu-import-ch62-table .year-subheader {
        width: 120px;
    }
    
    .eu-import-ch62-table .country-header-cell {
        padding-left: 10px;
    }
    
    .eu-import-ch62-table tbody td {
        padding: 7px 8px;
    }
    
    .eu-import-ch62-table .country-name {
        padding-left: 10px;
    }
    
    .eu-import-ch62-table .value-cell {
        padding-right: 10px;
    }
    
    .eu-import-ch62-table .total-row td {
        padding: 9px 10px;
    }
    
    .eu-import-ch62-table .source-footer {
        padding: 8px 10px;
    }
}

@media (max-width: 768px) {
    .table-page[data-page="10"] {
        padding-top: 30px;
    }
    
    .eu-import-ch62-table {
        min-width: 850px;
    }
    
    .eu-import-ch62-table thead th {
        padding: 8px 6px;
    }
    
    .eu-import-ch62-table .table-main-title {
        padding: 11px;
    }
    
    .eu-import-ch62-table .chapter-label {
        width: 95px;
        padding-left: 9px;
    }
    
    .eu-import-ch62-table .year-subheader {
        width: 110px;
    }
    
    .eu-import-ch62-table .country-header-cell {
        padding-left: 9px;
    }
    
    .eu-import-ch62-table tbody td {
        padding: 6px 7px;
    }
    
    .eu-import-ch62-table .country-name {
        padding-left: 9px;
    }
    
    .eu-import-ch62-table .value-cell {
        padding-right: 9px;
    }
    
    .eu-import-ch62-table .total-row td {
        padding: 8px 9px;
    }
    
    .eu-import-ch62-table .source-footer {
        padding: 7px 9px;
    }
}

@media (max-width: 576px) {
    .table-page[data-page="10"] {
        padding-top: 35px;
    }
    
    .eu-import-ch62-table {
        min-width: 800px;
    }
    
    .eu-import-ch62-table thead th {
        padding: 7px 5px;
        line-height: 1.2;
    }
    
    .eu-import-ch62-table .table-main-title {
        padding: 10px;
    }
    
    .eu-import-ch62-table .chapter-label {
        width: 90px;
        padding-left: 8px;
    }
    
    .eu-import-ch62-table .year-subheader {
        width: 100px;
    }
    
    .eu-import-ch62-table .country-header-cell {
        padding-left: 8px;
    }
    
    .eu-import-ch62-table tbody td {
        padding: 5px 6px;
    }
    
    .eu-import-ch62-table .country-name {
        padding-left: 8px;
    }
    
    .eu-import-ch62-table .value-cell {
        padding-right: 8px;
    }
    
    .eu-import-ch62-table .total-row td {
        padding: 7px 8px;
    }
    
    .eu-import-ch62-table .source-footer {
        padding: 6px 8px;
    }
}

@media (max-width: 480px) {
    .table-page[data-page="10"] {
        padding-top: 40px;
    }
    
    .eu-import-ch62-table {
        min-width: 750px;
    }
    
    .eu-import-ch62-table thead th {
        padding: 6px 4px;
        line-height: 1.2;
    }
    
    .eu-import-ch62-table .table-main-title {
        padding: 9px;
    }
    
    .eu-import-ch62-table .chapter-label {
        width: 85px;
        padding-left: 7px;
    }
    
    .eu-import-ch62-table .year-subheader {
        width: 95px;
    }
    
    .eu-import-ch62-table .country-header-cell {
        padding-left: 7px;
    }
    
    .eu-import-ch62-table tbody td {
        padding: 4px 5px;
    }
    
    .eu-import-ch62-table .country-name {
        padding-left: 7px;
    }
    
    .eu-import-ch62-table .value-cell {
        padding-right: 7px;
    }
    
    .eu-import-ch62-table .total-row td {
        padding: 6px 7px;
    }
    
    .eu-import-ch62-table .source-footer {
        padding: 5px 7px;
    }
}

@media (max-width: 320px) {
    .table-page[data-page="10"] {
        padding-top: 40px;
    }
    
    .eu-import-ch62-table {
        min-width: 700px;
    }
    
    .eu-import-ch62-table thead th {
        padding: 5px 3px;
    }
    
    .eu-import-ch62-table .table-main-title {
        padding: 8px;
    }
    
    .eu-import-ch62-table .chapter-label {
        width: 80px;
        padding-left: 6px;
    }
    
    .eu-import-ch62-table .year-subheader {
        width: 90px;
    }
    
    .eu-import-ch62-table .country-header-cell {
        padding-left: 6px;
    }
    
    .eu-import-ch62-table tbody td {
        padding: 3px 4px;
    }
    
    .eu-import-ch62-table .country-name {
        padding-left: 6px;
    }
    
    .eu-import-ch62-table .value-cell {
        padding-right: 6px;
    }
    
    .eu-import-ch62-table .total-row td {
        padding: 5px 6px;
    }
    
    .eu-import-ch62-table .source-footer {
        padding: 4px 6px;
    }
}



/* ============================================
   TABLE 11: EU IMPORTS CH63 - WITH TITLE HEADER
   ============================================ */
.eu-import-ch63-table {
    width: 100%;
    border-collapse: collapse;
    font-family: 'Plus Jakarta Sans', sans-serif;
    background: #FFFFFF;
    border: 2px solid #000000;
}

.eu-import-ch63-table .table-main-title {
    background: #D1D5DB;
    color: #000000;
    font-family: 'Inter', sans-serif;
    font-size: 18px;
    font-weight: 700;
    padding: 15px;
    text-align: center;
    border-bottom: 2px solid #000000;
    letter-spacing: 0.5px;
}

.eu-import-ch63-table thead th {
    padding: 12px 10px;
    text-align: center;
    font-family: 'Inter', sans-serif;
    font-size: 13px;
    font-weight: 600;
    line-height: 1.3;
    border: 1px solid #000000;
    background: #FFFFFF;
    color: #000000;
    vertical-align: middle;
}

.eu-import-ch63-table .chapter-label {
    background: #FFFFFF;
    color: #000000;
    font-weight: 700;
    text-align: left;
    padding-left: 15px;
    width: 120px;
}

.eu-import-ch63-table .year-group-header {
    font-weight: 700;
    font-size: 13px;
    background: #FFFFFF;
}

.eu-import-ch63-table .year-subheader {
    font-weight: 600;
    font-size: 12px;
    background: #FFFFFF;
    width: 150px;
}

.eu-import-ch63-table .country-header-row th {
    background: #FFFFFF;
    font-weight: 700;
    border-top: 2px solid #000000;
}

.eu-import-ch63-table .country-header-cell {
    text-align: left;
    padding-left: 15px;
}

.eu-import-ch63-table .data-header-cell {
    text-align: center;
}

.eu-import-ch63-table tbody td {
    padding: 10px 12px;
    font-size: 13px;
    font-weight: 400;
    color: #000000;
    border: 1px solid #000000;
}

.eu-import-ch63-table .country-name {
    text-align: left;
    font-weight: 500;
    padding-left: 15px;
}

.eu-import-ch63-table .value-cell {
    text-align: right;
    font-weight: 400;
    padding-right: 15px;
}

.eu-import-ch63-table tbody tr:hover:not(.total-row) {
    background: #F3F4F6;
}

.eu-import-ch63-table .total-row {
    background: #FFFFFF;
    border-top: 2px solid #000000;
}

.eu-import-ch63-table .total-row td {
    font-weight: 700;
    padding: 12px 15px;
}

.eu-import-ch63-table .source-footer {
    text-align: right;
    font-size: 12px;
    font-style: italic;
    padding: 10px 15px;
    border-top: 2px solid #000000;
    background: #FFFFFF;
}

@media (max-width: 1400px) {
    .eu-import-ch63-table thead th {
        padding: 11px 9px;
    }
    
    .eu-import-ch63-table .table-main-title {
        padding: 14px;
    }
    
    .eu-import-ch63-table .chapter-label {
        width: 115px;
        padding-left: 13px;
    }
    
    .eu-import-ch63-table .year-subheader {
        width: 140px;
    }
    
    .eu-import-ch63-table tbody td {
        padding: 9px 11px;
    }
    
    .eu-import-ch63-table .country-name {
        padding-left: 13px;
    }
    
    .eu-import-ch63-table .value-cell {
        padding-right: 13px;
    }
    
    .eu-import-ch63-table .total-row td {
        padding: 11px 13px;
    }
}

@media (max-width: 1200px) {
    .eu-import-ch63-table thead th {
        padding: 10px 8px;
    }
    
    .eu-import-ch63-table .table-main-title {
        padding: 13px;
    }
    
    .eu-import-ch63-table .chapter-label {
        width: 110px;
        padding-left: 12px;
    }
    
    .eu-import-ch63-table .year-subheader {
        width: 130px;
    }
    
    .eu-import-ch63-table tbody td {
        padding: 8px 10px;
    }
    
    .eu-import-ch63-table .country-name {
        padding-left: 12px;
    }
    
    .eu-import-ch63-table .value-cell {
        padding-right: 12px;
    }
    
    .eu-import-ch63-table .total-row td {
        padding: 10px 12px;
    }
}

@media (max-width: 991px) {
    .table-page[data-page="11"] {
        padding-top: 25px;
    }
    
    .eu-import-ch63-table {
        min-width: 900px;
    }
    
    .eu-import-ch63-table thead th {
        padding: 9px 7px;
    }
    
    .eu-import-ch63-table .table-main-title {
        padding: 12px;
    }
    
    .eu-import-ch63-table .chapter-label {
        width: 100px;
        padding-left: 10px;
    }
    
    .eu-import-ch63-table .year-subheader {
        width: 120px;
    }
    
    .eu-import-ch63-table .country-header-cell {
        padding-left: 10px;
    }
    
    .eu-import-ch63-table tbody td {
        padding: 7px 8px;
    }
    
    .eu-import-ch63-table .country-name {
        padding-left: 10px;
    }
    
    .eu-import-ch63-table .value-cell {
        padding-right: 10px;
    }
    
    .eu-import-ch63-table .total-row td {
        padding: 9px 10px;
    }
    
    .eu-import-ch63-table .source-footer {
        padding: 8px 10px;
    }
}

@media (max-width: 768px) {
    .table-page[data-page="11"] {
        padding-top: 30px;
    }
    
    .eu-import-ch63-table {
        min-width: 850px;
    }
    
    .eu-import-ch63-table thead th {
        padding: 8px 6px;
    }
    
    .eu-import-ch63-table .table-main-title {
        padding: 11px;
    }
    
    .eu-import-ch63-table .chapter-label {
        width: 95px;
        padding-left: 9px;
    }
    
    .eu-import-ch63-table .year-subheader {
        width: 110px;
    }
    
    .eu-import-ch63-table .country-header-cell {
        padding-left: 9px;
    }
    
    .eu-import-ch63-table tbody td {
        padding: 6px 7px;
    }
    
    .eu-import-ch63-table .country-name {
        padding-left: 9px;
    }
    
    .eu-import-ch63-table .value-cell {
        padding-right: 9px;
    }
    
    .eu-import-ch63-table .total-row td {
        padding: 8px 9px;
    }
    
    .eu-import-ch63-table .source-footer {
        padding: 7px 9px;
    }
}

@media (max-width: 576px) {
    .table-page[data-page="11"] {
        padding-top: 35px;
    }
    
    .eu-import-ch63-table {
        min-width: 800px;
    }
    
    .eu-import-ch63-table thead th {
        padding: 7px 5px;
        line-height: 1.2;
    }
    
    .eu-import-ch63-table .table-main-title {
        padding: 10px;
    }
    
    .eu-import-ch63-table .chapter-label {
        width: 90px;
        padding-left: 8px;
    }
    
    .eu-import-ch63-table .year-subheader {
        width: 100px;
    }
    
    .eu-import-ch63-table .country-header-cell {
        padding-left: 8px;
    }
    
    .eu-import-ch63-table tbody td {
        padding: 5px 6px;
    }
    
    .eu-import-ch63-table .country-name {
        padding-left: 8px;
    }
    
    .eu-import-ch63-table .value-cell {
        padding-right: 8px;
    }
    
    .eu-import-ch63-table .total-row td {
        padding: 7px 8px;
    }
    
    .eu-import-ch63-table .source-footer {
        padding: 6px 8px;
    }
}

@media (max-width: 480px) {
    .table-page[data-page="11"] {
        padding-top: 40px;
    }
    
    .eu-import-ch63-table {
        min-width: 750px;
    }
    
    .eu-import-ch63-table thead th {
        padding: 6px 4px;
        line-height: 1.2;
    }
    
    .eu-import-ch63-table .table-main-title {
        padding: 9px;
    }
    
    .eu-import-ch63-table .chapter-label {
        width: 85px;
        padding-left: 7px;
    }
    
    .eu-import-ch63-table .year-subheader {
        width: 95px;
    }
    
    .eu-import-ch63-table .country-header-cell {
        padding-left: 7px;
    }
    
    .eu-import-ch63-table tbody td {
        padding: 4px 5px;
    }
    
    .eu-import-ch63-table .country-name {
        padding-left: 7px;
    }
    
    .eu-import-ch63-table .value-cell {
        padding-right: 7px;
    }
    
    .eu-import-ch63-table .total-row td {
        padding: 6px 7px;
    }
    
    .eu-import-ch63-table .source-footer {
        padding: 5px 7px;
    }
}

@media (max-width: 320px) {
    .table-page[data-page="11"] {
        padding-top: 40px;
    }
    
    .eu-import-ch63-table {
        min-width: 700px;
    }
    
    .eu-import-ch63-table thead th {
        padding: 5px 3px;
    }
    
    .eu-import-ch63-table .table-main-title {
        padding: 8px;
    }
    
    .eu-import-ch63-table .chapter-label {
        width: 80px;
        padding-left: 6px;
    }
    
    .eu-import-ch63-table .year-subheader {
        width: 90px;
    }
    
    .eu-import-ch63-table .country-header-cell {
        padding-left: 6px;
    }
    
    .eu-import-ch63-table tbody td {
        padding: 3px 4px;
    }
    
    .eu-import-ch63-table .country-name {
        padding-left: 6px;
    }
    
    .eu-import-ch63-table .value-cell {
        padding-right: 6px;
    }
    
    .eu-import-ch63-table .total-row td {
        padding: 5px 6px;
    }
    
    .eu-import-ch63-table .source-footer {
        padding: 4px 6px;
    }
}



/* ============================================
   TABLE 12, TABLE 13, TABLE 14 and TABLE 15
   ============================================ */

.us-import-apparel-table {
    width: 100%;
    border-collapse: collapse;
    font-family: 'Plus Jakarta Sans', sans-serif;
    background: #FFFFFF;
    border: 1px solid #E5E7EB;
}

.us-import-apparel-table thead {
    background: #010812;
    color: #FFFFFF;
}

.us-import-apparel-table thead th {
    padding: 15px 12px;
    text-align: center;
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    font-weight: 600;
    line-height: 1.4;
    border: 1px solid #374151;
}

.us-import-apparel-table .category-column {
    width: 80px;
    text-align: center;
}

.us-import-apparel-table .description-column {
    text-align: left;
    min-width: 300px;
}

.us-import-apparel-table .unit-column {
    width: 60px;
    text-align: center;
}

.us-import-apparel-table .value-column {
    width: 140px;
    font-weight: 700;
}

.us-import-apparel-table tbody td {
    padding: 12px;
    font-size: 13px;
    font-weight: 400;
    color: #010812;
    border: 1px solid #E5E7EB;
}

.us-import-apparel-table .category-cell {
    text-align: center;
    font-weight: 600;
}

.us-import-apparel-table .description-cell {
    text-align: left;
    font-weight: 500;
}

.us-import-apparel-table .unit-cell {
    text-align: center;
    font-weight: 600;
}

.us-import-apparel-table .value-cell {
    text-align: right;
    font-weight: 400;
    padding-right: 15px;
}

.us-import-apparel-table tbody tr:hover {
    background: #F3F4F6;
}

.us-import-apparel-table tbody tr:nth-child(odd) {
    background: #F9FAFB;
}

.us-import-apparel-table tbody tr:nth-child(odd):hover {
    background: #F3F4F6;
}



/* ============================================
   TABLE 16: COMPOSITION OF IMPORTS TO SRI LANKA
   ============================================ */

.imports-composition-table {
    width: 100%;
    border-collapse: collapse;
    font-family: 'Plus Jakarta Sans', sans-serif;
    background: #FFFFFF;
    border: 1px solid #000000;
    font-size: 11px;
}

.imports-composition-table thead {
    background: #FFFFFF;
    color: #000000;
    border: 1px solid #000000;
}

.imports-composition-table thead th {
    padding: 10px 8px;
    text-align: center;
    font-family: 'Inter', sans-serif;
    font-size: 15px;
    font-weight: 700;
    line-height: 1.3;
    border: 1px solid #000000;
    vertical-align: middle;
}

.imports-composition-table .category-col {
    width: 300px;
    text-align: left;
    padding-left: 12px !important;
}

.imports-composition-table .data-col {
    width: 95px;
    text-align: center;
}

.imports-composition-table .change-col {
    width: 75px;
    text-align: center;
}

.imports-composition-table tbody td {
    padding: 6px 8px;
    font-size: 15px;
    font-weight: 400;
    color: #000000;
    border: 1px solid #000000;
}

.imports-composition-table .main-category {
    background: #F3F4F6;
}

.imports-composition-table .main-category .category-name {
    font-weight: 700;
    padding-left: 12px;
}

.imports-composition-table .sub-category .category-name {
    padding-left: 24px;
    font-weight: 400;
}

.imports-composition-table .indent-2 .category-name {
    padding-left: 40px;
    font-style: italic;
}

.imports-composition-table .value-cell {
    text-align: right;
    padding-right: 10px;
}

.imports-composition-table .separator-row {
    height: 8px;
    background: #FFFFFF;
}

.imports-composition-table .separator-row td {
    border: none;
    border-left: 1px solid #000000;
    border-right: 1px solid #000000;
}

.imports-composition-table .total-row {
    background: #E5E7EB;
    border-top: 2px solid #000000;
}

.imports-composition-table .total-row td {
    font-weight: 700;
    padding: 10px 8px;
}

.imports-composition-table tbody tr:hover:not(.total-row):not(.separator-row) {
    background: #F9FAFB;
}



/* ============================================
   TABLE 17,TABLE 18 and TABLE 19
   ============================================ */

.textile-imports-table {
    width: 100%;
    border-collapse: collapse;
    font-family: 'Plus Jakarta Sans', sans-serif;
    background: #FFFFFF;
    border: 1px solid #000000;
    font-size: 10px;
}

.textile-imports-table .table-subtitle {
    font-size: 11px;
    font-weight: 600;
    margin-top: 5px;
    text-align: left;
}

.textile-imports-table thead {
    background: #FFFFFF;
    color: #000000;
    border: 1px solid #000000;
}

.textile-imports-table thead th {
    padding: 8px 6px;
    text-align: center;
    font-family: 'Inter', sans-serif;
    font-size: 15px;
    font-weight: 700;
    line-height: 1.3;
    border: 1px solid #000000;
    vertical-align: middle;
}

.textile-imports-table .code-col {
    width: 70px;
    text-align: center;
}

.textile-imports-table .description-col {
    width: 380px;
    text-align: left;
    padding-left: 10px !important;
}

.textile-imports-table .year-header {
    background: #F8F9FA;
    font-weight: 700;
    font-size: 15px;
}

.textile-imports-table .data-col {
    width: 100px;
    text-align: center;
    background: #FFFFFF;
}

.textile-imports-table tbody td {
    padding: 6px;
    font-size: 15px;
    font-weight: 400;
    color: #000000;
    border: 1px solid #000000;
}

.textile-imports-table .main-row {
    background: #FAFAFA;
}

.textile-imports-table .main-row .description-cell {
    font-weight: 700;
}

.textile-imports-table .sub-row {
    background: #FFFFFF;
}

.textile-imports-table .sub-row .description-cell {
    padding-left: 20px;
    font-size: 15px;
    font-style: italic;
}

.textile-imports-table .code-cell {
    text-align: center;
    font-weight: 600;
    vertical-align: top;
}

.textile-imports-table .value-cell {
    text-align: right;
    padding-right: 8px;
}

.textile-imports-table tbody tr:hover {
    background: #F9FAFB;
}

/* Total Row Styles */
.textile-imports-table .total-row {
    background: #010812;
    color: #FFFFFF;
    border-top: 3px solid #000000;
}

.textile-imports-table .total-row td {
    color: #FFFFFF;
    font-weight: 700;
    padding: 12px 8px;
    border-color: #374151;
}

.textile-imports-table .total-row:hover {
    background: #010812;
}



/* ==================== MEMBERS DIRECTORY SECTION ===================== */
.members-directory-section {
    background: #FFFFFF;
    padding: 80px 0;
}

.directory-header {
    text-align: center;
    margin-bottom: 60px;
    padding-bottom: 30px;
    border-bottom: 3px solid #010812;
}

.directory-title {
    font-family: 'Inter', sans-serif;
    font-size: 48px;
    font-weight: 700;
    line-height: 1.2;
    color: #010812;
    margin: 0 0 15px 0;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.directory-subtitle {
    display: block;
    font-size: 38px;
    font-weight: 700;
    margin-top: 10px;
}

.directory-note {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 16px;
    font-weight: 400;
    color: #4B5563;
    margin: 20px 0 0 0;
    font-style: italic;
}

.members-flex-container {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    align-items: flex-start;
}

.member-card {
    flex: 1 1 calc(33.333% - 27px);
    background: #F9FAFB;
    padding: 25px;
    border-radius: 8px;
    border: 1px solid #E5E7EB;
    transition: all 0.3s ease;
    box-sizing: border-box;
}

.member-card:hover {
    background: #FFFFFF;
    border-color: #194684;
    box-shadow: 0 4px 12px rgba(25, 70, 132, 0.1);
    transform: translateY(-5px);
}

.company-name {
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    font-weight: 700;
    color: #010812;
    margin: 0 0 12px 0;
    line-height: 1.4;
}

.company-address {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 14px;
    font-weight: 400;
    color: #374151;
    margin: 0 0 8px 0;
    line-height: 1.6;
}

.company-contact {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 14px;
    font-weight: 500;
    color: #194684;
    margin: 0 0 12px 0;
    line-height: 1.5;
}

.company-contact em {
    font-style: italic;
}

.contact-info {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 13px;
    font-weight: 400;
    color: #4B5563;
    margin: 0 0 5px 0;
    line-height: 1.5;
}

.contact-info:last-child {
    margin-bottom: 0;
}

/* ==================== MEMBERS DIRECTORY RESPONSIVE ===================== */

@media (max-width: 1400px) {
    .directory-header {
        margin-bottom: 50px;
        padding-bottom: 25px;
    }
    
    .directory-title {
        font-size: 42px;
    }
    
    .directory-subtitle {
        font-size: 34px;
    }
    
    .directory-note {
        font-size: 15px;
    }
    
    .members-flex-container {
        gap: 35px;
    }
    
    .member-card {
        flex: 1 1 calc(33.333% - 24px);
        padding: 22px;
    }
    
    .company-name {
        font-size: 15px;
        margin-bottom: 11px;
    }
    
    .company-address {
        font-size: 13px;
        margin-bottom: 7px;
    }
    
    .company-contact {
        font-size: 13px;
        margin-bottom: 11px;
    }
    
    .contact-info {
        font-size: 12px;
        margin-bottom: 4px;
    }
}

@media (max-width: 1200px) {
    .directory-header {
        margin-bottom: 45px;
        padding-bottom: 22px;
    }
    
    .directory-title {
        font-size: 38px;
    }
    
    .directory-subtitle {
        font-size: 30px;
    }
    
    .directory-note {
        font-size: 14px;
    }
    
    .members-flex-container {
        gap: 30px;
    }
    
    .member-card {
        flex: 1 1 calc(50% - 15px);
        padding: 20px;
    }
}

@media (max-width: 991px) {
    .table-page[data-page="20"] {
        padding-top: 25px;
    }
    
    .directory-header {
        margin-bottom: 40px;
        padding-bottom: 20px;
    }
    
    .directory-title {
        font-size: 34px;
    }
    
    .directory-subtitle {
        font-size: 28px;
    }
    
    .directory-note {
        font-size: 14px;
    }
    
    .members-flex-container {
        gap: 25px;
    }
    
    .member-card {
        flex: 1 1 calc(50% - 13px);
        padding: 18px;
    }
    
    .company-name {
        font-size: 15px;
        margin-bottom: 10px;
    }
    
    .company-address {
        font-size: 13px;
        margin-bottom: 7px;
    }
    
    .company-contact {
        font-size: 13px;
        margin-bottom: 10px;
    }
    
    .contact-info {
        font-size: 12px;
        margin-bottom: 4px;
    }
}

@media (max-width: 768px) {
    .table-page[data-page="20"] {
        padding-top: 30px;
    }
    
    .directory-header {
        margin-bottom: 35px;
        padding-bottom: 18px;
    }
    
    .directory-title {
        font-size: 30px;
    }
    
    .directory-subtitle {
        font-size: 24px;
        margin-top: 8px;
    }
    
    .directory-note {
        font-size: 13px;
        margin-top: 15px;
    }
    
    .members-flex-container {
        gap: 20px;
    }
    
    /* Keep 2 columns at 768px */
    .member-card {
        flex: 1 1 calc(50% - 10px);
        padding: 18px;
    }
    
    .company-name {
        font-size: 15px;
        margin-bottom: 10px;
    }
    
    .company-address {
        font-size: 13px;
        margin-bottom: 6px;
    }
    
    .company-contact {
        font-size: 13px;
        margin-bottom: 10px;
    }
    
    .contact-info {
        font-size: 12px;
        margin-bottom: 4px;
    }
}

@media (max-width: 576px) {
    .table-page[data-page="20"] {
        padding-top: 35px;
    }
    
    .directory-header {
        margin-bottom: 30px;
        padding-bottom: 15px;
    }
    
    .directory-title {
        font-size: 26px;
    }
    
    .directory-subtitle {
        font-size: 22px;
        margin-top: 7px;
    }
    
    .directory-note {
        font-size: 12px;
        margin-top: 12px;
    }
    
    .members-flex-container {
        gap: 18px;
    }
    
    .member-card {
        flex: 1 1 100%;
        padding: 16px;
    }
    
    .company-name {
        font-size: 14px;
        margin-bottom: 9px;
    }
    
    .company-address {
        font-size: 12px;
        margin-bottom: 6px;
    }
    
    .company-contact {
        font-size: 12px;
        margin-bottom: 9px;
    }
    
    .contact-info {
        font-size: 11px;
        margin-bottom: 3px;
    }
}

@media (max-width: 480px) {
    .table-page[data-page="20"] {
        padding-top: 40px;
    }
    
    .directory-header {
        margin-bottom: 25px;
        padding-bottom: 12px;
    }
    
    .directory-title {
        font-size: 22px;
    }
    
    .directory-subtitle {
        font-size: 18px;
        margin-top: 6px;
    }
    
    .directory-note {
        font-size: 11px;
        margin-top: 10px;
    }
    
    .members-flex-container {
        gap: 15px;
    }
    
    .member-card {
        padding: 14px;
        border-radius: 6px;
    }
    
    .company-name {
        font-size: 13px;
        margin-bottom: 8px;
    }
    
    .company-address {
        font-size: 11px;
        margin-bottom: 5px;
    }
    
    .company-contact {
        font-size: 11px;
        margin-bottom: 8px;
    }
    
    .contact-info {
        font-size: 10px;
        margin-bottom: 3px;
    }
}

@media (max-width: 320px) {
    .table-page[data-page="20"] {
        padding-top: 40px;
    }
    
    .directory-header {
        margin-bottom: 20px;
        padding-bottom: 10px;
    }
    
    .directory-title {
        font-size: 20px;
    }
    
    .directory-subtitle {
        font-size: 16px;
        margin-top: 5px;
    }
    
    .directory-note {
        font-size: 10px;
        margin-top: 8px;
    }
    
    .members-flex-container {
        gap: 12px;
    }
    
    .member-card {
        padding: 12px;
        border-radius: 5px;
    }
    
    .company-name {
        font-size: 12px;
        margin-bottom: 7px;
    }
    
    .company-address {
        font-size: 10px;
        margin-bottom: 4px;
    }
    
    .company-contact {
        font-size: 10px;
        margin-bottom: 7px;
    }
    
    .contact-info {
        font-size: 9px;
        margin-bottom: 2px;
    }
}

/* ========= (CONTINUATION PAGES) ============ */
@media (max-width: 991px) {
    .table-page[data-page="21"],
    .table-page[data-page="22"],
    .table-page[data-page="23"] {
        padding-top: 25px;
    }
}

@media (max-width: 768px) {
    .table-page[data-page="21"],
    .table-page[data-page="22"],
    .table-page[data-page="23"] {
        padding-top: 30px;
    }
}

@media (max-width: 576px) {
    .table-page[data-page="21"],
    .table-page[data-page="22"],
    .table-page[data-page="23"] {
        padding-top: 35px;
    }
}

@media (max-width: 480px) {
    .table-page[data-page="21"],
    .table-page[data-page="22"],
    .table-page[data-page="23"] {
        padding-top: 40px;
    }
}

@media (max-width: 320px) {
    .table-page[data-page="21"],
    .table-page[data-page="22"],
    .table-page[data-page="23"] {
        padding-top: 40px;
    }
}
/* ========== MEMBERS DIRECTORY SECTION End ============= */




/* ============ Page 24 and 25 ============ */
.sourcing-directory-wrap {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.sourcing-logo-header {
    display: flex;
    gap: 30px;
    align-items: flex-start;
    justify-content: center;
    padding-bottom: 30px;
    border-bottom: 2px solid #010812;
}

.sourcing-logo-header img {
    width: 120px;
    height: auto;
    flex-shrink: 0;
}

.sourcing-header-text {
    flex: 0 1 auto;
    max-width: 900px;
}

.sourcing-title {
    font-family: 'Inter', sans-serif;
    font-size: 28px;
    font-weight: 700;
    color: #010812;
    margin: 0 0 15px 0;
    letter-spacing: 0.5px;
}

.sourcing-committee {
    display: flex;
    gap: 30px;
    margin-top: 15px;
}

.committee-info,
.committee-members {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 13px;
    line-height: 1.6;
    color: #374151;
    margin: 0;
}

.committee-members strong {
    color: #010812;
    font-weight: 600;
}

.sourcing-members-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 25px;
}

.sourcing-member-card {
    flex: 1 1 calc(33.333% - 17px);
    background: #F9FAFB;
    padding: 20px;
    border-radius: 6px;
    border: 1px solid #E5E7EB;
    transition: all 0.3s ease;
    box-sizing: border-box;
}

.sourcing-member-card:hover {
    background: #FFFFFF;
    border-color: #194684;
    box-shadow: 0 4px 12px rgba(25, 70, 132, 0.1);
    transform: translateY(-3px);
}

.sourcing-company-name {
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    font-weight: 700;
    color: #010812;
    margin: 0 0 8px 0;
    line-height: 1.4;
}

.sourcing-company-title {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 12px;
    font-weight: 500;
    color: #194684;
    margin: 0 0 10px 0;
    line-height: 1.5;
}

.sourcing-company-title em {
    font-style: italic;
}

.sourcing-contact {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 12px;
    font-weight: 400;
    color: #4B5563;
    margin: 0 0 4px 0;
    line-height: 1.4;
}

.sourcing-contact:last-child {
    margin-bottom: 0;
}

/* ============ PAGE 24 AND 25 - RESPONSIVE ============ */

@media (max-width: 1400px) {
    .sourcing-directory-wrap {
        gap: 35px;
    }
    
    .sourcing-logo-header {
        gap: 25px;
        padding-bottom: 25px;
    }
    
    .sourcing-logo-header img {
        width: 110px;
    }
    
    .sourcing-title {
        font-size: 26px;
        margin-bottom: 12px;
    }
    
    .sourcing-committee {
        gap: 25px;
        margin-top: 12px;
    }
    
    .committee-info,
    .committee-members {
        font-size: 12px;
    }
    
    .sourcing-members-grid {
        gap: 22px;
    }
    
    .sourcing-member-card {
        flex: 1 1 calc(33.333% - 15px);
        padding: 18px;
    }
    
    .sourcing-company-name {
        font-size: 13px;
        margin-bottom: 7px;
    }
    
    .sourcing-company-title {
        font-size: 11px;
        margin-bottom: 9px;
    }
    
    .sourcing-contact {
        font-size: 11px;
        margin-bottom: 3px;
    }
}

@media (max-width: 1200px) {
    .sourcing-directory-wrap {
        gap: 30px;
    }
    
    .sourcing-logo-header {
        gap: 20px;
        padding-bottom: 22px;
    }
    
    .sourcing-logo-header img {
        width: 100px;
    }
    
    .sourcing-title {
        font-size: 24px;
        margin-bottom: 10px;
    }
    
    .sourcing-committee {
        gap: 20px;
        margin-top: 10px;
    }
    
    .committee-info,
    .committee-members {
        font-size: 12px;
    }
    
    .sourcing-members-grid {
        gap: 20px;
    }
    
    .sourcing-member-card {
        flex: 1 1 calc(50% - 10px);
        padding: 16px;
    }
}

@media (max-width: 991px) {
    .table-page[data-page="24"],
    .table-page[data-page="25"] {
        padding-top: 25px;
    }
    
    .sourcing-directory-wrap {
        gap: 25px;
    }
    
    .sourcing-logo-header {
        gap: 18px;
        padding-bottom: 20px;
    }
    
    .sourcing-logo-header img {
        width: 90px;
    }
    
    .sourcing-title {
        font-size: 22px;
        margin-bottom: 10px;
    }
    
    .sourcing-committee {
        flex-direction: column;
        gap: 12px;
        margin-top: 10px;
    }
    
    .sourcing-members-grid {
        gap: 18px;
    }
    
    .sourcing-member-card {
        flex: 1 1 calc(50% - 9px);
        padding: 15px;
    }
    
    .sourcing-company-name {
        font-size: 13px;
        margin-bottom: 7px;
    }
    
    .sourcing-company-title {
        font-size: 11px;
        margin-bottom: 8px;
    }
    
    .sourcing-contact {
        font-size: 11px;
        margin-bottom: 3px;
    }
}

@media (max-width: 768px) {
    .table-page[data-page="24"],
    .table-page[data-page="25"] {
        padding-top: 30px;
    }
    
    .sourcing-directory-wrap {
        gap: 25px;
    }
    
    .sourcing-logo-header {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 15px;
        padding-bottom: 18px;
    }
    
    .sourcing-logo-header img {
        width: 80px;
    }
    
    .sourcing-header-text {
        max-width: 100%;
    }
    
    .sourcing-title {
        font-size: 20px;
        margin-bottom: 10px;
    }
    
    .sourcing-committee {
        flex-direction: column;
        gap: 10px;
        margin-top: 10px;
    }
    
    .sourcing-committee div {
        flex-direction: column !important;
        gap: 10px !important;
    }
    
    .committee-info,
    .committee-members {
        font-size: 11px;
    }
    
    .sourcing-members-grid {
        gap: 15px;
    }
    
    .sourcing-member-card {
        flex: 1 1 calc(50% - 8px);
        padding: 14px;
    }
}

@media (max-width: 576px) {
    .table-page[data-page="24"],
    .table-page[data-page="25"] {
        padding-top: 35px;
    }
    
    .sourcing-directory-wrap {
        gap: 20px;
    }
    
    .sourcing-logo-header {
        gap: 12px;
        padding-bottom: 15px;
    }
    
    .sourcing-logo-header img {
        width: 70px;
    }
    
    .sourcing-title {
        font-size: 18px;
        margin-bottom: 8px;
    }
    
    .committee-info,
    .committee-members {
        font-size: 10px;
    }
    
    .sourcing-members-grid {
        gap: 12px;
    }
    
    .sourcing-member-card {
        flex: 1 1 100%;
        padding: 12px;
    }
    
    .sourcing-company-name {
        font-size: 12px;
        margin-bottom: 6px;
    }
    
    .sourcing-company-title {
        font-size: 10px;
        margin-bottom: 7px;
    }
    
    .sourcing-contact {
        font-size: 10px;
        margin-bottom: 2px;
    }
}

@media (max-width: 480px) {
    .table-page[data-page="24"],
    .table-page[data-page="25"] {
        padding-top: 40px;
    }
    
    .sourcing-directory-wrap {
        gap: 18px;
    }
    
    .sourcing-logo-header {
        gap: 10px;
        padding-bottom: 12px;
    }
    
    .sourcing-logo-header img {
        width: 60px;
    }
    
    .sourcing-title {
        font-size: 16px;
        margin-bottom: 7px;
    }
    
    .committee-info,
    .committee-members {
        font-size: 10px;
    }
    
    .sourcing-members-grid {
        gap: 10px;
    }
    
    .sourcing-member-card {
        padding: 10px;
        border-radius: 5px;
    }
    
    .sourcing-company-name {
        margin-bottom: 5px;
    }
    
    .sourcing-company-title {
        margin-bottom: 6px;
    }
    
    .sourcing-contact {
        margin-bottom: 2px;
    }
}

@media (max-width: 320px) {
    .table-page[data-page="24"],
    .table-page[data-page="25"] {
        padding-top: 40px;
    }
    
    .sourcing-directory-wrap {
        gap: 15px;
    }
    
    .sourcing-logo-header {
        gap: 8px;
        padding-bottom: 10px;
    }
    
    .sourcing-logo-header img {
        width: 50px;
    }
    
    .sourcing-title {
        margin-bottom: 6px;
    }
    
    .committee-info,
    .committee-members {
        font-size: 10px;
    }
    
    .sourcing-members-grid {
        gap: 8px;
    }
    
    .sourcing-member-card {
        padding: 8px;
    }
    
    .sourcing-company-name {
        margin-bottom: 4px;
    }
    
    .sourcing-company-title {
        margin-bottom: 5px;
    }
    
    .sourcing-contact {
        margin-bottom: 2px;
    }
}
/* ============ Page 24 and 25 ============ */




/* ============ Chamber of Garment Exporters 26 ============ */
.chamber-directory-wrap {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.chamber-header-box {
    border: 2px solid #010812;
    padding: 30px;
    background: #F9FAFB;
}

.chamber-main-title {
    font-family: 'Inter', sans-serif;
    font-size: 26px;
    font-weight: 700;
    color: #010812;
    margin: 0 0 20px 0;
    letter-spacing: 0.5px;
    text-align: center;
}

.chamber-info {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}

.chamber-address,
.chamber-contact {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 13px;
    line-height: 1.6;
    color: #374151;
    margin: 0;
}

.chamber-officers {
    display: flex;
    gap: 30px;
    margin-top: 10px;
    flex-wrap: wrap;
}

.chamber-officers p {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 13px;
    line-height: 1.6;
    color: #374151;
    margin: 0;
}

.chamber-officers strong {
    color: #010812;
    font-weight: 600;
}

.chamber-members-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 25px;
}

.chamber-member-card {
    flex: 1 1 calc(33.333% - 17px);
    background: #F9FAFB;
    padding: 20px;
    border-radius: 6px;
    border: 1px solid #E5E7EB;
    transition: all 0.3s ease;
    box-sizing: border-box;
}

.chamber-member-card:hover {
    background: #FFFFFF;
    border-color: #194684;
    box-shadow: 0 4px 12px rgba(25, 70, 132, 0.1);
    transform: translateY(-3px);
}

.chamber-company-name {
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    font-weight: 700;
    color: #010812;
    margin: 0 0 8px 0;
    line-height: 1.4;
}

.chamber-contact {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 12px;
    font-weight: 400;
    color: #4B5563;
    margin: 0 0 4px 0;
    line-height: 1.4;
}

.chamber-contact:last-child {
    margin-bottom: 0;
}

/* ============ CHAMBER OF GARMENT EXPORTERS PAGE 26 - RESPONSIVE ============ */

@media (max-width: 1400px) {
    .chamber-directory-wrap {
        gap: 35px;
    }
    
    .chamber-header-box {
        padding: 28px;
    }
    
    .chamber-main-title {
        font-size: 24px;
        margin-bottom: 18px;
    }
    
    .chamber-info {
        gap: 9px;
    }
    
    .chamber-address,
    .chamber-contact {
        font-size: 12px;
    }
    
    .chamber-officers {
        gap: 25px;
        margin-top: 9px;
    }
    
    .chamber-officers p {
        font-size: 12px;
    }
    
    .chamber-members-grid {
        gap: 22px;
    }
    
    .chamber-member-card {
        flex: 1 1 calc(33.333% - 15px);
        padding: 18px;
    }
    
    .chamber-company-name {
        font-size: 13px;
        margin-bottom: 7px;
    }
    
    .chamber-contact {
        font-size: 11px;
        margin-bottom: 3px;
    }
    
    .member-representative {
        font-size: 11px;
    }
}

@media (max-width: 1200px) {
    .chamber-directory-wrap {
        gap: 30px;
    }
    
    .chamber-header-box {
        padding: 25px;
    }
    
    .chamber-main-title {
        font-size: 22px;
        margin-bottom: 16px;
    }
    
    .chamber-officers {
        gap: 20px;
    }
    
    .chamber-members-grid {
        gap: 20px;
    }
    
    .chamber-member-card {
        flex: 1 1 calc(50% - 10px);
        padding: 16px;
    }
}

@media (max-width: 991px) {
    .table-page[data-page="26"] {
        padding-top: 25px;
    }
    
    .chamber-directory-wrap {
        gap: 25px;
    }
    
    .chamber-header-box {
        padding: 22px;
    }
    
    .chamber-main-title {
        font-size: 20px;
        margin-bottom: 14px;
    }
    
    .chamber-info {
        gap: 8px;
    }
    
    .chamber-officers {
        gap: 15px;
        margin-top: 8px;
    }
    
    .chamber-members-grid {
        gap: 18px;
    }
    
    .chamber-member-card {
        flex: 1 1 calc(50% - 9px);
        padding: 15px;
    }
    
    .chamber-company-name {
        font-size: 13px;
        margin-bottom: 7px;
    }
    
    .chamber-contact {
        font-size: 11px;
        margin-bottom: 3px;
    }
    
    .member-representative {
        font-size: 11px;
    }
}

@media (max-width: 768px) {
    .table-page[data-page="26"] {
        padding-top: 30px;
    }
    
    .chamber-directory-wrap {
        gap: 25px;
    }
    
    .chamber-header-box {
        padding: 20px;
    }
    
    .chamber-main-title {
        font-size: 18px;
        margin-bottom: 12px;
    }
    
    .chamber-info {
        align-items: flex-start;
        text-align: left;
    }
    
    .chamber-address,
    .chamber-contact {
        font-size: 11px;
    }
    
    .chamber-officers {
        flex-direction: column;
        gap: 8px;
        margin-top: 8px;
    }
    
    .chamber-officers p {
        font-size: 11px;
    }
    
    .chamber-members-grid {
        gap: 15px;
    }
    
    .chamber-member-card {
        flex: 1 1 calc(50% - 8px);
        padding: 14px;
    }
}

@media (max-width: 576px) {
    .table-page[data-page="26"] {
        padding-top: 35px;
    }
    
    .chamber-directory-wrap {
        gap: 20px;
    }
    
    .chamber-header-box {
        padding: 18px;
    }
    
    .chamber-main-title {
        font-size: 16px;
        margin-bottom: 10px;
    }
    
    .chamber-address,
    .chamber-contact {
        font-size: 10px;
    }
    
    .chamber-officers p {
        font-size: 10px;
    }
    
    .chamber-members-grid {
        gap: 12px;
    }
    
    .chamber-member-card {
        flex: 1 1 100%;
        padding: 12px;
    }
    
    .chamber-company-name {
        font-size: 12px;
        margin-bottom: 6px;
    }
    
    .chamber-contact {
        font-size: 10px;
        margin-bottom: 2px;
    }
    
    .member-representative {
        font-size: 10px;
    }
}

@media (max-width: 480px) {
    .table-page[data-page="26"] {
        padding-top: 40px;
    }
    
    .chamber-directory-wrap {
        gap: 18px;
    }
    
    .chamber-header-box {
        padding: 15px;
    }
    
    .chamber-main-title {
        font-size: 14px;
        margin-bottom: 8px;
    }
    
    .chamber-address,
    .chamber-contact {
        font-size: 9px;
    }
    
    .chamber-officers {
        gap: 6px;
    }
    
    .chamber-officers p {
        font-size: 9px;
    }
    
    .chamber-members-grid {
        gap: 10px;
    }
    
    .chamber-member-card {
        padding: 10px;
        border-radius: 5px;
    }
    
    .chamber-company-name {
        font-size: 11px;
        margin-bottom: 5px;
    }
    
    .chamber-contact {
        font-size: 9px;
        margin-bottom: 2px;
    }
    
    .member-representative {
        font-size: 9px;
    }
}

@media (max-width: 320px) {
    .table-page[data-page="26"] {
        padding-top: 40px;
    }
    
    .chamber-directory-wrap {
        gap: 15px;
    }
    
    .chamber-header-box {
        padding: 12px;
    }
    
    .chamber-main-title {
        font-size: 12px;
        margin-bottom: 7px;
    }
    
    .chamber-address,
    .chamber-contact {
        font-size: 8px;
    }
    
    .chamber-officers {
        gap: 5px;
    }
    
    .chamber-officers p {
        font-size: 8px;
    }
    
    .chamber-members-grid {
        gap: 8px;
    }
    
    .chamber-member-card {
        padding: 8px;
    }
    
    .chamber-company-name {
        font-size: 10px;
        margin-bottom: 4px;
    }
    
    .chamber-contact {
        font-size: 8px;
        margin-bottom: 2px;
    }
    
    .member-representative {
        font-size: 8px;
    }
}

/* Member Representative Styling (if not already defined) */
.member-representative {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 12px;
    font-weight: 500;
    color: #194684;
    margin: 0 0 8px 0;
    line-height: 1.5;
    font-style: italic;
}
/* ============ Chamber of Garment Exporters 26 End ============ */




/* ============ Diplomatic Directory ============ */
.diplomatic-directory-wrap {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.diplomatic-header {
    background: #E5E7EB;
    padding: 30px;
    text-align: center;
    border: 2px solid #010812;
}

.diplomatic-main-title {
    font-family: 'Inter', sans-serif;
    font-size: 24px;
    font-weight: 700;
    color: #010812;
    margin: 0 0 15px 0;
    line-height: 1.4;
    letter-spacing: 0.5px;
}

.diplomatic-source {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 16px;
    font-style: italic;
    color: #374151;
    margin: 0;
}

.diplomatic-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 25px;
}

.diplomatic-card {
    flex: 1 1 calc(50% - 12.5px);
    background: #F9FAFB;
    padding: 20px;
    border-radius: 6px;
    border: 1px solid #E5E7EB;
    transition: all 0.3s ease;
    box-sizing: border-box;
}

.diplomatic-card:hover {
    background: #FFFFFF;
    border-color: #194684;
    box-shadow: 0 4px 12px rgba(25, 70, 132, 0.1);
}

.diplomatic-country {
    font-family: 'Inter', sans-serif;
    font-size: 15px;
    font-weight: 700;
    color: #010812;
    margin: 0 0 12px 0;
    line-height: 1.3;
}

.diplomatic-info {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 13px;
    font-weight: 500;
    color: #374151;
    margin: 0 0 6px 0;
    line-height: 1.5;
}

.diplomatic-contact {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 12px;
    font-weight: 400;
    color: #4B5563;
    margin: 0 0 4px 0;
    line-height: 1.4;
}

.diplomatic-representative {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 12px;
    font-weight: 500;
    font-style: italic;
    color: #194684;
    margin: 10px 0 0 0;
    line-height: 1.4;
}

.diplomatic-contact:last-child {
    margin-bottom: 0;
}
/* ============ Diplomatic Directory End ( to 30 page) ============ */


/* ============ Diplomatic Directory (31)============ */
.diplomatic-directory-wrap {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.diplomatic-header {
    background: #E5E7EB;
    padding: 30px;
    text-align: center;
    border: 2px solid #010812;
}

.diplomatic-main-title {
    font-family: 'Inter', sans-serif;
    font-size: 24px;
    font-weight: 700;
    color: #010812;
    margin: 0 0 15px 0;
    line-height: 1.4;
    letter-spacing: 0.5px;
}

.diplomatic-source {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 16px;
    font-style: italic;
    color: #374151;
    margin: 0;
}

.diplomatic-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 25px;
}

.diplomatic-card {
    flex: 1 1 calc(50% - 12.5px);
    background: #F9FAFB;
    padding: 20px;
    border-radius: 6px;
    border: 1px solid #E5E7EB;
    transition: all 0.3s ease;
    box-sizing: border-box;
}

.diplomatic-card:hover {
    background: #FFFFFF;
    border-color: #194684;
    box-shadow: 0 4px 12px rgba(25, 70, 132, 0.1);
}

.diplomatic-country {
    font-family: 'Inter', sans-serif;
    font-size: 15px;
    font-weight: 700;
    color: #010812;
    margin: 0 0 12px 0;
    line-height: 1.3;
}

.diplomatic-info {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 13px;
    font-weight: 500;
    color: #374151;
    margin: 0 0 6px 0;
    line-height: 1.5;
}

.diplomatic-contact {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 12px;
    font-weight: 400;
    color: #4B5563;
    margin: 0 0 4px 0;
    line-height: 1.4;
}

.diplomatic-representative {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 12px;
    font-weight: 500;
    font-style: italic;
    color: #194684;
    margin: 10px 0 0 0;
    line-height: 1.4;
}

.diplomatic-contact:last-child {
    margin-bottom: 0;
}

/* ============ DIPLOMATIC DIRECTORY PAGE 27-30 - RESPONSIVE ============ */

@media (max-width: 1400px) {
    .diplomatic-directory-wrap {
        gap: 28px;
    }
    
    .diplomatic-header {
        padding: 28px;
    }
    
    .diplomatic-main-title {
        font-size: 22px;
        margin-bottom: 14px;
    }
    
    .diplomatic-source {
        font-size: 15px;
    }
    
    .diplomatic-grid {
        gap: 22px;
    }
    
    .diplomatic-card {
        flex: 1 1 calc(50% - 11px);
        padding: 18px;
    }
    
    .diplomatic-country {
        font-size: 14px;
        margin-bottom: 11px;
    }
    
    .diplomatic-info {
        font-size: 12px;
        margin-bottom: 5px;
    }
    
    .diplomatic-contact {
        font-size: 11px;
        margin-bottom: 3px;
    }
    
    .diplomatic-representative {
        font-size: 11px;
        margin-top: 9px;
    }
}

@media (max-width: 1200px) {
    .diplomatic-directory-wrap {
        gap: 25px;
    }
    
    .diplomatic-header {
        padding: 25px;
    }
    
    .diplomatic-main-title {
        font-size: 20px;
        margin-bottom: 12px;
    }
    
    .diplomatic-source {
        font-size: 14px;
    }
    
    .diplomatic-grid {
        gap: 20px;
    }
    
    .diplomatic-card {
        flex: 1 1 calc(50% - 10px);
        padding: 16px;
    }
}

@media (max-width: 991px) {
    .table-page[data-page="27"],
    .table-page[data-page="28"],
    .table-page[data-page="29"],
    .table-page[data-page="30"] {
        padding-top: 25px;
    }
    
    .diplomatic-directory-wrap {
        gap: 22px;
    }
    
    .diplomatic-header {
        padding: 22px;
    }
    
    .diplomatic-main-title {
        font-size: 18px;
        margin-bottom: 10px;
    }
    
    .diplomatic-source {
        font-size: 13px;
    }
    
    .diplomatic-grid {
        gap: 18px;
    }
    
    .diplomatic-card {
        flex: 1 1 calc(50% - 9px);
        padding: 15px;
    }
    
    .diplomatic-country {
        font-size: 14px;
        margin-bottom: 10px;
    }
    
    .diplomatic-info {
        font-size: 12px;
        margin-bottom: 5px;
    }
    
    .diplomatic-contact {
        font-size: 11px;
        margin-bottom: 3px;
    }
    
    .diplomatic-representative {
        font-size: 11px;
        margin-top: 8px;
    }
}

@media (max-width: 768px) {
    .table-page[data-page="27"],
    .table-page[data-page="28"],
    .table-page[data-page="29"],
    .table-page[data-page="30"] {
        padding-top: 30px;
    }
    
    .diplomatic-directory-wrap {
        gap: 20px;
    }
    
    .diplomatic-header {
        padding: 20px;
    }
    
    .diplomatic-main-title {
        font-size: 16px;
        margin-bottom: 10px;
    }
    
    .diplomatic-source {
        font-size: 12px;
    }
    
    .diplomatic-grid {
        gap: 15px;
    }
    
    .diplomatic-card {
        flex: 1 1 calc(50% - 8px);
        padding: 14px;
    }
    
    .diplomatic-country {
        font-size: 13px;
        margin-bottom: 9px;
    }
    
    .diplomatic-info {
        font-size: 11px;
        margin-bottom: 4px;
    }
    
    .diplomatic-contact {
        font-size: 10px;
        margin-bottom: 3px;
    }
    
    .diplomatic-representative {
        font-size: 10px;
        margin-top: 7px;
    }
}

@media (max-width: 576px) {
    .table-page[data-page="27"],
    .table-page[data-page="28"],
    .table-page[data-page="29"],
    .table-page[data-page="30"] {
        padding-top: 35px;
    }
    
    .diplomatic-directory-wrap {
        gap: 18px;
    }
    
    .diplomatic-header {
        padding: 18px;
    }
    
    .diplomatic-main-title {
        font-size: 14px;
        margin-bottom: 8px;
    }
    
    .diplomatic-source {
        font-size: 11px;
    }
    
    .diplomatic-grid {
        gap: 12px;
    }
    
    .diplomatic-card {
        flex: 1 1 100%;
        padding: 12px;
    }
    
    .diplomatic-country {
        font-size: 12px;
        margin-bottom: 8px;
    }
    
    .diplomatic-info {
        font-size: 10px;
        margin-bottom: 4px;
    }
    
    .diplomatic-contact {
        font-size: 9px;
        margin-bottom: 2px;
    }
    
    .diplomatic-representative {
        font-size: 9px;
        margin-top: 6px;
    }
}

@media (max-width: 480px) {
    .table-page[data-page="27"],
    .table-page[data-page="28"],
    .table-page[data-page="29"],
    .table-page[data-page="30"] {
        padding-top: 40px;
    }
    
    .diplomatic-directory-wrap {
        gap: 15px;
    }
    
    .diplomatic-header {
        padding: 15px;
    }
    
    .diplomatic-main-title {
        font-size: 12px;
        margin-bottom: 7px;
    }
    
    .diplomatic-source {
        font-size: 10px;
    }
    
    .diplomatic-grid {
        gap: 10px;
    }
    
    .diplomatic-card {
        padding: 10px;
        border-radius: 5px;
    }
    
    .diplomatic-country {
        font-size: 11px;
        margin-bottom: 7px;
    }
    
    .diplomatic-info {
        font-size: 9px;
        margin-bottom: 3px;
    }
    
    .diplomatic-contact {
        font-size: 8px;
        margin-bottom: 2px;
    }
    
    .diplomatic-representative {
        font-size: 8px;
        margin-top: 5px;
    }
}

@media (max-width: 320px) {
    .table-page[data-page="27"],
    .table-page[data-page="28"],
    .table-page[data-page="29"],
    .table-page[data-page="30"] {
        padding-top: 40px;
    }
    
    .diplomatic-directory-wrap {
        gap: 12px;
    }
    
    .diplomatic-header {
        padding: 12px;
    }
    
    .diplomatic-main-title {
        font-size: 11px;
        margin-bottom: 6px;
    }
    
    .diplomatic-source {
        font-size: 9px;
    }
    
    .diplomatic-grid {
        gap: 8px;
    }
    
    .diplomatic-card {
        padding: 8px;
    }
    
    .diplomatic-country {
        font-size: 10px;
        margin-bottom: 6px;
    }
    
    .diplomatic-info {
        font-size: 8px;
        margin-bottom: 2px;
    }
    
    .diplomatic-contact {
        font-size: 7px;
        margin-bottom: 2px;
    }
    
    .diplomatic-representative {
        font-size: 7px;
        margin-top: 4px;
    }
}
/* Diplomatic Directory End  */




/* Useful Contacts Table  */
.contacts-table-wrap {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.contacts-title {
    font-family: 'Inter', sans-serif;
    font-size: 20px;
    font-weight: 700;
    color: #010812;
    text-align: center;
    margin: 0;
    padding: 15px;
    background: #E5E7EB;
    border: 2px solid #010812;
}

.contacts-table-container {
    overflow-x: auto;
}

.contacts-table {
    width: 100%;
    border-collapse: collapse;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 11px;
    line-height: 1.5;
}

.contacts-table tbody td {
    border: 1px solid #6B7280;
    padding: 12px 10px;
    font-size: 10.5px;
    font-weight: 400;
    color: #1F2937;
    vertical-align: top;
}

.contacts-table tbody tr:nth-child(odd) {
    background: #FFFFFF;
}

.contacts-table tbody tr:nth-child(even) {
    background: #E5E7EB;
}

.contacts-table .org-col {
    width: 28%;
}

.contacts-table .person-col {
    width: 20%;
}

.contacts-table .tel-col {
    width: 10%;
    text-align: left;
}

.contacts-table strong {
    font-weight: 700;
    color: #010812;
}

/* ============ USEFUL CONTACTS TABLE PAGE 31 - RESPONSIVE ============ */

@media (max-width: 1400px) {
    .contacts-title {
        font-size: 19px;
        padding: 14px;
    }
    
    .contacts-table {
        font-size: 10.5px;
    }
    
    .contacts-table tbody td {
        padding: 11px 9px;
        font-size: 10px;
    }
}

@media (max-width: 1200px) {
    .contacts-title {
        font-size: 18px;
        padding: 13px;
    }
    
    .contacts-table {
        font-size: 10px;
    }
    
    .contacts-table tbody td {
        padding: 10px 8px;
        font-size: 9.5px;
    }
}

@media (max-width: 991px) {
    .table-page[data-page="31"] {
        padding-top: 25px;
    }
    
    .contacts-title {
        font-size: 17px;
        padding: 12px;
    }
    
    .contacts-table-container {
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
    }
    
    .contacts-table {
        min-width: 900px;
        font-size: 9.5px;
    }
    
    .contacts-table tbody td {
        padding: 9px 7px;
        font-size: 9px;
    }
}

@media (max-width: 768px) {
    .table-page[data-page="31"] {
        padding-top: 30px;
    }
    
    .contacts-table-wrap {
        gap: 18px;
    }
    
    .contacts-title {
        font-size: 16px;
        padding: 11px;
    }
    
    .contacts-table {
        min-width: 850px;
        font-size: 9px;
    }
    
    .contacts-table tbody td {
        padding: 8px 6px;
        font-size: 8.5px;
    }
}

@media (max-width: 576px) {
    .table-page[data-page="31"] {
        padding-top: 35px;
    }
    
    .contacts-table-wrap {
        gap: 15px;
    }
    
    .contacts-title {
        font-size: 14px;
        padding: 10px;
    }
    
    .contacts-table {
        min-width: 800px;
        font-size: 8.5px;
        line-height: 1.4;
    }
    
    .contacts-table tbody td {
        padding: 7px 5px;
        font-size: 8px;
    }
}

@media (max-width: 480px) {
    .table-page[data-page="31"] {
        padding-top: 40px;
    }
    
    .contacts-table-wrap {
        gap: 12px;
    }
    
    .contacts-title {
        font-size: 13px;
        padding: 9px;
    }
    
    .contacts-table {
        min-width: 750px;
        font-size: 8px;
        line-height: 1.4;
    }
    
    .contacts-table tbody td {
        padding: 6px 4px;
        font-size: 7.5px;
    }
}

@media (max-width: 320px) {
    .table-page[data-page="31"] {
        padding-top: 40px;
    }
    
    .contacts-table-wrap {
        gap: 10px;
    }
    
    .contacts-title {
        font-size: 12px;
        padding: 8px;
    }
    
    .contacts-table {
        min-width: 700px;
        font-size: 7.5px;
        line-height: 1.3;
    }
    
    .contacts-table tbody td {
        padding: 5px 3px;
        font-size: 7px;
    }
}
/* ============ Useful Contacts Table End (31 end)============ */
/* ============================== Export Tables Page End =============================== */











/* ========================== Full Page Advertisements ======================= */
.pg-temp-advertisements {
    padding: 0 !important;
    margin: 0 !important;
    width: 100%;
}

.fullpage-ad-section {
    width: 100%;
    min-height: calc(100vh - 200px);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background: #000000;
    padding: 100px 0 0 0;
    position: relative;
}

.ad-display-container {
    width: 100%;
    /* height: 70vh; */
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    padding: 0px 0;
}

.ad-page {
    display: none;
    width: 100%;
    height: 100%;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: opacity 0.5s ease;
}

.ad-page.active {
    display: flex;
    opacity: 1;
}

.fullpage-ad-image {
    /* max-width: 100%;
    max-height: 100%; */
    width: 100%;
    height: auto;
    object-fit: contain;
    object-position: center;
    display: block;
}

/* Pagination Controls */
.ad-pagination-controls {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    padding: 30px 20px;
    background: #000000;
    position: relative;
    width: 100%;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.ad-pagination-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    font-weight: 600;
    color: #FFFFFF;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 12px 20px;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.ad-pagination-btn:hover:not(:disabled) {
    background: rgba(255, 255, 255, 0.2);
}

.ad-pagination-btn:disabled {
    opacity: 0.3;
    cursor: not-allowed;
}

.ad-pagination-btn i {
    font-size: 12px;
}

.ad-pagination-numbers {
    display: flex;
    gap: 8px;
    align-items: center;
    flex-wrap: wrap;
    justify-content: center;
}

.ad-page-number {
    display: flex;
    justify-content: center;
    align-items: center;
    min-width: 40px;
    height: 40px;
    padding: 0 12px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 8px;
    color: #FFFFFF;
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
}

.ad-page-number:hover:not(.ellipsis) {
    background: rgba(255, 255, 255, 0.2);
    color: #f0eded;
}

.ad-page-number.active {
    background: #FFFFFF;
    color: #000000;
    font-weight: 600;
    border-color: #FFFFFF;
}

.ad-page-number.ellipsis {
    background: transparent;
    border: none;
    cursor: default;
    opacity: 0.5;
}

@media (max-width: 1200px) {
    .fullpage-ad-section {
        min-height: calc(100vh - 180px);
        padding: 90px 0 0 0;
    }

    .ad-pagination-controls {
        gap: 18px;
        padding: 28px 18px;
    }
    
    .ad-pagination-btn {
        font-size: 13px;
        padding: 11px 18px;
        gap: 7px;
    }
    
    .ad-pagination-btn i {
        font-size: 11px;
    }
    
    .ad-pagination-numbers {
        gap: 7px;
    }
    
    .ad-page-number {
        min-width: 38px;
        height: 38px;
        font-size: 13px;
        padding: 0 11px;
    }
}

@media (max-width: 991px) {
    .fullpage-ad-section {
        min-height: calc(100vh - 160px);
        padding: 80px 0 0 0;
    }

    .ad-pagination-controls {
        gap: 16px;
        padding: 25px 16px;
    }
    
    .ad-pagination-btn {
        font-size: 13px;
        padding: 10px 16px;
        gap: 6px;
    }
    
    .ad-pagination-btn i {
        font-size: 11px;
    }
    
    .ad-pagination-numbers {
        gap: 6px;
    }
    
    .ad-page-number {
        min-width: 36px;
        height: 36px;
        font-size: 13px;
        padding: 0 10px;
    }
}

@media (max-width: 768px) {
    .fullpage-ad-section {
        min-height: calc(100vh - 140px);
        padding: 70px 0 0 0;
    }
    
    .ad-pagination-controls {
        gap: 14px;
        padding: 22px 14px;
    }
    
    .ad-pagination-btn {
        font-size: 12px;
        padding: 10px 14px;
        gap: 6px;
    }
    
    .ad-pagination-btn i {
        font-size: 10px;
    }
    
    .ad-pagination-numbers {
        gap: 5px;
    }
    
    .ad-page-number {
        min-width: 34px;
        height: 34px;
        font-size: 12px;
        padding: 0 9px;
    }
}

@media (max-width: 576px) {
    .fullpage-ad-section {
        min-height: calc(100vh - 120px);
        padding: 60px 0 0 0;
    }

    .ad-pagination-controls {
        flex-direction: column;
        gap: 12px;
        padding: 18px 12px;
    }
    
    .ad-pagination-btn {
        font-size: 11px;
        padding: 9px 14px;
        gap: 5px;
        width: 100%;
        max-width: 200px;
        justify-content: center;
    }
    
    .ad-pagination-btn i {
        font-size: 10px;
    }
    
    .ad-pagination-numbers {
        gap: 5px;
        order: 2;
        width: 100%;
        justify-content: center;
    }
    
    .ad-page-number {
        min-width: 32px;
        height: 32px;
        font-size: 11px;
        padding: 0 8px;
    }
    
    #adPrevBtn {
        order: 1;
    }
    
    #adNextBtn {
        order: 3;
    }
}

@media (max-width: 320px) {
    .fullpage-ad-section {
        min-height: calc(100vh - 100px);
        padding: 50px 0 0 0;
    }

    .ad-pagination-controls {
        gap: 10px;
        padding: 15px 10px;
    }
    
    .ad-pagination-btn {
        font-size: 10px;
        padding: 8px 12px;
        gap: 4px;
        max-width: 180px;
    }
    
    .ad-pagination-btn i {
        font-size: 9px;
    }
    
    .ad-pagination-numbers {
        gap: 4px;
    }
    
    .ad-page-number {
        min-width: 28px;
        height: 28px;
        font-size: 10px;
        padding: 0 6px;
    }
}
/* ============ Full Page Advertisements End ============ */





