/* Reset and base styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #2c3e50;
    background-color: #ffffff;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Image optimization and loading states */
img {
    max-width: 100%;
    height: auto;
    display: block;
    image-rendering: -webkit-optimize-contrast;
    image-rendering: crisp-edges;
    transition: opacity 0.3s ease;
}

img[loading="lazy"] {
    opacity: 0;
    transition: opacity 0.3s ease;
}

img[loading="lazy"].loaded {
    opacity: 1;
}

/* Image fallback for broken/placeholder images */
img::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, #f0f0f0 0%, #e0e0e0 100%);
    display: none;
}

img[src=""],
img:not([src]) {
    background: linear-gradient(135deg, #f0f0f0 0%, #e0e0e0 100%);
    min-height: 200px;
    position: relative;
}

img[src=""]::after,
img:not([src])::after {
    content: 'Image';
    display: flex;
    align-items: center;
    justify-content: center;
    color: #999;
    font-size: 14px;
    font-weight: 500;
}

/* Brand Colors */
:root {
    --boi-primary: #0066cc; /* Changed from green #00a651 to blue */
    --boi-primary-dark: #0052a3;
    --boi-primary-light: #1a7ae6;
    --boi-secondary: #f39c12;
    --boi-accent: #e74c3c;
    --boi-dark: #2c3e50;
    --boi-light: #f8f9fa;
    --boi-text: #2c3e50;
    --boi-text-light: #666;
}

/* Top Navigation Bar */
.top-nav-bar {
    display: none;
}

/* Hide top bar when scrolling down */
.top-nav-bar.hidden {
    transform: translateY(-100%) !important;
    opacity: 0 !important;
    visibility: hidden !important;
}

/* Show top bar when scrolling up */
.top-nav-bar.visible {
    transform: translateY(0) !important;
    opacity: 1 !important;
    visibility: visible !important;
}

.top-nav-left {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
}

.top-nav-link {
    color: white;
    text-decoration: none;
    font-size: 11px;
    font-weight: 500;
    transition: color 0.3s ease, opacity 0.3s ease;
    white-space: nowrap;
}

.top-nav-link:hover {
    color: #f39c12;
    opacity: 0.9;
}

.top-nav-separator {
    color: rgba(255, 255, 255, 0.5);
    margin: 0 2px;
    font-size: 10px;
}

.top-nav-right {
    display: flex;
    align-items: center;
    gap: 10px;
}

.top-social-links {
    display: flex;
    align-items: center;
    gap: 8px;
}

.top-social-link {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.15);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    font-size: 12px;
    font-weight: bold;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.top-social-link:hover {
    background: rgba(255, 255, 255, 0.25);
    transform: translateY(-2px);
    border-color: rgba(255, 255, 255, 0.4);
}

.top-social-link.facebook:hover {
    background: #1877f2;
    border-color: #1877f2;
}

.top-social-link.twitter:hover {
    background: #1da1f2;
    border-color: #1da1f2;
}

.top-social-link.linkedin:hover {
    background: #0077b5;
    border-color: #0077b5;
}

.top-social-link.youtube:hover {
    background: #ff0000;
    border-color: #ff0000;
}

.search-icon {
    font-size: 14px;
    cursor: pointer;
}

.font-size-controls {
    display: flex;
    gap: 6px;
}

.font-btn {
    background: rgba(255,255,255,0.2);
    padding: 2px 6px;
    border-radius: 3px;
    font-size: 10px;
    cursor: pointer;
    transition: background 0.3s ease;
}

.font-btn:hover {
    background: rgba(255,255,255,0.3);
}

.language-dropdown {
    background: #1a4a1a;
    color: white;
    border: 1px solid rgba(255,255,255,0.3);
    padding: 3px 8px;
    font-size: 10px;
    border-radius: 3px;
}

/* Main Header */
.main-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(0, 0, 0, 0.25);
    backdrop-filter: blur(8px);
    padding: 12px 0;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.25);
}

.main-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #0066cc 0%, #f39c12 50%, #0066cc 100%);
    background-size: 200% 100%;
    animation: gradientShift 3s ease infinite;
}

@keyframes gradientShift {
    0%, 100% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
}

.main-header.sticky {
    top: 0;
    background: linear-gradient(180deg, 
        rgba(44, 62, 80, 0.98) 0%,
        rgba(26, 37, 47, 0.95) 50%,
        rgba(44, 62, 80, 0.92) 100%);
    backdrop-filter: blur(18px);
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.3);
    padding: 10px 0;
    transform: translateY(0);
}

.main-header.sticky .logo-section {
    transform: scale(0.9);
    transition: transform 0.4s ease;
}

.main-header.sticky .invest-text,
.main-header.sticky .pakistan-text {
    font-size: 20px;
    transition: font-size 0.4s ease;
}

.main-header.sticky .cnpk-badge {
    transform: scale(0.85);
    height: 42px;
    transition: all 0.4s ease;
}

.main-header.sticky .cnpk-text-main {
    font-size: 14px;
    transition: font-size 0.4s ease;
}

.main-header.sticky .nav-item {
    font-size: 14px;
    padding: 10px 0;
    transition: all 0.4s ease;
}

.header-container {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 0;
    padding: 0 20px;
}

/* Logo Section */
.logo-section {
    display: flex;
    align-items: center;
    gap: 12px;
}

.pakistan-flag {
    display: flex;
    align-items: center;
    gap: 2px;
}

.flag-green {
    width: 24px;
    height: 24px;
    background: #0066cc;
    border-radius: 50%;
    box-shadow: 0 2px 8px rgba(0, 102, 204, 0.4);
}

.flag-white {
    width: 24px;
    height: 24px;
    background: white;
    border: 2px solid #0066cc;
    border-radius: 50%;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.invest-pakistan-text {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    margin-left: 8px;
}

.invest-text {
    font-size: 24px;
    font-weight: 900;
    color: #ffffff;
    letter-spacing: 3px;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
    line-height: 1;
}

.pakistan-text {
    font-size: 24px;
    font-weight: 900;
    color: #ffffff;
    letter-spacing: 3px;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
    line-height: 1;
    margin-top: 2px;
}

.cnpk-badge {
    background: linear-gradient(135deg, #0066cc 0%, #0052a3 100%);
    color: white;
    width: auto;
    min-width: 70px;
    height: 50px;
    border-radius: 10px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    font-size: 11px;
    font-weight: 800;
    box-shadow: 0 4px 15px rgba(0, 102, 204, 0.5), 0 0 20px rgba(0, 102, 204, 0.3);
    border: 2px solid rgba(255, 255, 255, 0.4);
    transition: all 0.3s ease;
    padding: 6px 12px;
    gap: 0;
    position: relative;
    overflow: hidden;
}

.cnpk-badge::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s ease;
}

.cnpk-badge:hover::before {
    left: 100%;
}

.cnpk-badge .cnpk-text-main {
    font-size: 16px;
    line-height: 1;
    font-weight: 900;
    letter-spacing: 1px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.cnpk-badge .boi-text-sub {
    display: none; /* BOI removed, only CNPK shown */
}

.cnpk-badge:hover {
    transform: scale(1.08);
    box-shadow: 0 6px 25px rgba(0, 102, 204, 0.7), 0 0 30px rgba(255, 255, 255, 0.4);
    border-color: rgba(255, 255, 255, 0.6);
}

/* Hamburger Menu Button */
.hamburger-menu {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 24px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 1001;
    position: relative;
    transition: transform 0.3s ease;
}

.hamburger-menu:hover {
    transform: scale(1.1);
}

.hamburger-menu:active {
    transform: scale(0.95);
}

.hamburger-line {
    display: block;
    width: 100%;
    height: 3px;
    background: #ffffff;
    border-radius: 3px;
    transition: all 0.3s ease;
    transform-origin: center;
}

.hamburger-menu.active .hamburger-line:nth-child(1) {
    transform: translateY(10.5px) rotate(45deg);
}

.hamburger-menu.active .hamburger-line:nth-child(2) {
    opacity: 0;
    transform: scaleX(0);
}

.hamburger-menu.active .hamburger-line:nth-child(3) {
    transform: translateY(-10.5px) rotate(-45deg);
}

/* Navigation */
.main-navigation {
    flex: 1;
    display: flex;
    justify-content: center;
    position: relative;
    transform: none;
    background: transparent;
    backdrop-filter: none;
    height: auto;
    width: auto;
    padding: 0;
    overflow: visible;
}

/* Small Desktop - Top Bar Responsive (900px - 1024px) */
@media (min-width: 769px) and (max-width: 1024px) {
    .top-nav-bar {
        padding: 6px 12px !important;
        font-size: 9px !important;
        gap: 8px !important;
    }
    
    .top-nav-left {
        gap: 4px !important;
        flex-wrap: wrap !important;
    }
    
    .top-nav-link {
        font-size: 8px !important;
        padding: 2px 3px !important;
    }
    
    .top-nav-separator {
        font-size: 7px !important;
        margin: 0 1px !important;
    }
    
    .top-nav-right {
        gap: 4px !important;
    }
    
    .top-social-link {
        width: 22px !important;
        height: 22px !important;
        font-size: 9px !important;
    }
}

/* Medium Desktop - Stacked Navigation Concept (1025px - 1200px) */
@media (min-width: 1025px) and (max-width: 1200px) {
    .hamburger-menu {
        display: none !important;
    }
    
    .header-container {
        flex-direction: column !important;
        align-items: flex-start !important;
        gap: 15px !important;
        padding: 20px !important;
    }
    
    .logo-section {
        width: 100% !important;
        justify-content: flex-start !important;
        margin-bottom: 0 !important;
    }
    
    .main-navigation {
        width: 100% !important;
        flex: none !important;
        justify-content: flex-start !important;
        margin-top: 10px !important;
        border-top: 1px solid rgba(255, 255, 255, 0.1) !important;
        padding-top: 15px !important;
    }
    
    .nav-list {
        flex-direction: row !important;
        gap: 25px !important;
        flex-wrap: wrap !important;
        width: 100% !important;
        justify-content: flex-start !important;
    }
    
    .nav-item {
        font-size: 14px !important;
        padding: 10px 0 !important;
        white-space: nowrap !important;
    }
    
    .main-header {
        padding: 20px 0 !important;
    }
    
    .main-header.sticky {
        padding: 15px 0 !important;
    }
    
    .main-header.sticky .main-navigation {
        padding-top: 12px !important;
        margin-top: 8px !important;
    }
    
    .top-nav-bar {
        display: flex !important;
        flex-direction: row !important;
        padding: 6px 15px !important;
        font-size: 10px !important;
        gap: 10px !important;
        flex-wrap: wrap !important;
        justify-content: space-between !important;
        align-items: center !important;
        max-width: 100vw !important;
        overflow: hidden !important;
        box-sizing: border-box !important;
    }
    
    .top-nav-left {
        flex: 1 1 auto !important;
        min-width: 0 !important;
        gap: 6px !important;
        flex-wrap: wrap !important;
        overflow: hidden !important;
        max-width: calc(100% - 120px) !important;
    }
    
    .top-nav-link {
        font-size: 9px !important;
        padding: 2px 4px !important;
        white-space: nowrap !important;
        flex-shrink: 0 !important;
    }
    
    .top-nav-separator {
        font-size: 8px !important;
        margin: 0 2px !important;
        flex-shrink: 0 !important;
    }
    
    .top-nav-right {
        flex: 0 0 auto !important;
        gap: 6px !important;
        flex-shrink: 0 !important;
    }
    
    .top-social-links {
        gap: 6px !important;
        flex-wrap: nowrap !important;
    }
    
    .top-social-link {
        width: 24px !important;
        height: 24px !important;
        font-size: 10px !important;
        flex-shrink: 0 !important;
    }
    
    body {
        padding-top: 0 !important;
    }
    
    .main-header {
        top: 0 !important;
        position: fixed !important;
    }
    
    .main-header.sticky {
        top: 0 !important;
        position: fixed !important;
    }
}

/* Large Desktop - Horizontal Navigation (1201px+) */
@media (min-width: 1201px) {
    .hamburger-menu {
        display: none !important;
    }
    
    .main-navigation {
        position: relative !important;
        transform: none !important;
        background: transparent !important;
        backdrop-filter: none !important;
        height: auto !important;
        width: auto !important;
        padding: 0 !important;
        overflow: visible !important;
        top: auto !important;
        left: auto !important;
        right: auto !important;
        flex: 1 !important;
        justify-content: center !important;
        margin-top: 0 !important;
        border-top: none !important;
        padding-top: 0 !important;
    }
    
    .nav-list {
        flex-direction: row !important;
        gap: 35px !important;
        max-width: none !important;
        width: auto !important;
        flex-wrap: nowrap !important;
        justify-content: center !important;
    }
    
    .nav-item {
        font-size: 15px !important;
        padding: 14px 0 !important;
        text-align: left !important;
        border-bottom: 3px solid transparent !important;
        width: auto !important;
        display: inline-block !important;
        border-radius: 0 !important;
        margin-bottom: 0 !important;
        background: transparent !important;
    }
    
    .nav-item::after {
        display: block !important;
    }
    
    body {
        padding-top: 0 !important;
    }
    
    .main-header {
        top: 0 !important;
    }
    
    .main-header.sticky {
        top: 0 !important;
    }
    
    .header-container {
        flex-direction: row !important;
        justify-content: space-between !important;
        align-items: center !important;
    }
    
    .logo-section {
        flex: 0 0 auto !important;
        width: auto !important;
    }
    
    .top-nav-bar {
        display: flex !important;
        flex-direction: row !important;
        padding: 8px 20px !important;
        font-size: 11px !important;
        gap: 0 !important;
        position: fixed !important;
        top: 0 !important;
        left: 0 !important;
        right: 0 !important;
        opacity: 1 !important;
        transform: translateY(0) !important;
        visibility: visible !important;
        max-width: 100vw !important;
        overflow: hidden !important;
        box-sizing: border-box !important;
    }
    
    .top-nav-left {
        flex: 1 1 auto !important;
        min-width: 0 !important;
        gap: 8px !important;
        flex-wrap: wrap !important;
        overflow: hidden !important;
    }
    
    .top-nav-link {
        white-space: nowrap !important;
        flex-shrink: 0 !important;
    }
    
    .top-nav-right {
        flex: 0 0 auto !important;
        display: flex !important;
        flex-direction: row !important;
        flex-shrink: 0 !important;
    }
}

.nav-list {
    display: flex;
    list-style: none;
    gap: 18px;
    margin: 0;
    padding: 0;
    align-items: center;
}

.nav-item {
    text-decoration: none;
    color: #ffffff;
    font-size: 15px;
    font-weight: 600;
    padding: 14px 0;
    transition: all 0.3s ease;
    border-bottom: 3px solid transparent;
    white-space: nowrap;
    position: relative;
    letter-spacing: 0.5px;
}

.nav-item::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 3px;
    background: #0066cc;
    transition: width 0.3s ease;
}

.nav-item:hover {
    color: #0066cc;
    transform: translateY(-2px);
}

.nav-item:hover::after {
    width: 100%;
}

.nav-item.active {
    color: #0066cc;
    border-bottom-color: #0066cc;
}

.nav-item.active::after {
    width: 100%;
}

.nav-cnpk {
    background: #0066cc;
    color: white !important;
    padding: 10px 20px !important;
    border-radius: 6px;
    border-bottom: none !important;
    font-weight: 700;
    letter-spacing: 1px;
}

.nav-cnpk::after {
    display: none;
}

.nav-cnpk:hover {
    background: #0052a3;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 102, 204, 0.4);
}

.nav-cnpk.active {
    background: #0066cc;
    color: white !important;
}

.main-header.sticky .nav-cnpk {
    padding: 8px 18px !important;
    font-size: 13px;
}

/* Right Logos */
.right-logos {
    display: flex;
    align-items: center;
}

.boi-circle-logo {
    background: #0066cc;
    color: white;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    font-weight: bold;
}

.uk-aid-logo {
    display: flex;
    align-items: center;
    gap: 8px;
}

.uk-flag {
    width: 28px;
    height: 18px;
    background: linear-gradient(to bottom, #012169 33%, white 33%, white 66%, #ce1126 66%);
    position: relative;
    border-radius: 2px;
}

.uk-flag::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        linear-gradient(45deg, transparent 40%, #ce1126 40%, #ce1126 60%, transparent 60%),
        linear-gradient(-45deg, transparent 40%, #ce1126 40%, #ce1126 60%, transparent 60%);
}

.uk-text {
    font-size: 10px;
    color: #ffffff;
    line-height: 1.1;
    font-weight: 500;
}

/* Hero Slider */
.hero-slider {
    height: 100vh;
    position: relative;
    overflow: hidden;
    margin-top: 0;
    perspective: 1000px;
}

.slider-container {
    height: 100%;
    position: relative;
    overflow: hidden;
    transform-style: preserve-3d;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transform: translateX(100%);
    transition: opacity 0.8s ease-in-out, transform 0.8s ease-in-out;
    z-index: 1;
}

.slide.active {
    opacity: 1;
    transform: translateX(0);
    z-index: 2;
}

.slide.prev {
    transform: translateX(-100%);
    opacity: 0;
}

.slide.slide-in-left {
    transform: translateX(0);
}

/* Simple slide animations removed - using CSS transitions instead */

/* Full Background Image */
.slide-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    overflow: hidden;
}

.slide-background::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 30%, rgba(0, 102, 204, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(243, 156, 18, 0.08) 0%, transparent 50%);
    z-index: 2;
    opacity: 0;
    animation: gradientPulse 4s ease-in-out infinite;
}

.slide.active .slide-background::before {
    opacity: 1;
}

.slide-background::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(180deg, 
        transparent 0%, 
        transparent 60%, 
        rgba(0, 0, 0, 0.2) 100%);
    z-index: 2;
    opacity: 0;
    transition: opacity 1s ease;
}

.slide.active .slide-background::after {
    opacity: 1;
}

/* Animated Shapes - Modern Geometric Elements */
.animated-shapes {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
    pointer-events: none;
    opacity: 0;
    display: none; /* Hidden to reduce overlay */
}

.slide.active .animated-shapes {
    opacity: 0;
    display: none;
}

.shape {
    position: absolute;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(0, 102, 204, 0.2) 0%, rgba(243, 156, 18, 0.2) 100%);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.1);
}

.shape-1 {
    width: 300px;
    height: 300px;
    top: 10%;
    right: 10%;
    animation: floatShape 8s ease-in-out infinite;
    box-shadow: 0 20px 60px rgba(0, 102, 204, 0.3);
}

.shape-2 {
    width: 200px;
    height: 200px;
    bottom: 15%;
    left: 15%;
    animation: floatShape 10s ease-in-out infinite reverse;
    box-shadow: 0 15px 40px rgba(243, 156, 18, 0.3);
}

.shape-3 {
    width: 150px;
    height: 150px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation: floatShape 12s ease-in-out infinite;
    box-shadow: 0 10px 30px rgba(0, 102, 204, 0.2);
}

@keyframes floatShape {
    0%, 100% {
        transform: translate(0, 0) rotate(0deg);
    }
    33% {
        transform: translate(30px, -30px) rotate(120deg);
    }
    66% {
        transform: translate(-20px, 20px) rotate(240deg);
    }
}

@keyframes gradientPulse {
    0%, 100% {
        opacity: 0.6;
        transform: scale(1);
    }
    50% {
        opacity: 1;
        transform: scale(1.1);
    }
}

.background-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    filter: brightness(1) contrast(1.05) saturate(1.1);
    transition: filter 0.8s ease;
}

.slide.active .background-image {
    filter: brightness(1.05) contrast(1.1) saturate(1.15);
}

.slide:not(.active) .background-image {
    filter: brightness(1) contrast(1.05) saturate(1.1);
}

/* Content Overlay - Only on Content Area */
.slide-content {
    display: none; /* Content area removed from slider */
}

.content-center {
    display: none; /* Content area removed from slider */
}

/* Slider Ticker - Bottom Left */
.slider-ticker {
    position: absolute;
    bottom: 80px;
    left: 30px;
    z-index: 10;
    opacity: 0;
    transform: translateX(-50px);
    transition: opacity 0.8s ease-out 0.5s, transform 0.8s ease-out 0.5s;
}

.slide.active .slider-ticker {
    opacity: 1;
    transform: translateX(0);
}

.slide:not(.active) .slider-ticker {
    opacity: 0;
    transform: translateX(-50px);
}

.ticker-content {
    background: linear-gradient(135deg, 
        rgba(0, 102, 204, 0.85) 0%, 
        rgba(0, 102, 204, 0.9) 100%);
    color: white;
    font-size: 18px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    padding: 15px 40px;
    border-left: 4px solid #0066cc;
    border-right: 4px solid #f39c12;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.5);
    white-space: nowrap;
    position: relative;
    border-radius: 4px;
}

.ticker-content::before {
    content: '';
    position: absolute;
    left: -4px;
    top: 0;
    bottom: 0;
    width: 4px;
    background: #0066cc;
    border-radius: 4px 0 0 4px;
}

.ticker-content::after {
    content: '';
    position: absolute;
    right: -4px;
    top: 0;
    bottom: 0;
    width: 4px;
    background: #f39c12;
    border-radius: 0 4px 4px 0;
}

.content-center {
    text-align: center;
    color: white;
    max-width: 90%;
    width: auto;
    position: relative;
    background: linear-gradient(135deg, 
        rgba(0, 0, 0, 0.25) 0%, 
        rgba(44, 62, 80, 0.3) 50%,
        rgba(0, 0, 0, 0.35) 100%);
    backdrop-filter: blur(8px) saturate(120%);
    -webkit-backdrop-filter: blur(8px) saturate(120%);
    padding: 50px 60px;
    margin: 0 auto;
    margin-bottom: 80px;
    border-top: 3px solid rgba(0, 102, 204, 0.6);
    overflow: hidden;
    box-shadow: 
        0 10px 40px rgba(0, 0, 0, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.15);
    border-left: 1px solid rgba(255, 255, 255, 0.15);
    border-right: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 8px;
}

.content-center::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, 
        transparent, 
        rgba(255, 255, 255, 0.1), 
        transparent);
    animation: shineEffect 3s ease-in-out infinite;
}

@keyframes shineEffect {
    0% {
        left: -100%;
    }
    100% {
        left: 100%;
    }
}

/* Content Animation Classes - Slide from right to left */
.content-center {
    opacity: 0;
    transform: translateX(100px);
    transition: opacity 1s ease-out 0.3s, transform 1s ease-out 0.3s;
}

.slide.active .content-center {
    opacity: 1;
    transform: translateX(0);
}

/* Slide 2 (Private Sector) - No animation, just fade */
.slide[data-slide="1"] .content-center {
    transform: translateX(0);
    transition: opacity 0.8s ease-out 0.3s;
}

.slide[data-slide="1"].active .content-center {
    opacity: 1;
    transform: translateX(0);
}

/* Reset animations for non-active slides */
.slide:not(.active) .content-center {
    opacity: 0;
    transform: translateX(100px);
}

.slide[data-slide="1"]:not(.active) .content-center {
    transform: translateX(0);
}

.content-center .main-heading {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease-out 0.5s, transform 0.8s ease-out 0.5s;
}

.content-center .sub-heading {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.8s ease-out 0.7s, transform 0.8s ease-out 0.7s;
}

.content-center .urdu-text {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.8s ease-out 0.9s, transform 0.8s ease-out 0.9s;
}

.slide.active .content-center .main-heading,
.slide.active .content-center .sub-heading,
.slide.active .content-center .urdu-text {
    opacity: 1;
    transform: translateY(0);
}

/* Reset animations for non-active slides */
.slide:not(.active) .content-center .main-heading,
.slide:not(.active) .content-center .sub-heading,
.slide:not(.active) .content-center .urdu-text {
    opacity: 0;
    transform: translateY(30px);
}

/* Simple slide up fade in - using CSS transitions instead */

@keyframes fadeInWithGlow {
    0% {
        opacity: 0;
        filter: blur(10px);
    }
    100% {
        opacity: 1;
        filter: blur(0);
    }
}

@keyframes fadeInScale {
    0% {
        opacity: 0;
        transform: scale(0.9);
    }
    100% {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes slideInLeft {
    0% {
        opacity: 0;
        transform: translateX(-100px);
    }
    100% {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInRight {
    0% {
        opacity: 0;
        transform: translateX(100px);
    }
    100% {
        opacity: 1;
        transform: translateX(0);
    }
}

.content-center::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, 
        rgba(255, 255, 255, 0.15) 0%, 
        rgba(255, 255, 255, 0.08) 50%, 
        rgba(255, 255, 255, 0.15) 100%);
    pointer-events: none;
    opacity: 0;
    animation: fadeIn 1s ease-out 0.5s forwards;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

/* Remove all animation keyframes and triggers */

.heading-wrapper {
    position: relative;
    display: inline-block;
    margin-bottom: 25px;
}

.main-heading {
    font-size: 56px;
    font-weight: 900;
    line-height: 1.2;
    margin: 0;
    text-shadow: 4px 4px 20px rgba(0,0,0,0.9), 0 0 40px rgba(0, 102, 204, 0.4);
    letter-spacing: 4px;
    color: white;
    position: relative;
    z-index: 2;
    text-transform: uppercase;
    will-change: transform, opacity;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}

.main-heading .word {
    display: inline-block;
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
    position: relative;
}

.main-heading .word:nth-child(1) {
    transition-delay: 0.2s;
}

.main-heading .word:nth-child(2) {
    transition-delay: 0.4s;
}

.main-heading .word:nth-child(3) {
    transition-delay: 0.6s;
}

.main-heading .word:nth-child(4) {
    transition-delay: 0.8s;
}

.slide.active .main-heading .word {
    opacity: 1;
    transform: translateY(0);
}

.main-heading::before {
    content: '';
    position: absolute;
    left: -30px;
    top: 0;
    bottom: 0;
    width: 8px;
    background: linear-gradient(180deg, #0066cc 0%, #f39c12 100%);
    border-radius: 4px;
    opacity: 0;
    transform: scaleY(0);
    box-shadow: 0 0 20px rgba(0, 102, 204, 0.6);
    animation: accentLineGrow 1s ease-out 0.5s forwards;
}

@keyframes accentLineGrow {
    0% {
        opacity: 0;
        transform: scaleY(0);
    }
    100% {
        opacity: 1;
        transform: scaleY(1);
    }
}

.sub-heading {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 20px;
    text-shadow: 2px 2px 12px rgba(0,0,0,0.9), 0 0 25px rgba(0, 102, 204, 0.4);
    letter-spacing: 3px;
    color: rgba(255, 255, 255, 0.98);
    position: relative;
    z-index: 2;
    text-transform: uppercase;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.8s ease-out 0.5s, transform 0.8s ease-out 0.5s;
    display: inline-block;
    padding: 10px 30px;
    background: rgba(0, 102, 204, 0.2);
    border-left: 3px solid #0066cc;
    border-right: 3px solid #f39c12;
}

.urdu-text {
    font-size: 32px;
    font-weight: bold;
    direction: rtl;
    text-shadow: 2px 2px 12px rgba(0,0,0,0.9), 0 0 30px rgba(243, 156, 18, 0.5);
    font-family: 'Noto Nastaliq Urdu', serif;
    margin-top: 15px;
    color: white;
    position: relative;
    z-index: 2;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.8s ease-out 0.7s, transform 0.8s ease-out 0.7s;
    display: inline-block;
    padding: 8px 25px;
    background: rgba(243, 156, 18, 0.2);
    border-radius: 8px;
    border: 2px solid rgba(243, 156, 18, 0.4);
}

/* Removed animation keyframes */

/* Slider Controls */
.slider-controls {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 100%;
    display: flex;
    justify-content: space-between;
    padding: 0 30px;
    pointer-events: none;
    z-index: 10;
}

.slider-controls .slider-arrow {
    pointer-events: all;
}

.slider-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: linear-gradient(135deg, #0066cc 0%, #0052a3 100%);
    color: white;
    border: 3px solid white;
    width: 60px;
    height: 60px;
    font-size: 28px;
    font-weight: bold;
    cursor: pointer;
    z-index: 10;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 102, 204, 0.5), 0 0 20px rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(10px);
}

.slider-arrow:hover {
    background: linear-gradient(135deg, #0052a3 0%, #0066cc 100%);
    transform: translateY(-50%) scale(1.15);
    box-shadow: 0 6px 25px rgba(0, 102, 204, 0.7), 0 0 30px rgba(255, 255, 255, 0.5);
    border-color: #f39c12;
}

.slider-arrow:active {
    transform: translateY(-50%) scale(1.05);
}

.prev-arrow {
    left: 30px;
}

.next-arrow {
    right: 30px;
}

/* Slider Dots */
.slider-dots {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 12px;
    z-index: 10;
    background: rgba(0, 0, 0, 0.5);
    padding: 12px 20px;
    border-radius: 30px;
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.3);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.dot {
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.4);
    border: 2px solid rgba(255, 255, 255, 0.6);
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    pointer-events: all;
}

.dot::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 0;
    height: 0;
    border-radius: 50%;
    background: white;
    transition: all 0.3s ease;
}

.dot:hover {
    background: rgba(255, 255, 255, 0.6);
    border-color: rgba(255, 255, 255, 0.9);
    transform: scale(1.2);
}

.dot.active {
    background: #0066cc;
    border-color: white;
    transform: scale(1.4);
    box-shadow: 0 0 15px rgba(0, 102, 204, 0.8), 0 0 25px rgba(255, 255, 255, 0.5);
}

.dot.active::before {
    width: 6px;
    height: 6px;
    background: white;
}

/* Investment Sectors Section */
.investment-sectors {
    position: relative;
    z-index: 20;
    margin-top: -80px;
    margin-bottom: 60px;
    display: flex;
    justify-content: center;
    padding: 0 20px;
}

.sectors-container {
    display: flex;
    justify-content: center;
    align-items: center;
    background: linear-gradient(135deg, 
        rgba(255, 255, 255, 0.98) 0%, 
        rgba(248, 250, 252, 0.95) 100%);
    backdrop-filter: blur(20px);
    border-radius: 20px;
    padding: 35px 45px;
    box-shadow: 
        0 25px 50px rgba(0, 0, 0, 0.1),
        0 10px 20px rgba(0, 0, 0, 0.06),
        inset 0 1px 0 rgba(255, 255, 255, 0.9);
    border: 2px solid rgba(0, 102, 204, 0.15);
    gap: 30px;
    max-width: 1100px;
    width: 100%;
    position: relative;
    animation: slideUp 0.8s ease-out;
}

.sectors-container::after {
    content: '';
    position: absolute;
    top: -2px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 4px;
    background: linear-gradient(90deg, #0066cc 0%, #f39c12 100%);
    border-radius: 0 0 4px 4px;
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.sector-item {
    display: flex;
    align-items: center;
    gap: 16px;
    flex: 1;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    padding: 25px 20px;
    border-radius: 12px;
    position: relative;
    background: rgba(255, 255, 255, 0.95);
    border: 2px solid rgba(0, 102, 204, 0.1);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

.sector-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: linear-gradient(180deg, #0066cc 0%, #f39c12 100%);
    border-radius: 12px 0 0 12px;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.sector-item:hover {
    background: linear-gradient(135deg, rgba(0, 102, 204, 0.1) 0%, rgba(243, 156, 18, 0.05) 100%);
    transform: translateY(-6px);
    box-shadow: 0 12px 30px rgba(0, 102, 204, 0.25);
    border-color: rgba(0, 102, 204, 0.4);
}

.sector-item:hover::before {
    opacity: 1;
}

.sector-icon {
    font-size: 28px;
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, 
        rgba(0, 102, 204, 0.15) 0%, 
        rgba(0, 102, 204, 0.08) 100%);
    border-radius: 50%;
    flex-shrink: 0;
    transition: all 0.3s ease;
    border: 2px solid rgba(0, 102, 204, 0.2);
}

.sector-item:hover .sector-icon {
    transform: scale(1.05);
    background: linear-gradient(135deg, 
        rgba(0, 102, 204, 0.25) 0%, 
        rgba(0, 102, 204, 0.15) 100%);
    border-color: rgba(0, 102, 204, 0.3);
    box-shadow: 0 4px 12px rgba(0, 102, 204, 0.2);
}

.sector-text {
    display: flex;
    flex-direction: column;
    line-height: 1.3;
    transition: all 0.3s ease;
}

.sector-title {
    font-size: 15px;
    font-weight: 700;
    color: #2c3e50;
    transition: color 0.3s ease;
    margin-bottom: 2px;
}

.sector-item:hover .sector-title {
    color: #0066cc;
}

.sector-subtitle {
    font-size: 13px;
    font-weight: 500;
    color: #666;
    transition: color 0.3s ease;
}

.sector-item:hover .sector-subtitle {
    color: #555;
}

.sector-icon {
    font-size: 28px;
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, 
        rgba(0, 102, 204, 0.15) 0%, 
        rgba(0, 102, 204, 0.08) 100%);
    border-radius: 50%;
    flex-shrink: 0;
    transition: all 0.3s ease;
    border: 2px solid rgba(0, 102, 204, 0.2);
}

.sector-item:hover .sector-icon {
    transform: scale(1.05);
    background: linear-gradient(135deg, 
        rgba(0, 102, 204, 0.25) 0%, 
        rgba(0, 102, 204, 0.15) 100%);
    border-color: rgba(0, 102, 204, 0.3);
    box-shadow: 0 4px 12px rgba(0, 102, 204, 0.2);
}

.sector-text {
    display: flex;
    flex-direction: column;
    line-height: 1.3;
    transition: all 0.3s ease;
}

.sector-title {
    font-size: 15px;
    font-weight: 700;
    color: #2c3e50;
    transition: color 0.3s ease;
    margin-bottom: 2px;
}

.sector-item:hover .sector-title {
    color: #0066cc;
}

.sector-subtitle {
    font-size: 13px;
    font-weight: 500;
    color: #666;
    transition: color 0.3s ease;
}

.sector-item:hover .sector-subtitle {
    color: #555;
}

/* Industries Flourish Section */
.industries-section {
    padding: 100px 0 160px 0;
    background: white;
    position: relative;
    background-image: url('bgmap.png');
    background-size: 800px auto;
    background-repeat: no-repeat;
    background-position: center 80%;
}

/* Remove overlay to show clear bgmap */
.industries-section::before {
    display: none;
}

.industries-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
    text-align: center;
    position: relative;
    z-index: 2;
}

.industries-header {
    margin-bottom: 80px;
}

.industries-title {
    font-size: 42px;
    font-weight: 700;
    color: #0066cc;
    margin-bottom: 25px;
    line-height: 1.2;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.flourish-text {
    color: #0066cc;
    font-style: italic;
    font-weight: 900;
    text-shadow: 0 2px 4px rgba(0, 102, 204, 0.2);
    position: relative;
    display: inline-block;
}

.flourish-text::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #0066cc 0%, #f39c12 100%);
    border-radius: 2px;
    opacity: 0.6;
}

.industries-grid {
    display: flex;
    flex-direction: column;
    gap: 80px;
    margin-bottom: 140px;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
    padding: 0 20px;
    position: relative;
    z-index: 3;
}

.industry-row {
    display: flex;
    justify-content: center;
    gap: 100px;
    flex-wrap: wrap;
}

/* Bottom row with only 3 items - center them */
.industry-row:last-child {
    justify-content: center;
    max-width: 600px;
    margin: 0 auto;
}

.industry-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 30px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
}

.industry-card::after {
    content: '';
    position: absolute;
    top: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 4px;
    background: linear-gradient(90deg, #0066cc 0%, #f39c12 100%);
    border-radius: 2px;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.industry-card:hover {
    transform: translateY(-12px);
}

.industry-card:hover::after {
    opacity: 1;
}

.diamond-image {
    width: 180px;
    height: 180px;
    transform: rotate(45deg);
    overflow: hidden;
    border-radius: 15px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    transition: all 0.3s ease;
}

.diamond-image:hover {
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.25);
    transform: rotate(45deg) scale(1.05);
}

.diamond-image img {
    width: 250px;
    height: 250px;
    object-fit: cover;
    transform: rotate(-45deg) scale(1.4);
    transform-origin: center;
    filter: brightness(1.1) contrast(1.2) saturate(1.15);
    transition: filter 0.4s ease, transform 0.4s ease;
}

.industry-card:hover .diamond-image img {
    filter: brightness(1.2) contrast(1.3) saturate(1.25);
    transform: rotate(-45deg) scale(1.45);
}

.industry-title {
    font-size: 16px;
    font-weight: 600;
    color: #e74c3c;
    margin: 0;
    text-align: center;
    max-width: 180px;
}

.pakistan-map-section {
    position: relative;
    margin: 80px 0;
    height: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(to bottom, rgba(240, 248, 255, 0.3), rgba(255, 255, 255, 0.8));
}

.pakistan-map-image {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
}

.map-image {
    max-width: 400px;
    width: 100%;
    height: auto;
    object-fit: contain;
    filter: drop-shadow(0 4px 15px rgba(0, 0, 0, 0.2));
    border-radius: 10px;
}

.explore-button-container {
    margin-top: 280px;
    position: relative;
    z-index: 3;
}

.explore-sectors-btn {
    background: linear-gradient(135deg, #0066cc 0%, #0052a3 100%);
    color: white;
    border: none;
    padding: 18px 50px;
    font-size: 18px;
    font-weight: 700;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    text-transform: uppercase;
    letter-spacing: 2px;
    box-shadow: 0 8px 25px rgba(0, 102, 204, 0.4);
    position: relative;
    overflow: hidden;
    border: 3px solid rgba(255, 255, 255, 0.3);
}

.explore-sectors-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.5s ease;
}

.explore-sectors-btn:hover {
    background: linear-gradient(135deg, #0052a3 0%, #0066cc 100%);
    transform: translateY(-4px) scale(1.05);
    box-shadow: 0 12px 35px rgba(0, 102, 204, 0.6);
    border-color: rgba(255, 255, 255, 0.5);
}

.explore-sectors-btn:hover::before {
    left: 100%;
}

.explore-sectors-btn:active {
    transform: translateY(-2px) scale(1.02);
}



/* Main Content */
.main-content {
    padding: 40px 0;
    min-height: calc(100vh - 200px);
}

.news-feed {
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    overflow: hidden;
    max-width: 1200px;
    margin: 0 auto;
}

.news-item {
    border-bottom: 1px solid #eee;
    padding: 30px;
    transition: background-color 0.3s ease;
}

.news-item:last-child {
    border-bottom: none;
}

.news-item:hover {
    background-color: #f8f9fa;
}

.news-content h2 {
    font-size: 20px;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 15px;
    line-height: 1.4;
}

.news-content p {
    color: #666;
    margin-bottom: 20px;
    font-size: 16px;
    line-height: 1.6;
}

.news-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.date {
    color: #888;
    font-size: 14px;
    font-weight: 500;
}

.read-more {
    background: linear-gradient(135deg, #0066cc 0%, #0052a3 100%);
    color: white;
    text-decoration: none;
    font-weight: 700;
    font-size: 14px;
    padding: 10px 24px;
    border-radius: 25px;
    display: inline-block;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 102, 204, 0.3);
    border: 2px solid rgba(255, 255, 255, 0.1);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.read-more:hover {
    background: linear-gradient(135deg, #0052a3 0%, #0066cc 100%);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 102, 204, 0.5);
    border-color: rgba(255, 255, 255, 0.3);
    text-decoration: none;
}

/* Main Footer */
.main-footer {
    background: linear-gradient(180deg, #2c3e50 0%, #1a252f 100%);
    background-image: url('bg-footer-1.png');
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    margin-top: 0;
    position: relative;
    overflow: hidden;
}

.main-footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(180deg, rgba(44, 62, 80, 0.95) 0%, rgba(26, 37, 47, 0.98) 100%);
    z-index: 1;
}

.footer-content {
    padding: 80px 0 50px;
    border-bottom: 2px solid rgba(0, 102, 204, 0.3);
    position: relative;
    z-index: 2;
}

.footer-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 50px;
}

.footer-contact-container {
    display: flex;
    justify-content: center;
}

.footer-contact-card {
    width: 100%;
    max-width: 900px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 18px;
    padding: 40px 45px;
    backdrop-filter: blur(10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.25);
    text-align: left;
}

.footer-contact-header {
    margin-bottom: 24px;
}

.footer-contact-subtitle {
    color: rgba(255, 255, 255, 0.75);
    font-size: 15px;
    margin-top: 8px;
}

.footer-contact-body {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 24px;
    margin-bottom: 24px;
}

.footer-contact-block .contact-address,
.footer-contact-block .contact-phone,
.footer-contact-block .contact-fax,
.footer-contact-block .contact-email {
    color: rgba(255, 255, 255, 0.9);
}

.footer-contact-social {
    display: flex;
    align-items: center;
    gap: 16px;
}

.footer-contact-label {
    color: rgba(255, 255, 255, 0.7);
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
}

.footer-column {
    display: flex;
    flex-direction: column;
}

.footer-title {
    font-size: 16px;
    font-weight: 800;
    color: #0066cc;
    margin-bottom: 25px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    position: relative;
    padding-bottom: 12px;
}

.footer-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 3px;
    background: linear-gradient(90deg, #0066cc 0%, #f39c12 100%);
    border-radius: 2px;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 8px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    font-size: 14px;
    line-height: 1.6;
    transition: all 0.3s ease;
    display: inline-block;
    padding: 4px 0;
    position: relative;
}

.footer-links a::before {
    content: '→';
    position: absolute;
    left: -20px;
    opacity: 0;
    color: #0066cc;
    transition: all 0.3s ease;
    font-weight: bold;
}

.footer-links a:hover {
    color: #0066cc;
    transform: translateX(5px);
    padding-left: 5px;
}

.footer-links a:hover::before {
    opacity: 1;
    left: -15px;
}

/* Contact Column */
.contact-column {
    padding-left: 20px;
}

.contact-info {
    font-size: 14px;
    line-height: 1.8;
}

.contact-address {
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 20px;
    font-weight: 500;
    line-height: 1.7;
}

.contact-phone,
.contact-fax {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 500;
}

.contact-phone::before {
    content: '📞';
    font-size: 16px;
}

.contact-fax::before {
    content: '📠';
    font-size: 16px;
}

.contact-email {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 25px;
    font-weight: 500;
}

.contact-email a {
    color: #0066cc;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-block;
}

.contact-email a:hover {
    color: #f39c12;
    text-decoration: underline;
    transform: translateX(3px);
}

/* Social Links */
.social-links {
    display: flex;
    gap: 10px;
    margin-top: 15px;
}

.social-link {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    font-size: 14px;
    font-weight: bold;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 2px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
}

.social-link.facebook:hover {
    background: #1877f2;
    color: white;
    transform: translateY(-4px) scale(1.1);
    border-color: #1877f2;
    box-shadow: 0 6px 20px rgba(24, 119, 242, 0.4);
}

.social-link.twitter:hover {
    background: #1da1f2;
    color: white;
    transform: translateY(-4px) scale(1.1);
    border-color: #1da1f2;
    box-shadow: 0 6px 20px rgba(29, 161, 242, 0.4);
}

.social-link.linkedin:hover {
    background: #0077b5;
    color: white;
    transform: translateY(-4px) scale(1.1);
    border-color: #0077b5;
    box-shadow: 0 6px 20px rgba(0, 119, 181, 0.4);
}

.social-link.youtube:hover {
    background: #ff0000;
    color: white;
    transform: translateY(-4px) scale(1.1);
    border-color: #ff0000;
    box-shadow: 0 6px 20px rgba(255, 0, 0, 0.4);
}

/* Footer Bottom */
.footer-bottom {
    background: linear-gradient(90deg, #1a252f 0%, #2c3e50 100%);
    padding: 30px 0;
    position: relative;
    z-index: 2;
    border-top: 1px solid rgba(0, 102, 204, 0.2);
}

.footer-bottom-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
    z-index: 2;
}

.footer-logo {
    display: flex;
    align-items: center;
}

.boi-logo-footer {
    display: flex;
    align-items: center;
}

.logo-circle {
    background: linear-gradient(135deg, #0066cc 0%, #0052a3 100%);
    color: white;
    width: auto;
    min-width: 70px;
    height: 50px;
    border-radius: 8px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    font-weight: 800;
    box-shadow: 0 4px 15px rgba(0, 102, 204, 0.4);
    border: 2px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
    padding: 6px 12px;
    gap: 0;
}

.logo-circle .cnpk-text-main {
    font-size: 18px;
    line-height: 1;
    font-weight: 900;
    letter-spacing: 1px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.logo-circle .boi-text-sub {
    display: none; /* BOI removed, only CNPK shown */
}

.logo-circle:hover {
    transform: scale(1.1) rotate(2deg);
    box-shadow: 0 6px 25px rgba(0, 102, 204, 0.6);
}

.footer-copyright {
    text-align: center;
    color: rgba(255, 255, 255, 0.7);
    font-size: 13px;
    line-height: 1.6;
    flex: 1;
}

.footer-copyright p {
    margin: 4px 0;
}

.footer-credits {
    text-align: right;
    color: rgba(255, 255, 255, 0.6);
    font-size: 12px;
}

.footer-credits strong {
    color: #0066cc;
    font-weight: 700;
}

/* Responsive Design */
@media (max-width: 768px) {
    .footer-container {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }
    
    .contact-column {
        padding-left: 0;
        grid-column: 1 / -1;
    }
    
    .footer-bottom-container {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }
    
    .footer-credits {
        text-align: center;
    }
}

@media (max-width: 480px) {
    .footer-container {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    .footer-content {
        padding: 40px 0 30px;
    }

    .footer-contact-card {
        padding: 30px 25px;
    }

    .footer-contact-body {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .footer-contact-social {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .footer-title {
        font-size: 13px;
    }
    
    .footer-links a {
        font-size: 12px;
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .top-nav-bar {
        flex-direction: column;
        gap: 10px;
        padding: 10px;
        font-size: 10px;
    }
    
    .main-header {
        top: 0;
        padding: 12px 0;
        position: fixed;
    }
    
    .main-header.sticky {
        top: 0;
        padding: 10px 0;
        position: fixed;
    }
    
    body {
        padding-top: 0;
    }

    .hero-slider {
        margin-top: 0;
        height: 100vh;
    }
    
    .header-container {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
        gap: 20px;
        padding: 0 20px;
    }
    
    .logo-section {
        flex: 0 0 auto;
    }
    
    /* Show hamburger menu on tablet */
    .hamburger-menu {
        display: flex;
        width: 32px;
        height: 26px;
    }
    
    /* Hide regular navigation, show mobile menu */
    .main-navigation {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100vh;
        background: rgba(0, 0, 0, 0.98);
        backdrop-filter: blur(10px);
        z-index: 999;
        display: flex;
        justify-content: center;
        align-items: center;
        transform: translateX(-100%);
        transition: transform 0.3s ease-in-out;
        padding: 100px 20px 20px;
        overflow-y: auto;
    }
    
    .main-navigation.active {
        transform: translateX(0);
    }
    
    .nav-list {
        flex-direction: column;
        gap: 0;
        width: 100%;
        max-width: 400px;
    }
    
    .nav-item {
        font-size: 16px;
        padding: 18px 20px;
        text-align: center;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        width: 100%;
        display: block;
        border-radius: 8px;
        margin-bottom: 5px;
        background: rgba(0, 102, 204, 0.1);
        transition: all 0.3s ease;
    }
    
    .nav-item:hover,
    .nav-item.active {
        background: rgba(0, 102, 204, 0.3);
        border-bottom-color: #0066cc;
        transform: translateX(5px);
    }
    
    .nav-item::after {
        display: none;
    }
    
    .nav-cnpk {
        padding: 8px 15px !important;
        font-size: 13px;
    }
    
    .hero-slider {
        height: 100vh;
    }
    
    .slide-content {
        padding: 0;
    }
    
    .content-center {
        max-width: 100%;
        width: 100vw;
        padding: 30px 20px;
        margin: 0;
        margin-bottom: 80px;
    }
    
    .main-heading {
        font-size: 32px;
        margin-bottom: 20px;
        letter-spacing: 1px;
    }
    
    .sub-heading {
        font-size: 18px;
        margin-bottom: 15px;
    }
    
    .urdu-text {
        font-size: 24px;
        margin-top: 15px;
    }
    
    .slider-arrow {
        width: 50px;
        height: 50px;
        font-size: 24px;
    }
    
    .slider-dots {
        bottom: 30px;
        gap: 12px;
    }
    
    .dot {
        width: 14px;
        height: 14px;
    }
    
    .investment-sectors {
        margin-top: -70px;
        margin-bottom: 50px;
        padding: 0 15px;
    }
    
    .sectors-container {
        flex-direction: column;
        gap: 18px;
        padding: 22px 18px;
        justify-content: center;
        border-radius: 0;
    }
    
    .sector-item {
        width: 100%;
        justify-content: flex-start;
        padding: 16px 14px;
        border-radius: 0;
    }
    
    .sector-icon {
        font-size: 24px;
        width: 48px;
        height: 48px;
    }
    }
    
    .sector-title {
        font-size: 13px;
    }
    
    .sector-subtitle {
        font-size: 11px;
    }
    
    /* Industries Section Mobile */
    .industries-section {
        padding: 80px 0 140px 0;
        background-size: 600px auto;
        background-position: center 80%;
    }
    
    .industries-container {
        padding: 0 30px;
    }
    
    .industries-grid {
        margin-bottom: 80px;
    }
    
    .explore-button-container {
        margin-top: 200px;
    }
    
    .industries-header {
        margin-bottom: 60px;
    }
    
    .industries-title {
        font-size: 28px;
    }
    
    .industries-grid {
        gap: 60px;
        padding: 0 10px;
        margin-bottom: 100px;
    }
    
    .industry-row {
        gap: 70px;
    }
    
    /* Bottom row mobile - still centered */
    .industry-row:last-child {
        gap: 60px;
        max-width: 100%;
    }
    
    .diamond-image {
        width: 160px;
        height: 160px;
    }
    
    .diamond-image img {
        width: 220px;
        height: 220px;
    }
    
    .industry-title {
        font-size: 14px;
        max-width: 160px;
    }
    
    .industry-card {
        gap: 25px;
    }
    
    .diamond-image img {
        width: 190px;
        height: 190px;
    }
    
    .industry-title {
        font-size: 14px;
        max-width: 140px;
    }
    
    .pakistan-map-section {
        height: 300px;
        margin: 60px 0;
    }
    
    .pakistan-map {
        margin-top: 80px;
    }
    .pakistan-map-section {
        height: 250px;
        margin: 60px 0;
    }
    
    .map-image {
        max-width: 300px;
    }
    


@media (max-width: 480px) {
    /* Hide top-nav-bar on mobile 480px */
    .top-nav-bar {
        display: none !important;
    }
    
    body {
        padding-top: 0 !important;
    }
    
    .main-header {
        padding: 12px 0;
        top: 0;
        position: fixed;
        margin-top: 0;
    }
    
    .main-header.sticky {
        padding: 10px 0;
        top: 0;
        position: fixed;
        margin-top: 0;
    }
    
    .header-container {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
        gap: 15px;
        padding: 0 15px;
    }
    
    .logo-section {
        flex: 1;
        min-width: 0;
    }
    
    .invest-text,
    .pakistan-text {
        font-size: 14px;
    }
    
    .cnpk-badge {
        min-width: 60px;
        height: 45px;
    }
    
    .cnpk-text-main {
        font-size: 14px;
    }
    
    .hamburger-menu {
        flex: 0 0 auto;
        z-index: 1001;
    }
    
    body {
        padding-top: 0;
    }

    .hero-slider {
        margin-top: -70px;
        height: calc(100vh + 70px);
    }
    
    /* Show slider navigation on mobile with better visibility */
    .slider-controls {
        display: block;
    }
    
    .slider-dots {
        display: flex;
        bottom: 30px;
        padding: 10px 15px;
        gap: 8px;
    }
    
    .slider-arrow {
        display: flex;
        width: 50px;
        height: 50px;
        font-size: 22px;
        border-width: 2px;
    }
    
    .prev-arrow {
        left: 15px;
    }
    
    .next-arrow {
        right: 15px;
    }
    
    .dot {
        display: block;
        width: 12px;
        height: 12px;
    }
    
    .dot.active {
        transform: scale(1.3);
    }
    
    /* Enable touch scrolling for slider */
    .hero-slider {
        touch-action: pan-y;
        -webkit-overflow-scrolling: touch;
    }
    
    .slider-container {
        touch-action: pan-y pan-x;
        -webkit-overflow-scrolling: touch;
    }
    
    .invest-text,
    .pakistan-text {
        font-size: 16px;
    }
    
    .main-heading {
        font-size: 22px;
    }
    
    .sub-heading {
        font-size: 14px;
    }
    
    .urdu-text {
        font-size: 18px;
    }
    
    /* Hamburger Menu */
    /* Hamburger menu for mobile 480px */
    .hamburger-menu {
        display: flex;
        width: 30px;
        height: 24px;
    }
    
    .main-navigation {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100vh;
        background: rgba(0, 0, 0, 0.98);
        backdrop-filter: blur(10px);
        z-index: 999;
        display: flex;
        justify-content: center;
        align-items: center;
        transform: translateX(-100%);
        transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        padding: 80px 20px 20px;
        overflow-y: auto;
        -webkit-overflow-scrolling: touch;
    }
    
    .main-navigation.active {
        transform: translateX(0);
    }
    
    /* Add overlay effect when menu is open */
    .main-navigation.active::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: linear-gradient(135deg, rgba(0, 102, 204, 0.1) 0%, rgba(0, 82, 163, 0.1) 100%);
        pointer-events: none;
    }
    
    .nav-list {
        flex-direction: column;
        gap: 0;
        width: 100%;
        max-width: 300px;
    }
    
    .nav-item {
        font-size: 16px;
        padding: 18px 20px;
        text-align: center;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        width: 100%;
        display: block;
        border-radius: 8px;
        margin-bottom: 5px;
        background: rgba(0, 102, 204, 0.1);
        transition: all 0.3s ease;
    }
    
    .nav-item:hover,
    .nav-item.active {
        background: rgba(0, 102, 204, 0.3);
        border-bottom-color: #0066cc;
        transform: translateX(5px);
    }
    
    .nav-item::after {
        display: none;
    }
    
    .investment-sectors {
        margin-top: -60px;
        margin-bottom: 40px;
        padding: 0 10px;
    }
    
    .sectors-container {
        padding: 15px;
        gap: 10px;
        justify-content: center;
        border-radius: 0;
    }
    
    .sector-item {
        padding: 8px;
        border-radius: 0;
    }
    
    .sector-icon {
        font-size: 20px;
        width: 35px;
        height: 35px;
    }
    
    .sector-title {
        font-size: 12px;
    }
    
    .sector-subtitle {
        font-size: 10px;
    }
    
    /* Industries Section Small Mobile */
    .industries-section {
        background-size: 500px auto;
        background-position: center 85%;
        padding: 60px 0 120px 0;
    }
    
    .industries-title {
        font-size: 24px;
    }
    
    .industries-grid {
        gap: 30px;
        width: 100% !important;
        max-width: 100% !important;
    }
    
    .industries-container {
        padding: 0 15px;
        width: 100% !important;
        max-width: 100% !important;
    }
    
    .industry-row {
        display: flex !important;
        flex-direction: row !important;
        flex-wrap: wrap !important;
        gap: 15px !important;
        justify-content: center !important;
        max-width: 100% !important;
        width: 100% !important;
    }
    
    .industry-row:last-child {
        max-width: 100% !important;
        width: 100% !important;
        justify-content: center !important;
        display: flex !important;
        flex-direction: row !important;
        flex-wrap: wrap !important;
    }
    
    .industry-card {
        flex: 0 0 calc(50% - 8px) !important;
        max-width: calc(50% - 8px) !important;
        width: calc(50% - 8px) !important;
        min-width: 0 !important;
        gap: 18px;
        box-sizing: border-box;
    }
    
    .industry-row:last-child .industry-card:nth-child(1),
    .industry-row:last-child .industry-card:nth-child(2) {
        flex: 0 0 calc(50% - 8px) !important;
        max-width: calc(50% - 8px) !important;
        width: calc(50% - 8px) !important;
    }
    
    .industry-row:last-child .industry-card:nth-child(3) {
        flex: 0 0 calc(50% - 8px) !important;
        max-width: calc(50% - 8px) !important;
        width: calc(50% - 8px) !important;
        margin-top: 15px;
    }
    
    .diamond-image {
        width: 110px;
        height: 110px;
    }
    
    .diamond-image img {
        width: 155px;
        height: 155px;
    }
    
    .industry-title {
        font-size: 12px;
        max-width: 110px;
        text-align: center;
    }
    
    .explore-button-container {
        margin-top: 160px;
    }
    
    .explore-sectors-btn {
        padding: 12px 30px;
        font-size: 14px;
    }
    
    .pakistan-map-section {
        height: 200px;
        margin: 40px 0;
    }
    
    .map-image {
        max-width: 250px;
    }

}

/* Business Links Section */
.business-links-section {
    position: relative;
    z-index: 20;
    margin-top: -80px;
    margin-bottom: 40px;
    display: flex;
    justify-content: center;
    padding: 80px 20px 0 20px;
    background: linear-gradient(to bottom, 
        rgba(0,0,0,0.05) 0%, 
        rgba(0,0,0,0.02) 30%, 
        white 60%);
}

.business-links-container {
    display: flex;
    justify-content: center;
    align-items: center;
    background: linear-gradient(135deg, #f39c12 0%, #e67e22 100%);
    border-radius: 0;
    padding: 20px 40px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.2);
    gap: 40px;
    max-width: 1000px;
    width: 100%;
}

.business-link-item {
    display: flex;
    align-items: center;
    gap: 15px;
    color: white;
    cursor: pointer;
    transition: all 0.3s ease;
    padding: 15px 20px;
    border-radius: 8px;
    flex: 1;
    justify-content: center;
}

.business-link-item:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-2px);
}

.business-icon {
    font-size: 24px;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    flex-shrink: 0;
}

.business-text {
    display: flex;
    flex-direction: column;
    line-height: 1.2;
}

.business-title {
    font-size: 14px;
    font-weight: 600;
    color: white;
}

.business-subtitle {
    font-size: 12px;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.9);
}

.business-arrow {
    font-size: 20px;
    color: white;
    margin-left: 10px;
}

/* Responsive styles for business links */
@media (max-width: 768px) {
    .business-links-section {
        margin-top: -60px;
        padding: 60px 15px 0 15px;
    }
    
    .business-links-container {
        flex-direction: column;
        gap: 20px;
        padding: 25px 20px;
    }
    
    .business-link-item {
        width: 100%;
        justify-content: flex-start;
        padding: 15px;
    }
}

@media (max-width: 480px) {
    .business-links-section {
        margin-top: -50px;
        padding: 50px 10px 0 10px;
    }
    
    .business-links-container {
        padding: 20px 15px;
        gap: 15px;
    }
    
    .business-link-item {
        padding: 12px;
    }
    
    .business-icon {
        font-size: 20px;
        width: 35px;
        height: 35px;
    }
    
    .business-title {
        font-size: 13px;
    }
    
    .business-subtitle {
        font-size: 11px;
    }
}

/* Professional Investment Sectors Animations */

/* Why Pakistan Section */
.why-pakistan-section {
    background: linear-gradient(135deg, #1e3c72 0%, #2a5298 50%, #1e3c72 100%);
    background-size: 200% 100%;
    animation: gradientShift 8s ease infinite;
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.why-pakistan-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 50%, rgba(0, 102, 204, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 50%, rgba(243, 156, 18, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.why-pakistan-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
    text-align: center;
}

.why-pakistan-header {
    margin-bottom: 50px;
}

.why-pakistan-title {
    font-size: 42px;
    font-weight: 700;
    color: white;
    margin-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.why-pakistan-subtitle {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.8);
    font-weight: 300;
    margin: 0;
}

.statistics-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: repeat(2, 1fr);
    gap: 0;
    max-width: 1000px;
    margin: 0 auto;
}

.stat-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 45px 25px;
    background: rgba(255, 255, 255, 0.05);
    border-right: 1px solid rgba(255, 255, 255, 0.2);
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    min-height: 180px;
    backdrop-filter: blur(10px);
}

.stat-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0, 102, 204, 0.1) 0%, rgba(243, 156, 18, 0.1) 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.stat-item:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.stat-item:hover::before {
    opacity: 1;
}

.stat-item:nth-child(4n) {
    border-right: none;
}

.stat-item:nth-child(n+5) {
    border-bottom: none;
}

.stat-item:hover {
    background: rgba(255, 255, 255, 0.05);
}

.stat-icon {
    margin-bottom: 20px;
}

.stat-image {
    width: 55px;
    height: 55px;
    object-fit: contain;
    opacity: 0.95;
    filter: brightness(0) invert(1) drop-shadow(0 2px 4px rgba(255, 215, 0, 0.3));
    transition: all 0.4s ease;
}

.stat-item:hover .stat-image {
    transform: scale(1.15);
    filter: brightness(0) invert(1) drop-shadow(0 4px 8px rgba(255, 215, 0, 0.5));
}

.stat-number {
    font-size: 36px;
    font-weight: 300;
    color: #ffd700;
    line-height: 1;
    margin-bottom: 8px;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.stat-number sup {
    font-size: 18px;
    font-weight: 300;
}

.stat-label {
    font-size: 12px;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.9);
    text-align: center;
    line-height: 1.2;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Our Leadership Section */
.leadership-section {
    background: #ffffff;
    padding: 100px 0;
    position: relative;
}

.leadership-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
}

.leadership-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.leadership-text {
    position: relative;
}

.leadership-header {
    margin-bottom: 40px;
}

.leadership-title {
    font-size: 42px;
    font-weight: 700;
    color: #0066cc;
    margin: 0;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.leadership-nav {
    display: flex;
    gap: 10px;
}

.leadership-arrow {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 2px solid #0066cc;
    background: transparent;
    color: #0066cc;
    font-size: 24px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.leadership-arrow:hover {
    background: #0066cc;
    color: white;
    transform: scale(1.1);
}

.leadership-info {
    position: relative;
}

.leadership-name {
    font-size: 32px;
    font-weight: 700;
    color: #0066cc;
    margin: 0 0 10px 0;
    line-height: 1.2;
}

.leadership-position {
    font-size: 18px;
    font-weight: 400;
    color: #2c3e50;
    margin: 0 0 5px 0;
}

.leadership-country {
    font-size: 16px;
    font-weight: 400;
    color: #2c3e50;
    margin: 0 0 30px 0;
}

.leadership-description {
    font-size: 16px;
    line-height: 1.8;
    color: #2c3e50;
    margin: 0 0 30px 0;
    text-align: justify;
}

.leadership-read-more {
    background: linear-gradient(135deg, #0066cc 0%, #0052a3 100%);
    color: white;
    text-decoration: none;
    font-weight: 700;
    font-size: 16px;
    padding: 14px 32px;
    border-radius: 30px;
    display: inline-block;
    margin-top: 25px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 6px 20px rgba(0, 102, 204, 0.4);
    border: 2px solid rgba(255, 255, 255, 0.2);
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    overflow: hidden;
}

.leadership-read-more::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.5s ease;
}

.leadership-read-more:hover {
    background: linear-gradient(135deg, #0052a3 0%, #0066cc 100%);
    transform: translateY(-3px) translateX(5px);
    box-shadow: 0 10px 30px rgba(0, 102, 204, 0.6);
    border-color: rgba(255, 255, 255, 0.4);
}

.leadership-read-more:hover::before {
    left: 100%;
}

.leadership-read-more:active {
    transform: translateY(-1px) translateX(3px);
}

.leadership-image {
    position: relative;
    height: 100%;
    min-height: 420px;
    max-height: 480px;
}

.leadership-photo {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    border-radius: 0;
    border: 1px solid rgba(0, 102, 204, 0.15);
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.2);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.leadership-photo:hover {
    transform: scale(1.02);
    box-shadow: 0 22px 55px rgba(0, 0, 0, 0.26);
}

.leadership-text::before {
    content: '';
    position: absolute;
    left: -40px;
    top: 0;
    bottom: 0;
    width: 4px;
    background: linear-gradient(180deg, #0066cc 0%, #f39c12 100%);
    border-radius: 2px;
    opacity: 0.3;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .why-pakistan-section {
        padding: 50px 0;
    }
    
    .why-pakistan-container {
        padding: 0 20px;
    }
    
    .why-pakistan-title {
        font-size: 28px;
    }
    
    .why-pakistan-subtitle {
        font-size: 12px;
    }
    
    .statistics-grid {
        grid-template-columns: repeat(2, 1fr);
        grid-template-rows: repeat(4, 1fr);
    }
    
    .stat-item {
        padding: 30px 15px;
        min-height: 140px;
    }
    
    .stat-item:nth-child(4n) {
        border-right: 1px solid rgba(255, 255, 255, 0.2);
    }
    
    .stat-item:nth-child(2n) {
        border-right: none;
    }
    
    .stat-item:nth-child(n+7) {
        border-bottom: none;
    }
    
    /* Leadership Section Mobile */
    .leadership-section {
        padding: 60px 0;
    }
    
    .leadership-container {
        padding: 0 20px;
    }
    
    .leadership-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .leadership-title {
        font-size: 32px;
    }
    
    .leadership-name {
        font-size: 26px;
    }
    
    .leadership-image {
        min-height: 300px;
        max-height: 350px;
        order: -1;
    }
    
    .leadership-text::before {
        left: -20px;
    }
    
    .stat-image {
        width: 40px;
        height: 40px;
    }
    
    .stat-number {
        font-size: 28px;
    }
    
    .stat-number sup {
        font-size: 14px;
    }
    
    .stat-label {
        font-size: 10px;
    }
}

@media (max-width: 480px) {
    .why-pakistan-title {
        font-size: 24px;
    }
    
    .statistics-grid {
        grid-template-columns: 1fr;
        grid-template-rows: repeat(8, 1fr);
    }
    
    .stat-item {
        padding: 25px 15px;
        min-height: 120px;
    }
    
    .stat-item:nth-child(n) {
        border-right: none;
    }
    
    .stat-item:nth-child(n+8) {
        border-bottom: none;
    }
    
    .stat-image {
        width: 35px;
        height: 35px;
    }
    
    .stat-number {
        font-size: 24px;
    }
    
    .stat-label {
        font-size: 9px;
    }
}
/* Services Section */
.services-section {
    padding: 140px 0 100px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    position: relative;
    scroll-margin-top: 120px;
}

/* Services Detail Page */
.services-detail-section {
    background: #ffffff;
    padding: 140px 0 100px 0;
    scroll-margin-top: 120px;
}

.services-detail-container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 40px;
}

.services-detail-header {
    text-align: center;
    margin-bottom: 60px;
    padding-bottom: 30px;
    border-bottom: 2px solid rgba(0, 102, 204, 0.1);
}

.services-detail-title {
    font-size: 42px;
    font-weight: 700;
    color: var(--boi-primary);
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.services-detail-subtitle {
    font-size: 20px;
    color: var(--boi-text-light);
    font-weight: 500;
}

.services-detail-list {
    display: none;
}

.services-detail-grid {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.service-detail-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
    background: #ffffff;
    border-radius: 18px;
    padding: 28px 30px;
    border: 1px solid rgba(0, 102, 204, 0.08);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.06);
}

.service-detail-row.reverse .service-detail-media {
    order: 2;
}

.service-detail-media {
    height: 280px;
    overflow: hidden;
    border-radius: 16px;
    border: 1px solid rgba(0, 102, 204, 0.12);
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.08);
}

.service-detail-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.service-detail-body {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.service-detail-tag {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 54px;
    height: 54px;
    border-radius: 50%;
    background: rgba(0, 102, 204, 0.1);
    color: var(--boi-primary);
    font-weight: 800;
    font-size: 18px;
}

.service-detail-title {
    font-size: 22px;
    font-weight: 700;
    color: var(--boi-primary);
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.service-detail-text {
    font-size: 16px;
    line-height: 1.7;
    color: var(--boi-text);
    margin: 0;
}

.services-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    width: 100%;
}

/* Service cards */
.service-card.large {
    grid-column: auto;
    grid-row: auto;
}

.service-card {
    position: relative;
    height: 400px;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 2px solid transparent;
    border-radius: 18px;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
    background: #ffffff;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0, 102, 204, 0.1) 0%, rgba(243, 156, 18, 0.1) 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: 1;
}

.service-card:hover {
    border-color: rgba(0, 102, 204, 0.5);
    transform: scale(1.02);
}

.service-card:hover::before {
    opacity: 1;
}

.service-image {
    width: 100%;
    height: 100%;
    position: relative;
    overflow: hidden;
}

.service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease, filter 0.6s ease;
    transform: scale(1.12);
    filter: brightness(0.9) contrast(1.1);
}

.service-card:hover .service-image img {
    filter: brightness(1) contrast(1.2) saturate(1.1);
}

.service-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.75));
    padding: 40px 30px 30px;
    color: white;
    transition: all 0.4s ease;
    z-index: 2;
    border-top: 4px solid transparent;
}

.service-card:hover .service-overlay {
    background: linear-gradient(transparent, rgba(0, 102, 204, 0.95));
    border-top-color: #f39c12;
    padding: 45px 30px 35px;
}

.service-title {
    font-size: 20px;
    font-weight: 700;
    margin: 0 0 12px 0;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
    line-height: 1.3;
    letter-spacing: 0.5px;
}

/* Hover Effects - Dramatic Zoom Out */
.service-card:hover .service-image img {
    transform: scale(1);
}

.service-card:hover .service-overlay {
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.9));
    padding: 40px 15px 20px;
}

.service-card:hover .service-title {
    transform: translateY(-5px);
    font-size: 15px;
}

.service-description {
    font-size: 15px;
    line-height: 1.6;
    margin-top: 10px;
    opacity: 0.95;
    display: block;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 0.95;
        transform: translateY(0);
    }
}

.services-header {
    text-align: center;
    margin-bottom: 70px;
    padding: 0 20px;
}

.services-title {
    font-size: 42px;
    font-weight: 700;
    color: #0066cc;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.services-subtitle {
    font-size: 18px;
    color: #666;
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.6;
}

/* Value Proposition Section */
.value-proposition-section {
    background: #ffffff;
    padding: 100px 0;
    position: relative;
    overflow: hidden;
    border-top: 1px solid rgba(0, 102, 204, 0.1);
    border-bottom: 1px solid rgba(0, 102, 204, 0.1);
}

.value-proposition-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 30%, rgba(0, 102, 204, 0.03) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(0, 102, 204, 0.03) 0%, transparent 50%);
    pointer-events: none;
}

.value-proposition-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.value-proposition-header {
    text-align: center;
    margin-bottom: 60px;
    padding-bottom: 30px;
    border-bottom: 2px solid rgba(0, 102, 204, 0.1);
}

.value-proposition-title {
    font-size: 42px;
    font-weight: 700;
    color: #0066cc;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.value-proposition-subtitle {
    font-size: 20px;
    color: #666;
    font-weight: 500;
}

.value-proposition-content {
    max-width: 1100px;
    margin: 0 auto;
}

.value-proposition-main {
    text-align: center;
    margin-bottom: 60px;
    padding: 0 20px;
}

.value-proposition-text {
    font-size: 19px;
    line-height: 1.9;
    color: #2c3e50;
    margin-bottom: 25px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.value-proposition-text strong {
    color: #0066cc;
    font-weight: 700;
}

.value-proposition-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin-top: 50px;
}

.value-proposition-item {
    background: white;
    padding: 50px 35px;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    text-align: center;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
}

.value-proposition-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #0066cc 0%, #f39c12 100%);
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.value-proposition-item:hover::before {
    transform: scaleX(1);
}

.value-proposition-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 50px rgba(0, 102, 204, 0.15);
    border-color: rgba(0, 102, 204, 0.2);
}

.value-item-number {
    font-size: 72px;
    font-weight: 900;
    background: linear-gradient(135deg, #0066cc 0%, #0052a3 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
    margin-bottom: 20px;
    opacity: 0.15;
    transition: all 0.4s ease;
}

.value-proposition-item:hover .value-item-number {
    opacity: 0.25;
    transform: scale(1.1);
}

.value-item-title {
    font-size: 24px;
    font-weight: 700;
    color: #0066cc;
    margin-bottom: 15px;
    transition: color 0.4s ease;
}

.value-proposition-item:hover .value-item-title {
    color: #f39c12;
}

.value-item-text {
    font-size: 16px;
    line-height: 1.7;
    color: #666;
    margin: 0;
}

/* About CNPK Section */
.about-cnpk-section {
    background: #ffffff;
    padding: 140px 0 100px 0;
    position: relative;
    margin-top: 0;
    scroll-margin-top: 120px;
}

.about-cnpk-container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 40px;
}

.about-cnpk-header {
    text-align: center;
    margin-bottom: 70px;
    padding-bottom: 30px;
    border-bottom: 2px solid rgba(0, 102, 204, 0.1);
}

.about-cnpk-title {
    font-size: 42px;
    font-weight: 700;
    color: var(--boi-primary);
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.about-cnpk-subtitle {
    font-size: 20px;
    color: var(--boi-text-light);
    font-weight: 500;
    margin: 0;
}

.about-cnpk-content {
    margin-bottom: 60px;
}

.about-cnpk-text {
    max-width: 900px;
    margin: 0 auto;
}

.about-cnpk-description {
    font-size: 17px;
    line-height: 1.8;
    color: #2c3e50;
    margin-bottom: 20px;
    text-align: left;
}

.about-cnpk-description:last-of-type {
    margin-bottom: 0;
}

.about-cnpk-description strong {
    color: #0066cc;
    font-weight: 600;
}

.learn-more-btn-container {
    text-align: center;
    margin-top: 40px;
    padding-top: 30px;
    border-top: 1px solid #e0e0e0;
}

.learn-more-btn-container {
    text-align: center;
    margin-top: 30px;
}

.learn-more-btn,
.view-all-btn,
.view-all-services-btn,
.vision-read-more,
.mission-read-more {
    display: inline-block;
    background: linear-gradient(135deg, #0066cc 0%, #0052a3 100%);
    color: white;
    text-decoration: none;
    font-weight: 700;
    font-size: 16px;
    padding: 14px 32px;
    border-radius: 30px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 6px 20px rgba(0, 102, 204, 0.4);
    border: 2px solid rgba(255, 255, 255, 0.2);
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    overflow: hidden;
}

.learn-more-btn::before,
.view-all-btn::before,
.view-all-services-btn::before,
.vision-read-more::before,
.mission-read-more::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.5s ease;
}

.learn-more-btn:hover,
.view-all-btn:hover,
.view-all-services-btn:hover,
.vision-read-more:hover,
.mission-read-more:hover {
    background: linear-gradient(135deg, #0052a3 0%, #0066cc 100%);
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0, 102, 204, 0.6);
    border-color: rgba(255, 255, 255, 0.4);
}

.learn-more-btn:hover::before,
.view-all-btn:hover::before,
.view-all-services-btn:hover::before,
.vision-read-more:hover::before,
.mission-read-more:hover::before {
    left: 100%;
}

.services-view-all,
.why-choose-view-all,
.network-learn-more {
    text-align: center;
    margin-top: 60px;
    padding: 0 20px;
}

.vision-read-more,
.mission-read-more {
    margin-top: 20px;
    display: inline-block;
}

.about-cnpk-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin-top: 60px;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
}

.about-cnpk-feature-block {
    background: #f8f9fa;
    padding: 40px 35px;
    display: flex;
    align-items: flex-start;
    gap: 25px;
    border-radius: 12px;
    border: 2px solid transparent;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.about-cnpk-feature-block::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: var(--boi-primary);
    transition: all 0.3s ease;
}

.about-cnpk-feature-block:hover {
    background: white;
    border-color: rgba(0, 102, 204, 0.2);
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 102, 204, 0.1);
}

.about-cnpk-feature-block:hover::before {
    width: 100%;
    opacity: 0.05;
}

.feature-icon {
    font-size: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 70px;
    height: 70px;
    background: white;
    border-radius: 12px;
    transition: all 0.3s ease;
    flex-shrink: 0;
    box-shadow: 0 4px 15px rgba(0, 102, 204, 0.1);
}

.about-cnpk-feature-block:hover .feature-icon {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 6px 20px rgba(0, 102, 204, 0.2);
}

.feature-content {
    flex: 1;
    position: relative;
    z-index: 1;
}

.feature-title {
    font-size: 22px;
    font-weight: 700;
    color: var(--boi-primary);
    margin-bottom: 12px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.feature-text {
    font-size: 16px;
    line-height: 1.7;
    color: var(--boi-text-light);
    margin: 0;
}

/* Why Choose CNPK Section */
.why-choose-cnpk-section {
    background: linear-gradient(135deg, #1e3c72 0%, #2a5298 50%, #1e3c72 100%);
    background-size: 200% 100%;
    animation: gradientShift 8s ease infinite;
    padding: 140px 0 100px 0;
    position: relative;
    overflow: hidden;
    scroll-margin-top: 120px;
}

/* Why Choose Detail Page */
.why-choose-detail-section {
    background: #ffffff;
    padding: 140px 0 100px 0;
    scroll-margin-top: 120px;
}

.why-choose-detail-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
}

.why-choose-detail-header {
    text-align: center;
    margin-bottom: 60px;
}

.why-choose-detail-title {
    font-size: 42px;
    font-weight: 700;
    color: var(--boi-primary);
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.why-choose-detail-subtitle {
    font-size: 20px;
    color: var(--boi-text-light);
    font-weight: 500;
}

.why-choose-detail-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}

.why-choose-detail-item {
    background: #f8f9fa;
    border-radius: 12px;
    padding: 28px 26px;
    display: flex;
    gap: 18px;
    border: 1px solid rgba(0, 102, 204, 0.08);
    transition: all 0.3s ease;
}

.why-choose-detail-item:hover {
    background: #ffffff;
    border-color: rgba(0, 102, 204, 0.2);
    box-shadow: 0 10px 30px rgba(0, 102, 204, 0.08);
    transform: translateY(-4px);
}

.why-choose-detail-icon {
    width: 44px;
    height: 44px;
    border-radius: 10px;
    background: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    box-shadow: 0 6px 16px rgba(0, 102, 204, 0.12);
    flex-shrink: 0;
}

.why-choose-detail-item-title {
    font-size: 18px;
    font-weight: 700;
    color: var(--boi-primary);
    margin-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.why-choose-detail-text {
    font-size: 15px;
    line-height: 1.7;
    color: var(--boi-text);
    margin: 0;
}

.why-choose-cnpk-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><circle cx="50" cy="50" r="2" fill="rgba(255,255,255,0.1)"/></svg>');
    opacity: 0.3;
}

.why-choose-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 1;
}

.why-choose-header {
    text-align: center;
    margin-bottom: 60px;
}

.why-choose-title {
    font-size: 42px;
    font-weight: 700;
    color: white;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.why-choose-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.why-choose-item {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 40px 30px;
    border-radius: 15px;
    text-align: center;
    transition: all 0.4s ease;
    border: 2px solid rgba(255, 255, 255, 0.2);
}

.why-choose-item:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
    border-color: rgba(255, 255, 255, 0.4);
}

.why-choose-icon {
    font-size: 48px;
    margin-bottom: 20px;
    display: block;
}

.why-choose-item-title {
    font-size: 22px;
    font-weight: 700;
    color: white;
    margin-bottom: 15px;
}

.why-choose-item-text {
    font-size: 16px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.9);
}

/* Vision & Mission Section */
/* Vision & Mission Page */
.vision-mission-page {
    background: #ffffff;
    padding: 140px 0 100px 0;
    scroll-margin-top: 120px;
}

.vision-mission-page-container {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 40px;
}

.vision-mission-page-header {
    text-align: center;
    margin-bottom: 50px;
    padding-bottom: 30px;
    border-bottom: 2px solid rgba(0, 102, 204, 0.1);
}

.vision-mission-page-title {
    font-size: 42px;
    font-weight: 700;
    color: var(--boi-primary);
    margin-bottom: 12px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.vision-mission-page-subtitle {
    font-size: 20px;
    color: var(--boi-text-light);
    font-weight: 500;
}

.vision-mission-page-content {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.vision-mission-block {
    padding: 0;
}

.vision-mission-block-title {
    font-size: 24px;
    font-weight: 700;
    color: var(--boi-primary);
    margin-bottom: 16px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.vision-mission-block-text {
    font-size: 17px;
    line-height: 1.85;
    color: var(--boi-text);
    margin-bottom: 18px;
}

.vision-mission-block-text:last-child {
    margin-bottom: 0;
}

.vision-mission-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.vision-mission-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
}

.vision-box,
.mission-box {
    background: white;
    padding: 50px;
    border-radius: 15px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    border-top: 5px solid #0066cc;
    transition: all 0.4s ease;
}

.vision-box:hover,
.mission-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.15);
}

.vision-title,
.mission-title {
    font-size: 42px;
    font-weight: 700;
    color: #0066cc;
    margin-bottom: 30px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.vision-text,
.mission-text {
    font-size: 17px;
    line-height: 1.8;
    color: #2c3e50;
    margin-bottom: 20px;
}

.mission-points {
    margin: 30px 0;
}

.mission-point {
    display: flex;
    align-items: flex-start;
    margin-bottom: 15px;
    font-size: 16px;
    line-height: 1.6;
    color: #2c3e50;
}

.mission-point-icon {
    color: #0066cc;
    font-weight: bold;
    font-size: 20px;
    margin-right: 15px;
    flex-shrink: 0;
}

/* Page Header Section */
.page-header-section {
    background: linear-gradient(135deg, #0066cc 0%, #0052a3 100%);
    padding: 100px 0 80px;
    margin-top: 100px;
    text-align: center;
    color: white;
    position: relative;
    overflow: hidden;
}

.page-header-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><circle cx="50" cy="50" r="2" fill="rgba(255,255,255,0.1)"/></svg>');
    opacity: 0.3;
}

.page-header-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 1;
}

.page-header-title {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 2px;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.page-header-subtitle {
    font-size: 22px;
    font-weight: 500;
    opacity: 0.95;
}

/* What We Do Section */
.what-we-do-section {
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    padding: 80px 0;
}

.what-we-do-container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 20px;
    text-align: center;
}

.what-we-do-title {
    font-size: 42px;
    font-weight: 700;
    color: #0066cc;
    margin-bottom: 30px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.what-we-do-text {
    font-size: 18px;
    line-height: 1.9;
    color: #2c3e50;
    margin-bottom: 25px;
}

/* What We Believe Section */
.what-we-believe-section {
    background: linear-gradient(135deg, #1e3c72 0%, #2a5298 50%, #1e3c72 100%);
    background-size: 200% 100%;
    animation: gradientShift 8s ease infinite;
    padding: 80px 0;
    color: white;
}

.what-we-believe-container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 20px;
    text-align: center;
}

.what-we-believe-title {
    font-size: 42px;
    font-weight: 700;
    color: white;
    margin-bottom: 30px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.what-we-believe-text {
    font-size: 18px;
    line-height: 1.9;
    margin-bottom: 40px;
    opacity: 0.95;
}

.belief-principles {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 50px;
}

.belief-principle {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 40px 30px;
    border-radius: 15px;
    border: 2px solid rgba(255, 255, 255, 0.2);
    transition: all 0.4s ease;
}

.belief-principle:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-10px);
    border-color: rgba(255, 255, 255, 0.4);
}

.belief-principle h3 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 15px;
    color: #f39c12;
}

.belief-principle p {
    font-size: 16px;
    line-height: 1.6;
    opacity: 0.9;
}

/* Our Approach Section */
.our-approach-section {
    background: linear-gradient(135deg, #2c3e50 0%, #1a252f 100%);
    padding: 100px 0;
    color: white;
}

.our-approach-container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 20px;
}

.our-approach-header {
    text-align: center;
    margin-bottom: 60px;
}

.our-approach-title {
    font-size: 42px;
    font-weight: 700;
    color: white;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.our-approach-content {
    text-align: center;
}

.our-approach-text {
    font-size: 20px;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 30px;
}

.our-approach-principles {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin-top: 60px;
}

.principle-item {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 40px 30px;
    border-radius: 15px;
    border: 2px solid rgba(255, 255, 255, 0.2);
    transition: all 0.4s ease;
}

.principle-item:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-10px);
    border-color: rgba(255, 255, 255, 0.4);
}

.principle-title {
    font-size: 24px;
    font-weight: 700;
    color: #f39c12;
    margin-bottom: 15px;
}

.principle-text {
    font-size: 16px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.9);
}

/* Our Network Section */
/* Our Network Detail Page */
.network-detail-section {
    background: #ffffff;
    padding: 140px 0 100px 0;
    scroll-margin-top: 120px;
}

.network-detail-container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 40px;
}

.network-detail-header {
    text-align: center;
    margin-bottom: 60px;
}

.network-detail-title {
    font-size: 42px;
    font-weight: 700;
    color: var(--boi-primary);
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.network-detail-subtitle {
    font-size: 20px;
    color: var(--boi-text-light);
    font-weight: 500;
}

.network-detail-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 30px;
    align-items: start;
}

.network-detail-text p {
    font-size: 16px;
    line-height: 1.8;
    color: var(--boi-text);
    margin-bottom: 18px;
}

.network-detail-points {
    background: #f8f9fa;
    border-radius: 12px;
    padding: 26px 24px;
    border: 1px solid rgba(0, 102, 204, 0.08);
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.network-point {
    background: #ffffff;
    border-radius: 10px;
    padding: 16px 18px;
    border-left: 4px solid var(--boi-primary);
}

.network-point-title {
    display: block;
    font-size: 16px;
    font-weight: 700;
    color: var(--boi-primary);
    margin-bottom: 6px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.network-point-text {
    font-size: 14px;
    color: var(--boi-text-light);
    line-height: 1.6;
}

/* Contact Page Section */
.contact-page-section {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    padding: 140px 0 100px 0;
    scroll-margin-top: 120px;
}

.contact-page-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
}

.contact-page-header {
    text-align: center;
    margin-bottom: 60px;
    padding-bottom: 30px;
    border-bottom: 2px solid rgba(0, 102, 204, 0.1);
}

.contact-page-title {
    font-size: 42px;
    font-weight: 700;
    color: var(--boi-primary);
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.contact-page-subtitle {
    font-size: 20px;
    color: var(--boi-text-light);
    font-weight: 500;
}

.contact-page-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    max-width: 1000px;
    margin: 0 auto;
}

.contact-page-details h3,
.contact-page-form-wrapper h3 {
    font-size: 24px;
    font-weight: 700;
    color: var(--boi-primary);
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.contact-page-details p {
    font-size: 16px;
    line-height: 1.8;
    color: var(--boi-text);
    margin-bottom: 15px;
}

.contact-page-details a {
    color: var(--boi-primary);
    text-decoration: none;
    font-weight: 600;
}

.contact-page-details a:hover {
    color: var(--boi-secondary);
    text-decoration: underline;
}

.contact-page-form-wrapper {
    background: white;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

.contact-page-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-row {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-row label {
    font-size: 14px;
    font-weight: 600;
    color: var(--boi-dark);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.form-row input,
.form-row textarea {
    padding: 12px 16px;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    font-size: 16px;
    font-family: inherit;
    transition: all 0.3s ease;
    background: #f8f9fa;
}

.form-row input:focus,
.form-row textarea:focus {
    outline: none;
    border-color: var(--boi-primary);
    background: white;
    box-shadow: 0 0 0 3px rgba(0, 102, 204, 0.1);
}

.form-row textarea {
    resize: vertical;
    min-height: 120px;
}

.our-network-container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 20px;
    text-align: center;
}

.our-network-header {
    margin-bottom: 50px;
}

.our-network-title {
    font-size: 42px;
    font-weight: 700;
    color: #0066cc;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.our-network-content {
    max-width: 800px;
    margin: 0 auto;
}

.our-network-text {
    font-size: 18px;
    line-height: 1.8;
    color: #2c3e50;
    margin-bottom: 25px;
}

/* Chairman's Message Section */
.chairman-message-section {
    background: linear-gradient(135deg, #1e3c72 0%, #2a5298 50%, #1e3c72 100%);
    background-size: 200% 100%;
    animation: gradientShift 8s ease infinite;
    padding: 100px 0;
    color: white;
    position: relative;
    overflow: hidden;
}

.chairman-message-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><circle cx="50" cy="50" r="2" fill="rgba(255,255,255,0.1)"/></svg>');
    opacity: 0.3;
}

.chairman-message-container {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 1;
}

.chairman-message-header {
    text-align: center;
    margin-bottom: 60px;
}

.chairman-message-title {
    font-size: 42px;
    font-weight: 700;
    color: white;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.chairman-message-content {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 50px;
    border-radius: 15px;
    border: 2px solid rgba(255, 255, 255, 0.2);
}

.chairman-message-text {
    font-size: 18px;
    line-height: 1.9;
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: 25px;
    text-align: justify;
}

.chairman-message-signature {
    font-size: 20px;
    font-weight: 600;
    color: #f39c12;
    margin-top: 40px;
    text-align: right;
    font-style: italic;
}

/* Responsive Design */
@media (max-width: 992px) {
    .services-section {
        padding: 80px 0;
    }
    
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }
    
    .service-card {
        height: 380px;
    }
    
    .service-title {
        font-size: 18px;
    }
    
    .service-description {
        font-size: 14px;
    }
}

@media (max-width: 768px) {
    .services-section {
        padding: 60px 0;
    }
    
    .services-header {
        margin-bottom: 50px;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .service-card {
        height: 350px;
    }
    
    .service-title {
        font-size: 18px;
    }
    
    .service-description {
        font-size: 14px;
    }
}

@media (max-width: 480px) {
    .services-section {
        padding: 50px 0;
    }
    
    .services-header {
        margin-bottom: 40px;
    }
    
    .service-card {
        height: 320px;
    }
    
    .service-title {
        font-size: 16px;
    }
    
    .service-description {
        font-size: 13px;
    }
    
    .service-overlay {
        padding: 30px 20px 25px;
    }
    
    /* Ticker Mobile Styles */
    .slider-ticker {
        bottom: 50px;
        left: 15px;
        right: 15px;
        max-width: calc(100% - 30px);
    }
    
    .ticker-content {
        font-size: 11px;
        padding: 8px 15px;
        letter-spacing: 0.5px;
        white-space: normal;
        line-height: 1.3;
    }
    
    /* Top Nav Bar Mobile - Already handled in main 480px query above */
    
    .top-nav-left {
        gap: 4px;
    }
    
    .top-nav-link {
        font-size: 9px;
    }
    
    .top-nav-separator {
        margin: 0 1px;
        font-size: 8px;
    }
    
    .top-social-links {
        gap: 5px;
    }
    
    .top-social-link {
        width: 24px;
        height: 24px;
        font-size: 10px;
    }
    
    /* Leadership Section Mobile 480px */
    .leadership-section {
        padding: 40px 0;
    }
    
    .leadership-container {
        padding: 0 15px;
    }
    
    .leadership-content {
        gap: 30px;
    }
    
    .leadership-title {
        font-size: 28px;
    }
    
    .leadership-name {
        font-size: 22px;
    }
    
    .leadership-position {
        font-size: 16px;
    }
    
    .leadership-country {
        font-size: 14px;
    }
    
    .leadership-description {
        font-size: 14px;
    }
    
    .leadership-image {
        min-height: 280px;
        max-height: 320px;
    }
    
    .leadership-arrow {
        width: 35px;
        height: 35px;
        font-size: 20px;
    }
}

/* Ticker Tablet Styles */
@media (max-width: 768px) {
    .slider-ticker {
        bottom: 60px;
        left: 20px;
    }
    
    .ticker-content {
        font-size: 14px;
        padding: 12px 25px;
        letter-spacing: 1.5px;
    }
    
    /* Top Nav Bar Tablet */
    .top-nav-bar {
        padding: 7px 15px;
        font-size: 10px;
    }
    
    .top-nav-link {
        font-size: 10px;
    }
    
    .top-social-link {
        width: 26px;
        height: 26px;
        font-size: 11px;
    }
}

/* Responsive Styles for New Sections */
@media (max-width: 992px) {
    .about-cnpk-content {
        padding: 50px 40px;
    }
    
    .about-cnpk-title {
        font-size: 36px;
    }
    
    .about-cnpk-subtitle {
        font-size: 17px;
    }
    
    .about-cnpk-description {
        font-size: 16px;
    }
    
    .why-choose-title,
    .vision-title,
    .mission-title,
    .our-approach-title,
    .our-network-title,
    .chairman-message-title {
        font-size: 36px;
    }
    
    .vision-mission-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .our-approach-principles {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .why-choose-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .belief-principles {
        grid-template-columns: 1fr;
        gap: 24px;
        margin-top: 35px;
    }
}

@media (max-width: 768px) {
    .about-cnpk-section,
    .why-choose-cnpk-section,
    .vision-mission-section,
    .our-approach-section,
    .our-network-section,
    .chairman-message-section,
    .services-section,
    .contact-page-section {
        padding: 120px 0 60px 0;
    }
    
    .contact-page-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .about-cnpk-title,
    .why-choose-title,
    .vision-title,
    .mission-title,
    .our-approach-title,
    .our-network-title,
    .chairman-message-title {
        font-size: 32px;
    }
    
    .vision-box,
    .mission-box {
        padding: 35px 25px;
    }
    
    .about-cnpk-content {
        padding: 45px 35px;
    }
    
    .about-cnpk-title {
        font-size: 32px;
    }
    
    .about-cnpk-subtitle {
        font-size: 16px;
    }
    
    .about-cnpk-description {
        font-size: 16px;
    }
    
    .vision-text,
    .mission-text,
    .our-approach-text,
    .our-network-text,
    .chairman-message-text {
        font-size: 16px;
    }
    
    .about-cnpk-features {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    .about-cnpk-feature-block {
        padding: 30px 25px;
        gap: 20px;
    }
    
    .feature-icon {
        font-size: 40px;
        min-width: 60px;
        height: 60px;
    }
    
    .feature-title {
        font-size: 18px;
    }
    
    .feature-text {
        font-size: 14px;
    }
    
    
    .why-choose-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .why-choose-item {
        padding: 30px 20px;
    }
    
    .chairman-message-content {
        padding: 35px 25px;
    }
    
    .services-header {
        margin-bottom: 40px;
    }
    
    .services-title {
        font-size: 32px;
    }
    
    .services-subtitle {
        font-size: 16px;
    }

    .services-detail-section,
    .why-choose-detail-section,
    .vision-mission-page,
    .network-detail-section {
        padding: 120px 0 60px 0;
    }

    .services-detail-container,
    .why-choose-detail-container,
    .vision-mission-page-container,
    .network-detail-container {
        padding: 0 30px;
    }

    .why-choose-detail-grid,
    .network-detail-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .about-cnpk-section,
    .why-choose-cnpk-section,
    .vision-mission-section,
    .our-approach-section,
    .our-network-section,
    .chairman-message-section,
    .services-section,
    .contact-page-section {
        padding: 100px 0 40px 0;
    }
    
    .contact-page-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .contact-page-form-wrapper {
        padding: 30px 25px;
    }

    .services-detail-section,
    .why-choose-detail-section,
    .vision-mission-page,
    .network-detail-section {
        padding: 100px 0 40px 0;
    }

    .services-detail-container,
    .why-choose-detail-container,
    .vision-mission-page-container,
    .network-detail-container {
        padding: 0 20px;
    }

    .services-detail-header,
    .vision-mission-page-header {
        margin-bottom: 40px;
    }

    .vision-mission-page-title {
        font-size: 28px;
        letter-spacing: 1px;
    }

    .vision-mission-page-subtitle {
        font-size: 16px;
    }

    .vision-mission-block-title {
        font-size: 20px;
        letter-spacing: 0.5px;
    }

    .vision-mission-block-text {
        font-size: 15px;
        line-height: 1.75;
    }

    .service-detail-row {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .service-detail-tag {
        width: 44px;
        height: 44px;
        font-size: 16px;
    }

    .service-detail-media {
        height: 220px;
    }

    .why-choose-detail-item {
        flex-direction: column;
    }

    .why-choose-detail-icon {
        width: 40px;
        height: 40px;
        font-size: 18px;
    }
    
    .about-cnpk-title,
    .why-choose-title,
    .vision-title,
    .mission-title,
    .our-approach-title,
    .our-network-title,
    .chairman-message-title {
        font-size: 24px;
        letter-spacing: 1px;
    }
    
    .vision-box,
    .mission-box {
        padding: 25px 20px;
    }
    
    .vision-title,
    .mission-title {
        font-size: 24px;
    }
    
    .about-cnpk-container {
        padding: 0 20px;
    }
    
    .about-cnpk-content {
        padding: 35px 25px;
    }
    
    .about-cnpk-features {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .about-cnpk-feature-block {
        padding: 25px 20px;
        gap: 20px;
        flex-direction: column;
        text-align: left;
    }
    
    .feature-icon {
        font-size: 36px;
        min-width: 55px;
        height: 55px;
    }

    .belief-principles {
        gap: 18px;
    }

    .belief-principle {
        padding: 24px 18px;
    }

    .belief-principle h3 {
        font-size: 20px;
    }

    .belief-principle p {
        font-size: 14px;
    }

    .what-we-believe-text {
        font-size: 16px;
        line-height: 1.75;
    }
    
    .about-cnpk-title {
        font-size: 28px;
    }
    
    .about-cnpk-subtitle {
        font-size: 15px;
    }
    
    .about-cnpk-description {
        font-size: 15px;
    }
    
    .vision-text,
    .mission-text,
    .our-approach-text,
    .our-network-text,
    .chairman-message-text {
        font-size: 14px;
    }
    
    
    .why-choose-item {
        padding: 25px 15px;
    }
    
    .why-choose-item-title {
        font-size: 18px;
    }
    
    .why-choose-item-text {
        font-size: 14px;
    }
    
    .principle-item {
        padding: 25px 20px;
    }
    
    .principle-title {
        font-size: 20px;
    }
    
    .principle-text {
        font-size: 14px;
    }
    
    .chairman-message-content {
        padding: 25px 20px;
    }
    
    .chairman-message-signature {
        font-size: 16px;
    }
    
    .services-title {
        font-size: 24px;
    }
    
    .services-subtitle {
        font-size: 14px;
    }
    
    .value-proposition-section {
        padding: 60px 0;
    }
    
    .value-proposition-title {
        font-size: 32px;
    }
    
    .value-proposition-subtitle {
        font-size: 18px;
    }
    
    .value-proposition-text {
        font-size: 17px;
    }
    
    .value-proposition-grid {
        grid-template-columns: 1fr;
        gap: 30px;
        margin-top: 40px;
    }
    
    .value-proposition-item {
        padding: 40px 30px;
    }
    
    .value-item-number {
        font-size: 56px;
    }
    
    .value-item-title {
        font-size: 20px;
    }
    
    .value-item-text {
        font-size: 15px;
    }
}

@media (max-width: 992px) {
    .value-proposition-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }
}

@media (max-width: 768px) {
    .value-proposition-section {
        padding: 50px 0;
    }
    
    .value-proposition-title {
        font-size: 28px;
    }
    
    .value-proposition-subtitle {
        font-size: 16px;
    }
    
    .value-proposition-text {
        font-size: 16px;
    }
    
    .value-proposition-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    .value-proposition-item {
        padding: 35px 25px;
    }
    
    .value-item-number {
        font-size: 48px;
    }
    
    .value-item-title {
        font-size: 18px;
    }
    
    .value-item-text {
        font-size: 14px;
    }
}

@media (max-width: 480px) {
    .value-proposition-section {
        padding: 40px 0;
    }
    
    .value-proposition-title {
        font-size: 24px;
        letter-spacing: 1px;
    }
    
    .value-proposition-subtitle {
        font-size: 14px;
    }
    
    .value-proposition-text {
        font-size: 15px;
    }
    
    .value-proposition-item {
        padding: 30px 20px;
    }
    
    .value-item-number {
        font-size: 40px;
    }
    
    .value-item-title {
        font-size: 16px;
    }
    
    .value-item-text {
        font-size: 13px;
    }
}