/*
Theme Name: Exim
Description: A modern WordPress theme for Exim project with clean CSS
Author: Exim Team
Version: 1.0.3
Text Domain: exim
*/

/* Professional Blog Styles - High Priority */

/* Brand Colors - Based on EXIM Logo */
:root {
    /* Primary Colors (Deep Blues from EXIM Logo) */
    --primary-darker: #1e3a8a;    /* Darker Blue */
    --primary-dark: #1e40af;      /* Deep Blue */
    --primary-main: #2563eb;      /* Royal Blue */
    --primary-light: #3b82f6;     /* Bright Blue */
    --midnight-blue: #0f172a;     /* Midnight Blue */
    --midnight-blue-light: #1e293b; /* Lighter Midnight Blue */
    
    /* Secondary Colors (Light Blues) */
    --secondary-main: #60a5fa;    /* Light Blue */
    --secondary-light: #93c5fd;   /* Sky Blue */
    --secondary-lighter: #dbeafe; /* Very Light Blue */
    
    /* Accent Colors */
    --accent-blue: #0ea5e9;       /* Cyan Blue */
    --accent-light: #7dd3fc;      /* Bright Sky Blue */
    
    /* Neutral Colors */
    --white: #ffffff;
    --gray-50: #f9fafb;
    --gray-100: #f3f4f6;
    --gray-900: #1f2937;
}

/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #f9fafb;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

/* Layout */
.site {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

.site-content {
    flex-grow: 1;
}

/* Container */
.container-custom {
    max-width: 1280px;
    margin: 0 auto;
    padding-left: 1rem;
    padding-right: 1rem;
}

@media (min-width: 640px) {
    .container-custom {
        padding-left: 1.5rem;
        padding-right: 1.5rem;
    }
}

@media (min-width: 1024px) {
    .container-custom {
        padding-left: 2rem;
        padding-right: 2rem;
    }
}

/* Desktop Floating Header with Glass Effect */
.site-header {
    position: fixed;
    top: 2.5rem; /* Increased from 2rem to 2.5rem for more top padding */
    left: 50%;
    transform: translateX(-50%);
    width: calc(100% - 4rem);
    max-width: 1200px;
    z-index: 1000;
    transition: background 0.3s ease, box-shadow 0.3s ease;
}

/* Mobile App-Style Header */
@media (max-width: 767px) {
    .site-header {
        top: 0 !important;
        left: 0 !important;
        right: 0 !important;
        width: 100% !important;
        max-width: none !important;
        transform: none !important;
        background: rgba(255, 255, 255, 0.95);
        backdrop-filter: blur(20px);
        -webkit-backdrop-filter: blur(20px);
        border-bottom: 1px solid rgba(255, 255, 255, 0.2);
        box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
        border-radius: 0;
        border: none;
    }
    
    .site-header .container-custom {
        padding: 0 1rem;
        max-width: 100%;
    }
    
    .site-header .header-content {
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding: 1rem 0;
        min-height: 4rem;
        position: relative;
    }
    
    /* Mobile Header Layout: Burger - Logo - Search */
    .mobile-only {
        order: 1;
    }
    
    .site-branding {
        order: 2;
        position: absolute;
        left: 50%;
        transform: translateX(-50%);
    }
    
    .header-search {
        order: 3;
    }
}

/* Desktop Glass Header */
@media (min-width: 768px) {
    .site-header {
        /* Glass Effect - Default over hero */
        background: rgba(255, 255, 255, 0.1);
        backdrop-filter: blur(20px);
        -webkit-backdrop-filter: blur(20px);
        border: 1px solid rgba(255, 255, 255, 0.2);
        border-radius: 1rem; /* Reduced from 2rem to 1rem */
        box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
        transition: all 0.3s ease;
    }
    
    /* Header when scrolled past hero section */
    .site-header.past-hero {
        background: rgba(255, 255, 255, 0.95);
        border: 1px solid rgba(0, 0, 0, 0.1);
        box-shadow: 0 8px 32px rgba(0, 0, 0, 0.15);
    }
    
    .site-header:hover {
        background: rgba(255, 255, 255, 0.15);
        box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
    }
    
    .site-header.past-hero:hover {
        background: rgba(255, 255, 255, 0.98);
        box-shadow: 0 12px 40px rgba(0, 0, 0, 0.2);
    }
    
    .site-header .container-custom {
        padding: 0 1.5rem; /* Reduced from 2rem to 1.5rem */
    }
    
    .site-header .header-content {
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding: 0.6rem 0; /* Further reduced for compact layout */
        min-height: 3.2rem; /* Reduced height for more compact header */
        gap: 1.5rem; /* Reduced gap for tighter layout */
    }
}

/* Logo/Branding - Left Side */
.site-branding {
    flex: 0 0 auto;
}

.site-branding h1,
.site-branding p {
    margin: 0;
}

.site-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: white;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.logo-link {
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.logo-link:hover {
    color: #f0f9ff;
    transform: scale(1.02);
}

/* Logo Image Styles */
.site-logo {
    height: 2.25rem; /* Reduced from 2.5rem to 2.25rem for compact header */
    width: auto;
    max-width: 200px;
    object-fit: contain;
    transition: all 0.3s ease;
    /* Default: White filter for hero section */
    filter: brightness(0) invert(1);
}

/* Logo when scrolled past hero - show original colors */
.site-header.past-hero .site-logo {
    filter: none;
}

.logo-link:hover .site-logo {
    transform: scale(1.05);
}

/* Custom Logo (WordPress) */
.custom-logo-link {
    display: flex;
    align-items: center;
}

.custom-logo {
    height: 2.25rem; /* Reduced from 2.5rem to 2.25rem for compact header */
    width: auto;
    max-width: 200px;
    object-fit: contain;
    transition: all 0.3s ease;
    /* Default: White filter for hero section */
    filter: brightness(0) invert(1);
}

/* Custom logo when scrolled past hero - show original colors */
.site-header.past-hero .custom-logo {
    filter: none;
}

.custom-logo-link:hover .custom-logo {
    transform: scale(1.05);
}

/* SVG Logo Fallback */
.logo-svg {
    height: 2rem;
    width: 2rem;
    flex-shrink: 0;
}

.site-name {
    font-weight: 700;
    font-size: 1.125rem;
    white-space: nowrap;
}

/* Mobile App-Style Branding */
@media (max-width: 767px) {
    .site-title {
        font-size: 1rem;
        color: #1f2937;
        text-shadow: none;
    }
    
    .logo-link {
        color: #1f2937;
        gap: 0.5rem;
    }
    
    .logo-link:hover {
        color: #3b82f6;
        transform: none;
    }
    
    .site-logo {
        height: 2rem;
        max-width: 150px;
        filter: none; /* Remove white filter for mobile - show original colors */
    }
    
    .custom-logo {
        height: 2rem;
        max-width: 150px;
        filter: none; /* Remove white filter for mobile - show original colors */
    }
    
    .logo-svg {
        height: 1.5rem;
        width: 1.5rem;
    }
    
    .site-name {
        font-size: 1rem;
    }
}

/* Desktop Branding */
@media (min-width: 768px) {
    .site-title {
        font-size: 1.875rem;
    }
}

.site-description {
    display: none; /* Hide description in floating header for cleaner look */
}

/* Navigation - Center */
.main-navigation {
    display: none;
    flex: 1;
    justify-content: center;
}

@media (min-width: 768px) {
    .main-navigation {
        display: flex;
    }
    
    /* Adjust font size for longer menu items */
    .main-navigation a {
        font-size: 0.9rem; /* Slightly smaller for longer text */
        padding: 0.5rem 0.65rem; /* More compact padding */
    }
}

@media (min-width: 1200px) {
    .main-navigation a {
        font-size: 0.95rem; /* Normal size on larger screens */
        padding: 0.5rem 0.85rem; /* Compact padding for large screens */
    }
}

.main-navigation ul {
    display: flex;
    align-items: center; /* Ensure all items are vertically centered */
    justify-content: center; /* Center align menu items */
    list-style: none;
    margin: 0;
    padding: 0;
    gap: 0.25rem; /* Reduced from 0.5rem to 0.25rem for tighter spacing */
    background: rgba(255, 255, 255, 0.2); /* Increased opacity for better contrast */
    border-radius: 0.75rem; /* Reduced from 1.5rem to 0.75rem */
    padding: 0.4rem; /* Slightly reduced container padding */
    border: 1px solid rgba(255, 255, 255, 0.3); /* Stronger border for definition */
    backdrop-filter: blur(10px); /* Additional blur for glass effect */
    -webkit-backdrop-filter: blur(10px);
    position: relative;
}

.main-navigation li {
    margin: 0;
}

.main-navigation a {
    color: white; /* White text over hero section */
    text-decoration: none;
    padding: 0.5rem 0.75rem; /* Reduced padding for compact layout */
    border-radius: 0.5rem; /* Reduced from 1.25rem to 0.5rem */
    font-weight: 500;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    position: relative;
    white-space: nowrap;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3); /* Dark text shadow for visibility over hero */
    display: flex;
    align-items: center; /* Vertical center alignment */
    justify-content: center;
    min-height: 2.5rem; /* Consistent height for alignment */
}

/* Navigation text when scrolled past hero */
.site-header.past-hero .main-navigation a {
    color: var(--gray-900); /* Dark text when past hero */
    text-shadow: none;
}

.main-navigation a:hover,
.main-navigation a:focus {
    background: rgba(255, 255, 255, 0.2);
    color: white;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

/* Navigation hover when past hero */
.site-header.past-hero .main-navigation a:hover,
.site-header.past-hero .main-navigation a:focus {
    background: rgba(59, 130, 246, 0.1);
    color: var(--primary-main);
    text-shadow: none;
}

.main-navigation a.current-menu-item,
.main-navigation a.current_page_item {
    background: rgba(255, 255, 255, 0.3);
    color: white;
    font-weight: 600;
    text-shadow: none;
}

/* Current menu item when past hero */
.site-header.past-hero .main-navigation a.current-menu-item,
.site-header.past-hero .main-navigation a.current_page_item {
    background: rgba(59, 130, 246, 0.15);
    color: var(--primary-main);
}

/* Dropdown Menu Styles */
.main-navigation .menu-item-has-children {
    position: relative;
}

.main-navigation .dropdown-trigger {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.4rem; /* Slightly reduced gap for compact layout */
}

.main-navigation .dropdown-arrow {
    transition: transform 0.3s ease;
}

.main-navigation .menu-item-has-children:hover .dropdown-arrow {
    transform: rotate(180deg);
}

.main-navigation .sub-menu {
    position: absolute;
    top: 100%;
    right: 0;
    min-width: 200px;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 0.5rem;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    z-index: 1000;
    margin-top: 0.5rem;
    flex-direction: column;
    gap: 0;
    padding: 0.5rem 0;
}

.main-navigation .menu-item-has-children:hover .sub-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.main-navigation .sub-menu li {
    width: 100%;
}

.main-navigation .sub-menu a {
    display: block;
    padding: 0.75rem 1rem;
    color: #1f2937;
    text-decoration: none;
    font-weight: 500;
    font-size: 0.9rem;
    border-radius: 0;
    text-shadow: none;
    white-space: nowrap;
    transition: all 0.2s ease;
}

.main-navigation .sub-menu a:hover {
    background: rgba(59, 130, 246, 0.1);
    color: #3b82f6;
    transform: none;
    box-shadow: none;
    padding-left: 1.25rem;
}

/* Search Button - Right Side */
.header-search {
    flex: 0 0 auto;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.search-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 2.75rem;
    height: 2.75rem;
    background: rgba(255, 255, 255, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    color: white;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
}

.search-button:hover {
    background: rgba(255, 255, 255, 0.25);
    transform: scale(1.1);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    color: white;
}

/* Search button when past hero */
.site-header.past-hero .search-button {
    background: rgba(59, 130, 246, 0.1);
    border: 1px solid rgba(59, 130, 246, 0.2);
    color: var(--primary-main);
}

.site-header.past-hero .search-button:hover {
    background: rgba(59, 130, 246, 0.2);
    color: var(--primary-dark);
}

.search-button svg {
    width: 1.125rem;
    height: 1.125rem;
}

/* Mobile App-Style Search Button */
@media (max-width: 767px) {
    .search-button {
        background: #f3f4f6;
        border: 1px solid #e5e7eb;
        color: #6b7280;
    }
    
    .search-button:hover {
        background: #e5e7eb;
        color: #3b82f6;
        transform: none;
        box-shadow: none;
    }
}

/* Mobile Menu Button */
.mobile-menu-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 2.75rem;
    height: 2.75rem;
    background: rgba(255, 255, 255, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    color: white;
    cursor: pointer;
    transition: all 0.3s ease;
}

.mobile-menu-button:hover {
    background: rgba(255, 255, 255, 0.25);
    transform: scale(1.1);
}

/* Mobile App-Style Menu Button */
@media (max-width: 767px) {
    .mobile-menu-button {
        background: #f3f4f6;
        border: 1px solid #e5e7eb;
        color: #6b7280;
    }
    
    .mobile-menu-button:hover {
        background: #e5e7eb;
        color: #3b82f6;
        transform: none;
    }
}

@media (min-width: 768px) {
    .mobile-menu-button {
        display: none;
    }
}

.mobile-menu-button svg {
    width: 1.125rem;
    height: 1.125rem;
}

/* Mobile Navigation */
#mobile-navigation {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    margin-top: 0.5rem;
    padding: 1rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

/* Desktop Mobile Navigation (Glass Effect) */
@media (min-width: 768px) {
    #mobile-navigation {
        background: rgba(255, 255, 255, 0.95);
        backdrop-filter: blur(20px);
        -webkit-backdrop-filter: blur(20px);
        border-radius: 1rem;
    }
}

/* Mobile App-Style Navigation */
@media (max-width: 767px) {
    #mobile-navigation {
        position: fixed;
        top: 4rem;
        left: 0;
        right: 0;
        margin-top: 0;
        background: white;
        border: none;
        border-top: 1px solid #e5e7eb;
        border-radius: 0;
        box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
        padding: 0.5rem 0;
    }
}

#mobile-navigation ul {
    display: flex;
    flex-direction: column;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: 0;
}

#mobile-navigation a {
    color: #1f2937;
    text-decoration: none;
    padding: 1rem 1.5rem;
    font-weight: 500;
    transition: all 0.2s ease;
    display: block;
    border-bottom: 1px solid #f3f4f6;
}

#mobile-navigation a:hover {
    background: #f9fafb;
    color: #3b82f6;
}

/* Desktop Mobile Navigation Links */
@media (min-width: 768px) {
    #mobile-navigation a {
        border-radius: 0.5rem;
        border-bottom: none;
        margin-bottom: 0.25rem;
    }
    
    #mobile-navigation a:hover {
        background: rgba(59, 130, 246, 0.1);
    }
}

.hidden {
    display: none;
}

/* Responsive Visibility Classes */
.mobile-only {
    display: block;
}

.desktop-only {
    display: none;
}

@media (min-width: 768px) {
    .mobile-only {
        display: none;
    }
    
    .desktop-only {
        display: block;
    }
}

/* Mobile Sidebar Navigation */
.mobile-sidebar-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1100;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.mobile-sidebar-overlay.show {
    opacity: 1;
}

.mobile-sidebar {
    position: fixed;
    top: 0;
    left: -300px;
    width: 300px;
    height: 100vh;
    background: white;
    z-index: 1200;
    transition: left 0.3s ease;
    box-shadow: 2px 0 10px rgba(0, 0, 0, 0.1);
    display: flex;
    flex-direction: column;
}

.mobile-sidebar.show {
    left: 0;
}

.mobile-sidebar-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 1.5rem;
    border-bottom: 1px solid #e5e7eb;
    background: #f9fafb;
}

.sidebar-logo-img {
    height: 2rem;
    width: auto;
    max-width: 150px;
    object-fit: contain;
}

.sidebar-close {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 2.5rem;
    height: 2.5rem;
    background: #f3f4f6;
    border: 1px solid #e5e7eb;
    border-radius: 50%;
    color: #6b7280;
    cursor: pointer;
    transition: all 0.2s ease;
}

.sidebar-close:hover {
    background: #e5e7eb;
    color: #3b82f6;
}

.sidebar-close svg {
    width: 1.25rem;
    height: 1.25rem;
}

.mobile-sidebar-content {
    flex: 1;
    overflow-y: auto;
    padding: 1rem 0;
}

.sidebar-menu-list {
    list-style: none;
    margin: 0;
    padding: 0;
    text-align: center;
}

.sidebar-menu-list li {
    margin: 0;
}

.sidebar-menu-list a {
    display: block;
    padding: 1rem 1.5rem;
    color: #1f2937;
    text-decoration: none;
    font-weight: 500;
    border-bottom: 1px solid #f3f4f6;
    transition: all 0.2s ease;
}

.sidebar-menu-list a:hover {
    background: #f9fafb;
    color: #3b82f6;
    padding-left: 2rem;
}

/* Mobile Sidebar Dropdown */
.mobile-sidebar .menu-item-has-children > a {
    position: relative;
}

.mobile-sidebar .sub-menu {
    display: none;
    background: #f9fafb;
    margin: 0;
    padding: 0;
    border-top: 1px solid #e5e7eb;
}

.mobile-sidebar .menu-item-has-children.open .sub-menu {
    display: block;
}

.mobile-sidebar .sub-menu a {
    padding-left: 2.5rem;
    font-size: 0.9rem;
    color: #6b7280;
}

.mobile-sidebar .sub-menu a:hover {
    padding-left: 3rem;
    color: #3b82f6;
}

/* Hide sidebar on desktop */
@media (min-width: 768px) {
    .mobile-sidebar,
    .mobile-sidebar-overlay {
        display: none !important;
    }
}

/* Header Scrolled State */
.site-header.scrolled {
    transition: background 0.3s ease, box-shadow 0.3s ease;
}

@media (min-width: 768px) {
    .site-header.scrolled {
        background: rgba(255, 255, 255, 0.2);
        box-shadow: 0 12px 40px rgba(0, 0, 0, 0.2);
        /* Ensure positioning stays locked */
        top: 2.5rem !important; /* Updated to match new top padding */
        left: 50% !important;
        transform: translateX(-50%) !important;
    }
}

@media (max-width: 767px) {
    .site-header.scrolled {
        background: rgba(255, 255, 255, 0.98);
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
        /* Ensure mobile positioning stays locked */
        top: 0 !important;
        left: 0 !important;
        transform: none !important;
    }
}

/* Buttons */
.btn-primary {
    background: linear-gradient(to right, var(--primary-main), var(--primary-light));
    color: white;
    font-weight: 600;
    padding: 0.75rem 1.5rem;
    border-radius: 0.5rem;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    border: none;
    cursor: pointer;
}

.btn-primary:hover {
    background: linear-gradient(to right, var(--primary-dark), var(--primary-main));
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    color: white;
    text-decoration: none;
    transform: translateY(-1px);
}

.btn-secondary {
    background-color: #e5e7eb;
    color: #1f2937;
    font-weight: 600;
    padding: 0.75rem 1.5rem;
    border-radius: 0.5rem;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.btn-secondary:hover {
    background-color: #d1d5db;
    text-decoration: none;
    transform: translateY(-1px);
}

/* Cards */
.card {
    background-color: white;
    border-radius: 0.75rem;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    overflow: hidden;
    border: 1px solid #e5e7eb;
}

.card:hover {
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
    transform: translateY(-4px);
}

/* Hero Section - Adjusted for different header styles */
.hero-section {
    background: linear-gradient(135deg, #3b82f6 0%, #9333ea 50%, #7c3aed 100%);
    color: white;
    position: relative;
    overflow: hidden;
    min-height: 100vh;
    display: flex;
    align-items: center;
}

/* Mobile Hero Section - App Style Header */
@media (max-width: 767px) {
    .hero-section {
        padding: 6rem 0 4rem; /* Top padding for fixed app header */
        min-height: calc(100vh - 4rem);
    }
}

/* Desktop Hero Section - Floating Header */
@media (min-width: 768px) {
    .hero-section {
        padding: 8rem 0 8rem; /* Extra top padding for floating header */
    }
}

@media (min-width: 1024px) {
    .hero-section {
        padding: 10rem 0 12rem;
    }
}

.hero-section h1 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

@media (min-width: 768px) {
    .hero-section h1 {
        font-size: 3rem;
    }
}

@media (min-width: 1024px) {
    .hero-section h1 {
        font-size: 3.75rem;
    }
}

.hero-section p {
    font-size: 1.25rem;
    color: #bfdbfe;
    margin-bottom: 2rem;
    line-height: 1.6;
}

@media (min-width: 768px) {
    .hero-section p {
        font-size: 1.5rem;
    }
}

.hero-section .btn-primary {
    background-color: white;
    color: var(--primary-main);
    font-size: 1.125rem;
    padding: 0.875rem 2rem;
    border-radius: 9999px;
}

.hero-section .btn-primary:hover {
    background-color: var(--secondary-lighter);
    color: var(--primary-dark);
}

.hero-section .btn-secondary {
    background-color: transparent;
    border: 2px solid white;
    color: white;
    font-size: 1.125rem;
    padding: 0.875rem 2rem;
    border-radius: 9999px;
}

.hero-section .btn-secondary:hover {
    background-color: white;
    color: #2563eb;
}

.hero-buttons {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    align-items: center;
    justify-content: center;
}

@media (min-width: 640px) {
    .hero-buttons {
        flex-direction: row;
    }
}

/* Hero Slider Styles */
.hero-slider {
    position: relative;
    height: 100vh;
    min-height: 600px;
    overflow: hidden;
}

.slider-container {
    position: relative;
    width: 100%;
    height: 100%;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0;
    transition: opacity 1s ease-in-out;
    display: flex;
    align-items: flex-start; /* Changed from center to flex-start */
    padding-top: 18vh; /* Add more top padding for better positioning */
}

.slide.active {
    opacity: 1;
}

.slide-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, 
        rgba(30, 64, 175, 0.88) 0%,      /* Deep Blue - Primary */
        rgba(37, 99, 235, 0.85) 25%,     /* Royal Blue */
        rgba(59, 130, 246, 0.82) 50%,    /* Bright Blue */
        rgba(96, 165, 250, 0.80) 75%,    /* Light Blue */
        rgba(147, 197, 253, 0.78) 100%   /* Sky Blue - Secondary */
    );
    z-index: 1;
}

.slide-content {
    position: relative;
    z-index: 2;
    width: 100%;
    color: white;
}

.slide-text {
    max-width: 900px; /* Increased from 600px to 900px for wider lines */
    text-align: center;
    margin: 0 auto;
    padding: 0 2rem;
}

.slide-title {
    font-size: 2.25rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
    line-height: 1.2;
    color: white;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.8), 0 4px 16px rgba(0, 0, 0, 0.6), 0 1px 3px rgba(0, 0, 0, 0.9);
}

.slide-subtitle {
    font-size: 1.5rem;
    font-weight: 500;
    margin-bottom: 1.5rem;
    line-height: 1.3;
    color: white;
    text-shadow: 0 2px 6px rgba(0, 0, 0, 0.7), 0 3px 12px rgba(0, 0, 0, 0.5), 0 1px 2px rgba(0, 0, 0, 0.8);
    font-style: italic;
}

.slide-description {
    font-size: 1.3rem; /* Slightly larger for better readability */
    margin-bottom: 2rem;
    opacity: 0.95;
    line-height: 1.7; /* Increased line height for better readability */
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
    max-width: 800px; /* Constrain description width for optimal reading */
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 2rem;
}

.slide-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* Hero Slider CTA Button Styles */
.slide-buttons .btn-primary {
    background: linear-gradient(135deg, var(--midnight-blue) 0%, var(--midnight-blue-light) 100%);
    color: white;
    font-weight: 600;
    padding: 0.75rem 1.5rem;
    border-radius: 0.75rem;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
    border: 2px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    box-shadow: 0 8px 32px rgba(15, 23, 42, 0.4);
    font-size: 0.9rem;
}

.slide-buttons .btn-primary:hover {
    background: linear-gradient(135deg, var(--midnight-blue-light) 0%, var(--primary-darker) 100%);
    transform: translateY(-2px);
    box-shadow: 0 12px 40px rgba(15, 23, 42, 0.6);
    border-color: rgba(255, 255, 255, 0.3);
}

.slide-buttons .btn-secondary {
    background: rgba(255, 255, 255, 0.15);
    color: white;
    font-weight: 500;
    padding: 0.75rem 1.5rem;
    border-radius: 0.75rem;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
    border: 2px solid rgba(255, 255, 255, 0.4);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    font-size: 0.9rem;
}

.slide-buttons .btn-secondary:hover {
    background: rgba(255, 255, 255, 0.25);
    transform: translateY(-2px);
    box-shadow: 0 8px 32px rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.6);
}

/* Slider Navigation */
.slider-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 3;
    width: 100%;
    display: flex;
    justify-content: space-between;
    padding: 0 2rem;
    pointer-events: none;
}

.slider-prev,
.slider-next {
    background: rgba(255, 255, 255, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    cursor: pointer;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    pointer-events: all;
}

.slider-prev:hover,
.slider-next:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: scale(1.1);
}

/* Slider Dots */
.slider-dots {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 0.75rem;
    z-index: 3;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    border: 2px solid rgba(255, 255, 255, 0.8);
    cursor: pointer;
    transition: all 0.3s ease;
}

.dot.active {
    background: white;
    transform: scale(1.2);
}

.dot:hover {
    background: rgba(255, 255, 255, 0.8);
}

/* Hero Certifications */
.hero-certifications {
    margin-top: 2.5rem;
    width: 100%;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.certifications-frame-hero {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 1rem;
    padding: 4rem 1.5rem 1.5rem 1.5rem;
    position: relative;
    overflow: visible;
}

.certifications-badge-title {
    position: absolute;
    top: -1px;
    left: -1px;
    right: -1px;
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary-main) 100%);
    color: white;
    padding: 0.75rem 1.5rem;
    border-radius: 1rem 1rem 0 0;
    font-size: 0.875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 20px rgba(37, 99, 235, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-bottom: none;
    text-align: center;
}

.certifications-grid-hero {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    align-items: center;
    justify-items: center;
}

.certification-item-hero {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 0.75rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    width: 100%;
    text-align: center;
}

.certification-item-hero:hover {
    transform: translateY(-4px);
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.4);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

.certification-image-hero {
    width: 80px;
    height: 60px;
    object-fit: contain;
    border-radius: 0.5rem;
    transition: all 0.3s ease;
    filter: brightness(1.1) contrast(1.1);
}

.certification-item-hero:hover .certification-image-hero {
    transform: scale(1.05);
}

/* Globally Available Section in Hero */
.hero-global-availability {
    margin-top: 1rem;
}

.global-frame-hero {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 0.75rem;
    position: relative;
    padding: 2rem 1rem 0.75rem 1rem;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.global-badge-title {
    position: absolute;
    top: -1px;
    left: -1px;
    right: -1px;
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 0.75rem 0.75rem 0 0;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-bottom: none;
    text-align: center;
    font-weight: 600;
    font-size: 0.8rem;
    letter-spacing: 0.3px;
    text-transform: uppercase;
}

.global-flags-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0.75rem;
    padding-top: 0.5rem;
}

.flag-item-hero {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0.5rem;
    transition: all 0.3s ease;
    border-radius: 0.5rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.flag-item-hero:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.3);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
}

.flag-wrapper {
    position: relative;
    width: 50px;
    height: 33px;
    border-radius: 0.375rem;
    overflow: hidden;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.3);
    border: 2px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
}

.flag-item-hero:hover .flag-wrapper {
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.4);
    border-color: rgba(255, 255, 255, 0.4);
    transform: scale(1.05);
}

.flag-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.certification-label {
    color: white;
    font-size: 0.875rem;
    font-weight: 500;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
    line-height: 1.2;
}

/* Slider Mobile Responsive */
@media (max-width: 768px) {
    .hero-slider {
        height: 80vh;
        min-height: 500px;
    }
    
    .slide {
        padding-top: 12vh; /* Increased top padding on mobile for better positioning */
    }
    
    .slide-text {
        max-width: 95%; /* Use more width on mobile */
        padding: 0 1rem;
    }
    
    .slide-title {
        font-size: 1.75rem;
        line-height: 1.1;
    }
    
    .slide-subtitle {
        font-size: 1.1rem;
        line-height: 1.2;
    }
    
    .slide-description {
        font-size: 1rem;
        line-height: 1.5;
        max-width: 100%; /* Full width on mobile */
    }
    
    .slide-buttons {
        flex-direction: row;
        align-items: center;
        justify-content: center;
        gap: 0.75rem;
        flex-wrap: wrap;
    }
    
    .slide-buttons .btn-primary,
    .slide-buttons .btn-secondary {
        padding: 0.75rem 1.25rem;
        font-size: 0.9rem;
        min-width: 140px;
        justify-content: center;
        flex: 1;
        max-width: 160px;
    }
    
    .hero-certifications {
        margin-top: 2rem;
    }
    
    .certifications-frame-hero {
        padding: 3.25rem 1rem 1rem 1rem;
        border-radius: 0.75rem;
    }
    
    .certifications-badge-title {
        border-radius: 0.75rem 0.75rem 0 0;
        padding: 0.625rem 1rem;
        font-size: 0.8rem;
    }
    
    .certifications-grid-hero {
        grid-template-columns: repeat(3, 1fr);
        gap: 0.75rem;
    }
    
    .certification-item-hero {
        padding: 0.75rem 0.5rem;
    }
    
    .certification-image-hero {
        width: 60px;
        height: 45px;
    }
    
    /* Global Availability Mobile Styles */
    .hero-global-availability {
        margin-top: 0.75rem;
    }
    
    .global-frame-hero {
        padding: 1.75rem 0.75rem 0.5rem 0.75rem;
        border-radius: 0.5rem;
    }
    
    .global-badge-title {
        padding: 0.375rem 0.75rem;
        font-size: 0.8125rem; /* 13px max */
        border-radius: 0.5rem 0.5rem 0 0;
        letter-spacing: 0.2px;
    }
    
    .global-flags-grid {
        gap: 0.5rem;
        padding-top: 0.375rem;
    }
    
    .flag-item-hero {
        padding: 0.375rem;
    }
    
    .flag-wrapper {
        width: 40px;
        height: 27px;
        border-radius: 0.25rem;
    }
    
    .certification-label {
        font-size: 0.75rem;
    }
}
    
    .slider-nav {
        padding: 0 1rem;
    }
    
    .slider-prev,
    .slider-next {
        width: 40px;
        height: 40px;
    }
    
    .slider-dots {
        bottom: 1rem;
    }
}

/* Small Mobile Responsive */
@media (max-width: 480px) {
    .slide {
        padding-top: 10vh; /* Increased top padding on small mobile for better positioning */
    }
    
    .slide-title {
        font-size: 1.5rem;
        line-height: 1.1;
    }
    
    .slide-subtitle {
        font-size: 1rem;
        line-height: 1.15;
        margin-bottom: 1rem;
    }
    
    .slide-description {
        font-size: 0.95rem;
        line-height: 1.4;
        margin-bottom: 1.5rem;
    }
    
    .slide-buttons {
        gap: 0.5rem;
    }
    
    .slide-buttons .btn-primary,
    .slide-buttons .btn-secondary {
        padding: 0.65rem 1rem;
        font-size: 0.85rem;
        min-width: 120px;
        max-width: 140px;
    }
    
    .hero-certifications {
        margin-top: 1.5rem;
    }
    
    /* Global Availability Small Mobile Styles */
    .global-frame-hero {
        padding: 1.5rem 0.5rem 0.375rem 0.5rem;
    }
    
    .global-badge-title {
        padding: 0.3rem 0.5rem;
        font-size: 0.75rem; /* 12px for very small screens */
    }
    
    .global-flags-grid {
        gap: 0.375rem;
        padding-top: 0.25rem;
    }
    
    .flag-item-hero {
        padding: 0.25rem;
    }
    
    .flag-wrapper {
        width: 35px;
        height: 23px;
        border-radius: 0.2rem;
    }
}

/* Tablet responsive adjustments */
@media (min-width: 769px) and (max-width: 1024px) {
    .slide-text {
        max-width: 800px; /* Slightly smaller on tablets */
    }
    
    .slide-title {
        font-size: 2rem;
    }
    
    .slide-subtitle {
        font-size: 1.4rem;
    }
    
    .slide-description {
        font-size: 1.2rem;
        max-width: 700px;
    }
}

/* Sections */
.section {
    padding: 4rem 0;
}

@media (min-width: 1024px) {
    .section {
        padding: 6rem 0;
    }
}

.section-title {
    font-size: 1.875rem;
    font-weight: 700;
    color: #111827;
    margin-bottom: 1rem;
    text-align: center;
}

@media (min-width: 768px) {
    .section-title {
        font-size: 2.25rem;
    }
}

.section-subtitle {
    font-size: 1.25rem;
    color: #6b7280;
    text-align: center;
    max-width: 48rem;
    margin: 0 auto 4rem;
}

/* Grid Layouts */
.grid {
    display: grid;
    gap: 2rem;
}

.grid-cols-1 {
    grid-template-columns: repeat(1, minmax(0, 1fr));
}

@media (min-width: 768px) {
    .grid-cols-2 {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (min-width: 1024px) {
    .grid-cols-3 {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}

/* Certifications Section */
.certifications-section {
    padding: 3rem 0;
    background: linear-gradient(135deg, var(--gray-50) 0%, var(--secondary-lighter) 100%);
}

.certifications-frame {
    background: white;
    border-radius: 1.5rem;
    padding: 3rem 2rem;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(37, 99, 235, 0.1);
    position: relative;
    overflow: hidden;
}

.certifications-frame::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-dark) 0%, var(--primary-main) 50%, var(--primary-light) 100%);
}

.certifications-header {
    text-align: center;
    margin-bottom: 3rem;
}

.certifications-title {
    font-size: 2.5rem;
    font-weight: 700;
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary-main) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.certifications-subtitle {
    font-size: 1.125rem;
    color: var(--gray-600);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

.certifications-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    align-items: start;
}

.certification-item {
    background: white;
    border-radius: 1rem;
    padding: 1.5rem;
    text-align: center;
    border: 2px solid var(--gray-100);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.certification-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(37, 99, 235, 0.05), transparent);
    transition: left 0.5s ease;
}

.certification-item:hover::before {
    left: 100%;
}

.certification-item:hover {
    transform: translateY(-8px);
    border-color: var(--primary-light);
    box-shadow: 0 20px 40px rgba(37, 99, 235, 0.15);
}

.certification-image {
    width: 120px;
    height: 90px;
    object-fit: contain;
    margin-bottom: 1.5rem;
    border-radius: 0.5rem;
    transition: all 0.3s ease;
}

.certification-item:hover .certification-image {
    transform: scale(1.05);
}

.certification-info h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--primary-dark);
    margin-bottom: 0.5rem;
    line-height: 1.3;
}

.certification-info p {
    font-size: 0.95rem;
    color: var(--gray-600);
    line-height: 1.5;
    margin: 0;
}

/* Certifications Mobile Responsive */
@media (max-width: 768px) {
    .certifications-section {
        padding: 2rem 0;
    }
    
    .certifications-frame {
        padding: 2rem 1.5rem;
        border-radius: 1rem;
        margin: 0 1rem;
    }
    
    .certifications-title {
        font-size: 2rem;
    }
    
    .certifications-subtitle {
        font-size: 1rem;
    }
    
    .certifications-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .certification-item {
        padding: 1.25rem;
    }
    
    .certification-image {
        width: 100px;
        height: 75px;
    }
}

/* Our Services Section */
.services-section {
    padding: 2.5rem 0;
    background: linear-gradient(135deg, var(--gray-50) 0%, var(--secondary-lighter) 100%);
    position: relative;
    overflow: hidden;
}

.services-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg width="60" height="60" viewBox="0 0 60 60" xmlns="http://www.w3.org/2000/svg"><g fill="none" fill-rule="evenodd"><g fill="%23e0f2fe" fill-opacity="0.1"><circle cx="30" cy="30" r="2"/></g></svg>') repeat;
    pointer-events: none;
}

.services-title {
    font-size: 2.5rem;
    font-weight: 700;
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary-main) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1rem;
    position: relative;
}

.services-subtitle {
    font-size: 1.125rem;
    color: var(--gray-600);
    max-width: 700px;
    margin: 0 auto 2rem;
    line-height: 1.5;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.25rem;
    max-width: 1100px;
    margin: 0 auto;
}

.service-card {
    background: white;
    border-radius: 1.25rem;
    padding: 1.5rem 1.25rem;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(37, 99, 235, 0.1);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    cursor: pointer;
    transform: translateY(0);
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(37, 99, 235, 0.05), transparent);
    transition: left 0.6s ease;
}

.service-card:hover::before {
    left: 100%;
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(37, 99, 235, 0.15);
    border-color: var(--primary-light);
}

.service-icon-wrapper {
    display: flex;
    justify-content: center;
    margin-bottom: 1.25rem;
    position: relative;
}

.service-icon {
    width: 65px;
    height: 65px;
    background: linear-gradient(135deg, var(--primary-main) 0%, var(--primary-light) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.service-icon::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, var(--primary-light) 0%, var(--secondary-main) 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
    border-radius: 50%;
}

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

.service-icon svg {
    width: 32px;
    height: 32px;
    z-index: 1;
    position: relative;
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.service-card:hover .service-icon svg {
    transform: scale(1.1) rotate(5deg);
}

.service-card:hover .service-icon {
    transform: scale(1.1);
    box-shadow: 0 15px 40px rgba(37, 99, 235, 0.3);
}

.service-title {
    font-size: 1.375rem;
    font-weight: 600;
    color: var(--primary-dark);
    margin-bottom: 0.75rem;
    text-align: center;
    transition: color 0.3s ease;
}

.service-card:hover .service-title {
    color: var(--primary-main);
}

.service-description {
    font-size: 0.95rem;
    color: var(--gray-600);
    line-height: 1.5;
    text-align: center;
    margin-bottom: 1.25rem;
    transition: color 0.3s ease;
}

.service-card:hover .service-description {
    color: var(--gray-700);
}

.service-features {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    justify-content: center;
}

.feature-tag {
    background: linear-gradient(135deg, var(--secondary-lighter) 0%, var(--secondary-light) 100%);
    color: var(--primary-dark);
    padding: 0.3rem 0.6rem;
    border-radius: 1rem;
    font-size: 0.65rem;
    font-weight: 500;
    transition: all 0.3s ease;
    border: 1px solid rgba(37, 99, 235, 0.1);
}

.service-card:hover .feature-tag {
    background: linear-gradient(135deg, var(--primary-main) 0%, var(--primary-light) 100%);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(37, 99, 235, 0.2);
}

/* Services Animation Keyframes */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
}

.service-card[data-aos="fade-up"] {
    animation: fadeInUp 0.8s ease-out forwards;
    opacity: 0;
}

.service-card[data-aos="fade-up"]:nth-child(1) { animation-delay: 0.1s; }
.service-card[data-aos="fade-up"]:nth-child(2) { animation-delay: 0.2s; }
.service-card[data-aos="fade-up"]:nth-child(3) { animation-delay: 0.3s; }
.service-card[data-aos="fade-up"]:nth-child(4) { animation-delay: 0.4s; }
.service-card[data-aos="fade-up"]:nth-child(5) { animation-delay: 0.5s; }
.service-card[data-aos="fade-up"]:nth-child(6) { animation-delay: 0.6s; }

/* Services Mobile Responsive */
@media (max-width: 768px) {
    .services-section {
        padding: 2rem 0;
    }
    
    .services-title {
        font-size: 2.25rem;
    }
    
    .services-subtitle {
        font-size: 1rem;
        margin-bottom: 1.5rem;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
        padding: 0 1rem;
    }
    
    .service-card {
        padding: 1.25rem 1rem;
        border-radius: 1rem;
    }
    
    .service-icon {
        width: 55px;
        height: 55px;
    }
    
    .service-icon svg {
        width: 28px;
        height: 28px;
    }
    
    .service-title {
        font-size: 1.25rem;
    }
    
    .service-description {
        font-size: 0.9rem;
    }
    
    .feature-tag {
        font-size: 0.6rem;
        padding: 0.25rem 0.5rem;
    }
}

@media (max-width: 480px) {
    .services-grid {
        grid-template-columns: 1fr;
        gap: 0.875rem;
    }
    
    .service-card {
        padding: 1rem 0.875rem;
    }
    
    .service-features {
        gap: 0.375rem;
    }
    
    .feature-tag {
        font-size: 0.55rem;
        padding: 0.2rem 0.4rem;
    }
}

/* Core of EximSynergy Section */
.core-section {
    padding: 5rem 0;
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 50%, #334155 100%);
    position: relative;
    overflow: hidden;
}

.core-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 30%, rgba(59, 130, 246, 0.15) 0%, transparent 40%),
        radial-gradient(circle at 80% 70%, rgba(16, 185, 129, 0.15) 0%, transparent 40%),
        radial-gradient(circle at 50% 50%, rgba(139, 92, 246, 0.1) 0%, transparent 60%);
    pointer-events: none;
}

.core-section::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg width="60" height="60" viewBox="0 0 60 60" xmlns="http://www.w3.org/2000/svg"><g fill="none" fill-rule="evenodd"><g fill="%2364748b" fill-opacity="0.05"><circle cx="30" cy="30" r="1.5"/></g></svg>') repeat;
    pointer-events: none;
    animation: backgroundMove 20s linear infinite;
}

.core-title {
    font-size: 3rem;
    font-weight: 700;
    background: linear-gradient(135deg, #ffffff 0%, #e2e8f0 50%, #cbd5e1 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1rem;
    position: relative;
    text-align: center;
}

.core-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: linear-gradient(90deg, #3b82f6, #10b981, #8b5cf6);
    border-radius: 2px;
    animation: titleUnderline 2s ease-in-out infinite;
}

.core-subtitle {
    font-size: 1.25rem;
    color: #94a3b8;
    font-weight: 400;
    margin-bottom: 4rem;
    text-align: center;
    opacity: 0.9;
}

.core-diagram {
    position: relative;
    max-width: 1000px;
    margin: 0 auto;
    padding: 2rem 0;
}

/* Enhanced Connecting Lines */
.connecting-lines {
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    height: 4px;
    z-index: 1;
}

.timeline-base {
    position: absolute;
    top: 50%;
    left: 10%;
    right: 10%;
    height: 2px;
    background: linear-gradient(90deg, 
        transparent 0%, 
        rgba(148, 163, 184, 0.3) 10%, 
        rgba(148, 163, 184, 0.6) 50%, 
        rgba(148, 163, 184, 0.3) 90%, 
        transparent 100%);
    transform: translateY(-50%);
    opacity: 0.8;
}

.line {
    position: absolute;
    height: 3px;
    background: linear-gradient(90deg, #3b82f6, #10b981, #8b5cf6);
    opacity: 0;
    animation: advancedLineGrow 3s ease-in-out forwards;
    border-radius: 2px;
    box-shadow: 0 0 20px rgba(59, 130, 246, 0.5);
}

.line-1 {
    top: 50%;
    left: 10%;
    width: 40%;
    transform: translateY(-50%);
    animation-delay: 1s;
}

.line-2 {
    top: 50%;
    right: 10%;
    width: 40%;
    transform: translateY(-50%);
    animation-delay: 1.8s;
}

/* Collaboration Network Lines */
.collaboration-network {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
}

.network-line {
    position: absolute;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(59, 130, 246, 0.4), transparent);
    opacity: 0;
    animation: networkPulse 4s ease-in-out infinite;
}

.network-line-1 {
    top: 30%;
    left: 20%;
    width: 25%;
    transform: rotate(15deg);
    animation-delay: 0.5s;
}

.network-line-2 {
    top: 70%;
    right: 20%;
    width: 25%;
    transform: rotate(-15deg);
    animation-delay: 1.5s;
}

.network-line-3 {
    top: 40%;
    left: 50%;
    width: 20%;
    transform: rotate(45deg) translateX(-50%);
    animation-delay: 2.5s;
}

/* Core Items Layout */
.core-items {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 2rem;
    position: relative;
    z-index: 2;
}

.core-item {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 0.8s ease-out forwards;
}

.core-item:nth-child(1) { animation-delay: 0.2s; }
.core-item:nth-child(2) { animation-delay: 0.4s; }
.core-item:nth-child(3) { animation-delay: 0.6s; }

/* Enhanced Core Circles */
.core-circle {
    position: relative;
    width: 160px;
    height: 160px;
    margin-bottom: 2rem;
    cursor: pointer;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.circle-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0.05) 100%);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    box-shadow: 
        0 20px 60px rgba(0, 0, 0, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
    border: 2px solid rgba(255, 255, 255, 0.2);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.circle-bg::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    border-radius: 50%;
    background: linear-gradient(45deg, #3b82f6, #10b981, #8b5cf6, #3b82f6);
    z-index: -1;
    opacity: 0;
    transition: opacity 0.5s ease;
    animation: borderRotate 3s linear infinite;
}

.core-item:hover .circle-bg::before {
    opacity: 1;
}

.circle-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 2;
}

.core-icon {
    width: 90px;
    height: 90px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.3));
}

.core-icon svg {
    width: 70px;
    height: 70px;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Simplified Icon Styles */
.core-icon svg {
    transition: all 0.3s ease;
}

.core-item:hover .core-icon svg {
    transform: scale(1.1);
}

.circle-dot {
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: linear-gradient(135deg, #3b82f6, #10b981);
    border: 3px solid rgba(255, 255, 255, 0.9);
    box-shadow: 
        0 6px 20px rgba(59, 130, 246, 0.4),
        0 0 0 6px rgba(59, 130, 246, 0.1);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Individual Circle Styles - Glass Morphism */
.core-circle.technology .circle-bg {
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.2) 0%, rgba(16, 185, 129, 0.2) 100%);
    border: 2px solid rgba(59, 130, 246, 0.3);
}

.core-circle.innovation .circle-bg {
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.2) 0%, rgba(139, 92, 246, 0.2) 100%);
    border: 2px solid rgba(16, 185, 129, 0.3);
}

.core-circle.partnerships .circle-bg {
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.2) 0%, rgba(59, 130, 246, 0.2) 100%);
    border: 2px solid rgba(139, 92, 246, 0.3);
}

/* Enhanced Hover Effects */
.core-item:hover .core-circle {
    transform: translateY(-15px) scale(1.08);
}

.core-item:hover .circle-bg {
    box-shadow: 
        0 30px 80px rgba(0, 0, 0, 0.4),
        inset 0 1px 0 rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(25px);
}

.core-item:hover .core-icon {
    transform: scale(1.1);
    filter: drop-shadow(0 6px 12px rgba(0, 0, 0, 0.4));
}

.core-item:hover .core-icon svg {
    transform: scale(1.15) rotate(8deg);
}

.core-item:hover .circle-dot {
    transform: translateX(-50%) scale(1.3);
    box-shadow: 
        0 8px 25px rgba(59, 130, 246, 0.6),
        0 0 0 8px rgba(59, 130, 246, 0.15);
}

/* Core Content */
.core-content {
    max-width: 280px;
}

.core-item-title {
    font-size: 1.5rem;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 1rem;
    transition: all 0.3s ease;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.core-item:hover .core-item-title {
    color: #3b82f6;
    text-shadow: 0 0 20px rgba(59, 130, 246, 0.5);
}

.core-item-description {
    font-size: 1rem;
    color: #cbd5e1;
    line-height: 1.6;
    transition: all 0.3s ease;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
}

.core-item:hover .core-item-description {
    color: #e2e8f0;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
}

/* Animations */
@keyframes lineGrow {
    from {
        width: 0;
        opacity: 0;
    }
    to {
        width: 35%;
        opacity: 1;
    }
}

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

@keyframes pulse {
    0%, 100% {
        transform: translateX(-50%) scale(1);
    }
    50% {
        transform: translateX(-50%) scale(1.1);
    }
}

/* Icon Animation Keyframes */

/* Advanced Animation Keyframes */
@keyframes advancedLineGrow {
    0% {
        width: 0;
        opacity: 0;
        box-shadow: 0 0 0 rgba(59, 130, 246, 0);
    }
    50% {
        opacity: 1;
        box-shadow: 0 0 30px rgba(59, 130, 246, 0.6);
    }
    100% {
        width: 40%;
        opacity: 0.8;
        box-shadow: 0 0 20px rgba(59, 130, 246, 0.4);
    }
}

@keyframes networkPulse {
    0%, 100% {
        opacity: 0;
        transform: scaleX(0);
    }
    50% {
        opacity: 0.6;
        transform: scaleX(1);
    }
}

@keyframes borderRotate {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

@keyframes titleUnderline {
    0%, 100% {
        width: 80px;
        opacity: 0.8;
    }
    50% {
        width: 120px;
        opacity: 1;
    }
}

@keyframes backgroundMove {
    0% {
        transform: translate(0, 0);
    }
    100% {
        transform: translate(-60px, -60px);
    }
}

@keyframes glowingBorder {
    0%, 100% {
        background-position: 0% 0%;
        opacity: 0.4;
    }
    25% {
        background-position: 100% 0%;
        opacity: 0.8;
    }
    50% {
        background-position: 100% 100%;
        opacity: 0.6;
    }
    75% {
        background-position: 0% 100%;
        opacity: 0.8;
    }
}

@keyframes borderGlow {
    0%, 100% {
        filter: hue-rotate(0deg) brightness(1);
        box-shadow: 
            0 20px 60px rgba(0, 0, 0, 0.1),
            0 0 0 1px rgba(59, 130, 246, 0.2);
    }
    33% {
        filter: hue-rotate(120deg) brightness(1.1);
        box-shadow: 
            0 20px 60px rgba(0, 0, 0, 0.1),
            0 0 0 1px rgba(16, 185, 129, 0.3),
            0 0 20px rgba(16, 185, 129, 0.2);
    }
    66% {
        filter: hue-rotate(240deg) brightness(1.05);
        box-shadow: 
            0 20px 60px rgba(0, 0, 0, 0.1),
            0 0 0 1px rgba(139, 92, 246, 0.3),
            0 0 20px rgba(139, 92, 246, 0.2);
    }
}

.circle-dot {
    animation: pulse 2s ease-in-out infinite;
    animation-delay: 2s;
}

/* Partner Brands Section - Modern Grid Design */
.partner-brands-section {
    padding: 6rem 0;
    background: linear-gradient(135deg, #f8fafc 0%, #e8f0fe 100%);
    position: relative;
    overflow: hidden;
}

.partner-brands-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 20% 50%, rgba(37, 99, 235, 0.05) 0%, transparent 50%),
                radial-gradient(circle at 80% 50%, rgba(59, 130, 246, 0.05) 0%, transparent 50%);
    pointer-events: none;
}

.partner-brands-title {
    font-size: 2.5rem;
    font-weight: 700;
    background: linear-gradient(135deg, var(--midnight-blue) 0%, var(--primary-main) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1rem;
    position: relative;
}

.partner-brands-subtitle {
    font-size: 1.125rem;
    color: var(--gray-600);
    font-weight: 400;
    margin-bottom: 4rem;
    max-width: 650px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.8;
}

/* Modern Grid Layout */
.partner-brands-grid {
    display: grid;
    grid-template-columns: repeat(8, 1fr);
    gap: 1.5rem;
    max-width: 1400px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.brand-card {
    position: relative;
    aspect-ratio: 1;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.brand-card-inner {
    width: 100%;
    height: 100%;
    background: white;
    border-radius: 1rem;
    padding: 1.25rem;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    border: 2px solid rgba(226, 232, 240, 0.8);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

.brand-card-inner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, 
                var(--primary-light) 0%, 
                var(--primary-main) 100%);
    opacity: 0;
    transition: opacity 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 0;
}

.brand-card:hover {
    transform: translateY(-8px);
}

.brand-card:hover .brand-card-inner {
    border-color: var(--primary-main);
    box-shadow: 0 12px 40px rgba(37, 99, 235, 0.15);
}

.brand-card:hover .brand-card-inner::before {
    opacity: 0.03;
}

.brand-logo-img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    filter: none;
    position: relative;
    z-index: 1;
    max-height: 80px;
}

/* Floating animation for added visual interest */
@keyframes float {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-10px);
    }
}

.brand-card:nth-child(1) { animation: float 6s ease-in-out infinite; }
.brand-card:nth-child(2) { animation: float 7s ease-in-out infinite; }
.brand-card:nth-child(3) { animation: float 8s ease-in-out infinite; }
.brand-card:nth-child(4) { animation: float 6.5s ease-in-out infinite; }
.brand-card:nth-child(5) { animation: float 7.5s ease-in-out infinite; }
.brand-card:nth-child(6) { animation: float 8.5s ease-in-out infinite; }
.brand-card:nth-child(7) { animation: float 7s ease-in-out infinite; }
.brand-card:nth-child(8) { animation: float 6s ease-in-out infinite; }

/* Responsive Design for Partner Brands */

@media (max-width: 1400px) {
    .partner-brands-grid {
        grid-template-columns: repeat(6, 1fr);
        gap: 1.25rem;
    }
}

@media (max-width: 1200px) {
    .partner-brands-grid {
        grid-template-columns: repeat(5, 1fr);
        gap: 1.25rem;
    }
}

@media (max-width: 1024px) {
    .partner-brands-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 1.25rem;
    }
    
    .brand-card-inner {
        padding: 1.5rem;
    }
}

@media (max-width: 768px) {
    .partner-brands-section {
        padding: 4rem 0;
    }
    
    .partner-brands-title {
        font-size: 2rem;
    }
    
    .partner-brands-subtitle {
        font-size: 1rem;
        margin-bottom: 2.5rem;
    }
    
    .partner-brands-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 1rem;
    }
    
    .brand-card-inner {
        padding: 1.25rem;
        border-radius: 1rem;
    }
    
    .brand-logo-img {
        max-height: 100px;
    }
    
    /* Pause animations on mobile for better performance */
    .brand-card {
        animation: none !important;
    }
}

@media (max-width: 480px) {
    .partner-brands-section {
        padding: 3rem 0;
    }
    
    .partner-brands-title {
        font-size: 1.75rem;
    }
    
    .partner-brands-subtitle {
        font-size: 0.95rem;
        margin-bottom: 2rem;
    }
    
    .partner-brands-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.875rem;
    }
    
    .brand-card-inner {
        padding: 1rem;
        border-radius: 0.875rem;
    }
    
    .brand-logo-img {
        max-height: 80px;
    }
    
    .brand-card:hover {
        transform: translateY(-4px);
    }
}

/* Smart Footer Styles */
.site-footer {
    background: #1e293b;
    color: #e2e8f0;
    position: relative;
}

.footer-main {
    padding: 4rem 0 2rem;
    position: relative;
    z-index: 1;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 3rem;
    margin-bottom: 2rem;
}

/* Footer Sections */
.footer-section {
    position: relative;
}

.footer-section-header {
    margin-bottom: 1.5rem;
}

.footer-title {
    font-size: 1.25rem;
    font-weight: 600;
    color: #ffffff;
    margin: 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.footer-toggle {
    display: none;
    background: none;
    border: none;
    color: #94a3b8;
    cursor: pointer;
    padding: 0.25rem;
    border-radius: 0.25rem;
    transition: all 0.3s ease;
}

.footer-toggle:hover {
    color: #ffffff;
    background: rgba(255, 255, 255, 0.1);
}

.footer-toggle svg {
    transition: transform 0.3s ease;
}

.footer-toggle[aria-expanded="true"] svg {
    transform: rotate(180deg);
}

.footer-section-content {
    transition: all 0.3s ease;
}

/* Company Information */
.company-logo-footer {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.footer-logo,
.company-logo-footer .custom-logo {
    height: 2.5rem;
    width: auto;
    filter: brightness(0) invert(1);
}

.company-name {
    font-size: 1.5rem;
    font-weight: 700;
    color: #ffffff;
}

.company-description {
    font-size: 0.95rem;
    line-height: 1.6;
    color: #cbd5e1;
    margin-bottom: 2rem;
}

/* Social Links */
.social-links {
    display: flex;
    gap: 1rem;
}

.social-link {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #e2e8f0;
    transition: all 0.3s ease;
    text-decoration: none;
}

.social-link:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

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

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

.social-link.instagram:hover {
    background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
    border-color: #bc1888;
    color: white;
}

/* Footer Links */
.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 0.75rem;
}

.footer-links a {
    color: #cbd5e1;
    text-decoration: none;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    display: block;
    padding: 0.25rem 0;
}

.footer-links a:hover {
    color: #3b82f6;
    padding-left: 0.5rem;
}

/* Contact Information */
.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.contact-icon {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: rgba(59, 130, 246, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #3b82f6;
    flex-shrink: 0;
}

.contact-details {
    flex: 1;
}

.contact-label {
    display: block;
    font-size: 0.875rem;
    color: #94a3b8;
    margin-bottom: 0.25rem;
}

.contact-value {
    color: #e2e8f0;
    font-size: 0.95rem;
    line-height: 1.5;
    text-decoration: none;
    transition: color 0.3s ease;
}

a.contact-value:hover {
    color: #3b82f6;
}

/* Footer Bottom */
.footer-bottom {
    background: #0f172a;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 1.5rem 0;
    position: relative;
    z-index: 1;
}

.footer-bottom-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.copyright p {
    margin: 0;
    color: #94a3b8;
    font-size: 0.875rem;
}

.footer-bottom-links {
    display: flex;
    gap: 2rem;
}

.footer-bottom-links a {
    color: #cbd5e1;
    text-decoration: none;
    font-size: 0.875rem;
    transition: color 0.3s ease;
}

.footer-bottom-links a:hover {
    color: #3b82f6;
}

/* Mobile Responsive Footer */
@media (max-width: 768px) {
    .footer-main {
        padding: 3rem 0 1.5rem;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 0;
    }
    
    .footer-section {
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        padding: 1.5rem 0;
    }
    
    .footer-section:last-child {
        border-bottom: none;
    }
    
    .footer-section.company-info {
        border-bottom: none;
        padding-bottom: 2rem;
    }
    
    .footer-toggle {
        display: block;
    }
    
    .footer-section-content {
        max-height: 0;
        overflow: hidden;
        opacity: 0;
    }
    
    .footer-section.company-info .footer-section-content {
        max-height: none;
        overflow: visible;
        opacity: 1;
    }
    
    .footer-section.active .footer-section-content {
        max-height: 500px;
        opacity: 1;
        margin-top: 1rem;
    }
    
    .company-logo-footer {
        justify-content: center;
        text-align: center;
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .company-description {
        text-align: center;
        margin-bottom: 1.5rem;
    }
    
    .social-links {
        justify-content: center;
    }
    
    .footer-bottom-content {
        flex-direction: column;
        text-align: center;
    }
    
    .footer-bottom-links {
        flex-wrap: wrap;
        justify-content: center;
        gap: 1rem;
    }
}

@media (max-width: 480px) {
    .footer-main {
        padding: 2rem 0 1rem;
    }
    
    .footer-section {
        padding: 1rem 0;
    }
    
    .company-name {
        font-size: 1.25rem;
    }
    
    .social-link {
        width: 40px;
        height: 40px;
    }
    
    .contact-item {
        margin-bottom: 1rem;
    }
    
    .contact-icon {
        width: 40px;
        height: 40px;
    }
}

/* Core Mobile Responsive */
@media (max-width: 768px) {
    .core-section {
        padding: 3rem 0;
    }
    
    .core-title {
        font-size: 2.25rem;
    }
    
    .core-subtitle {
        font-size: 1.125rem;
        margin-bottom: 2rem;
    }
    
    .core-items {
        flex-direction: column;
        gap: 3rem;
    }
    
    .core-circle {
        width: 120px;
        height: 120px;
        margin-bottom: 1.5rem;
    }
    
    .core-icon {
        width: 65px;
        height: 65px;
    }
    
    .core-icon svg {
        width: 50px;
        height: 50px;
    }
    
    .core-item-title {
        font-size: 1.375rem;
    }
    
    .core-item-description {
        font-size: 0.95rem;
    }
    
    .connecting-lines,
    .timeline-base,
    .line {
        display: none;
    }
}

@media (max-width: 480px) {
    .core-circle {
        width: 100px;
        height: 100px;
    }
    
    .core-icon {
        width: 55px;
        height: 55px;
    }
    
    .core-icon svg {
        width: 40px;
        height: 40px;
    }
    
    .core-item-title {
        font-size: 1.25rem;
    }
    
    .core-item-description {
        font-size: 0.9rem;
    }
}

/* Features Section */
.features-section {
    background-color: #f9fafb;
}

.feature-icon {
    width: 4rem;
    height: 4rem;
    background: linear-gradient(135deg, #3b82f6 0%, #9333ea 50%, #7c3aed 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    transition: transform 0.3s ease;
}

.card:hover .feature-icon {
    transform: scale(1.1);
}

.feature-icon svg {
    width: 2rem;
    height: 2rem;
    color: white;
}

.feature-title {
    font-size: 1.25rem;
    font-weight: 600;
    color: #111827;
    margin-bottom: 1rem;
    text-align: center;
}

.feature-description {
    color: #6b7280;
    line-height: 1.6;
    text-align: center;
}

/* Latest Posts Section */
.post-card {
    height: 100%;
    display: flex;
    flex-direction: column;
}

.post-image {
    width: 100%;
    height: 12rem;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.card:hover .post-image {
    transform: scale(1.05);
}

.post-content {
    padding: 1.5rem;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.post-meta {
    display: flex;
    align-items: center;
    font-size: 0.875rem;
    color: #6b7280;
    margin-bottom: 0.75rem;
}

.post-title {
    font-size: 1.25rem;
    font-weight: 600;
    color: #111827;
    margin-bottom: 0.75rem;
    line-height: 1.4;
}

.post-title a {
    color: #111827;
    text-decoration: none;
    transition: color 0.3s ease;
}

.card:hover .post-title a {
    color: #3b82f6;
}

.post-excerpt {
    color: #6b7280;
    margin-bottom: 1.5rem;
    flex-grow: 1;
    line-height: 1.6;
}

/* CTA Section */
.cta-section {
    background: #334155;
    color: white;
    text-align: center;
}

.cta-section h2 {
    font-size: 1.875rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: white;
}

@media (min-width: 768px) {
    .cta-section h2 {
        font-size: 2.25rem;
    }
}

.cta-section p {
    font-size: 1.25rem;
    color: #bfdbfe;
    margin-bottom: 2rem;
    max-width: 32rem;
    margin-left: auto;
    margin-right: auto;
}

/* Footer */
.site-footer {
    background: #1e293b;
    color: white;
    margin-top: auto;
}

.footer-widgets {
    padding: 2rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.footer-info {
    padding: 1.5rem 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    text-align: center;
    font-size: 0.875rem;
}

@media (min-width: 768px) {
    .footer-info {
        flex-direction: row;
        text-align: left;
    }
}

.site-info {
    margin-bottom: 1rem;
}

@media (min-width: 768px) {
    .site-info {
        margin-bottom: 0;
    }
}

.site-info p {
    margin-bottom: 0.5rem;
}

.site-info a {
    color: white;
    text-decoration: none;
    transition: color 0.2s ease;
}

.site-info a:hover {
    color: #bfdbfe;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: 600;
    line-height: 1.3;
    color: #111827;
}

p {
    margin-bottom: 1rem;
    line-height: 1.6;
}

a {
    color: #3b82f6;
    text-decoration: none;
    transition: color 0.2s ease;
}

a:hover {
    color: #2563eb;
}

/* Utility Classes */
.text-center {
    text-align: center;
}

.text-left {
    text-align: left;
}

.text-right {
    text-align: right;
}

.mb-2 {
    margin-bottom: 0.5rem;
}

.mb-4 {
    margin-bottom: 1rem;
}

.mb-6 {
    margin-bottom: 1.5rem;
}

.mb-8 {
    margin-bottom: 2rem;
}

.mt-4 {
    margin-top: 1rem;
}

.mt-8 {
    margin-top: 2rem;
}

.p-4 {
    padding: 1rem;
}

.p-6 {
    padding: 1.5rem;
}

.p-8 {
    padding: 2rem;
}

/* WordPress Specific */
.wp-block-image {
    margin-bottom: 1.5rem;
}

.wp-block-quote {
    border-left: 4px solid #3b82f6;
    padding-left: 1rem;
    font-style: italic;
    color: #374151;
    margin: 1.5rem 0;
}

.wp-block-code {
    background-color: #f3f4f6;
    border-radius: 0.375rem;
    padding: 1rem;
    font-family: ui-monospace, SFMono-Regular, "SF Mono", Consolas, "Liberation Mono", Menlo, monospace;
    font-size: 0.875rem;
    overflow-x: auto;
}

/* Forms */
input[type="text"],
input[type="email"],
input[type="password"],
textarea,
select {
    width: 100%;
    padding: 0.75rem;
    border: 1px solid #d1d5db;
    border-radius: 0.375rem;
    font-size: 1rem;
    transition: border-color 0.2s ease;
}

input[type="text"]:focus,
input[type="email"]:focus,
input[type="password"]:focus,
textarea:focus,
select:focus {
    outline: none;
    border-color: #3b82f6;
    box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
}

/* Print Styles */
@media print {
    * {
        background: transparent !important;
        color: black !important;
        box-shadow: none !important;
    }
    
    .no-print,
    .mobile-menu-button,
    .btn-primary,
    .btn-secondary {
        display: none !important;
    }
    
    .hero-section,
    .cta-section,
    .site-header,
    .site-footer {
        background: white !important;
        color: black !important;
    }
}

/* Responsive Images */
img {
    max-width: 100%;
    height: auto;
}

/* ===================================
   PROFESSIONAL BLOG LAYOUT STYLES
   =================================== */

/* Blog Header Banner */
body.single .blog-header-banner {
    position: relative;
    background: linear-gradient(135deg, var(--midnight-blue) 0%, var(--midnight-blue-light) 50%, var(--primary-main) 100%) !important;
    padding: 8rem 0 4rem !important;
    margin-top: -80px !important; /* Offset header height */
    overflow: hidden;
}

.blog-banner-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(15, 23, 42, 0.3);
    backdrop-filter: blur(1px);
}

.blog-banner-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: white;
    padding-top: 1rem;
}


.blog-banner-title {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    padding-top: 4rem;
    line-height: 1.2;
    color: white !important;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

.blog-banner-meta {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
    font-size: 1rem;
    opacity: 0.9;
}

.blog-meta-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.blog-meta-item svg {
    opacity: 0.8;
}

/* Blog Layout */
body.single .blog-main {
    padding: 3rem 0 !important;
    background: #f8fafc !important;
    min-height: 70vh !important;
}

body.single .blog-layout {
    display: grid !important;
    grid-template-columns: 300px 1fr !important;
    gap: 3rem !important;
    align-items: start !important;
}

body.single .blog-sidebar-container {
    position: sticky !important;
    top: 2rem !important;
}

body.single .blog-content-container {
    background: white !important;
    border-radius: 1.5rem !important;
    padding: 0 !important;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1), 0 4px 20px rgba(0, 0, 0, 0.05) !important;
    overflow: hidden !important;
}

/* Professional Single Post Article */
body.single .single-post-article {
    background: white !important;
    border-radius: 1.5rem !important;
    overflow: hidden !important;
}

/* Post Header Info */
.post-header-info {
    padding: 2rem 2.5rem 1rem;
    border-bottom: 1px solid #f1f5f9;
    background: linear-gradient(135deg, #fafbfc 0%, #f8fafc 100%);
}

.post-meta-details {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.meta-row {
    display: flex;
    align-items: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.meta-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
    color: var(--gray-600);
    font-weight: 500;
}

.reading-time {
    background: var(--primary-light);
    color: var(--primary-dark);
    padding: 0.5rem 1rem;
    border-radius: 2rem;
    font-weight: 600;
}

.reading-time svg {
    color: var(--primary-main);
}

.post-tags {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.post-tags a {
    background: #e2e8f0;
    color: var(--gray-700);
    padding: 0.25rem 0.75rem;
    border-radius: 1rem;
    text-decoration: none;
    font-size: 0.8rem;
    font-weight: 500;
    transition: all 0.3s ease;
}

.post-tags a:hover {
    background: var(--primary-main);
    color: white;
    transform: translateY(-1px);
}

/* Featured Image */
.post-featured-image {
    position: relative;
    margin: 0;
    height: 400px;
    overflow: hidden;
}

.image-container {
    position: relative;
    width: 100%;
    height: 100%;
}

.featured-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(180deg, transparent 0%, rgba(0, 0, 0, 0.1) 100%);
}

.post-featured-image:hover .featured-img {
    transform: scale(1.02);
}

/* Post Content Wrapper */
.post-content-wrapper {
    padding: 3rem 2.5rem;
}

/* Enhanced Entry Content */
.entry-content {
    font-size: 1.125rem;
    line-height: 1.8;
    color: var(--gray-800);
    margin-bottom: 3rem;
}

.entry-content > *:first-child {
    margin-top: 0;
}

.entry-content > *:last-child {
    margin-bottom: 0;
}

.entry-content h1,
.entry-content h2,
.entry-content h3,
.entry-content h4,
.entry-content h5,
.entry-content h6 {
    color: var(--midnight-blue);
    font-weight: 700;
    margin: 3rem 0 1.5rem 0;
    line-height: 1.3;
    position: relative;
}

.entry-content h2 {
    font-size: 2rem;
    padding-bottom: 1rem;
    border-bottom: 3px solid var(--primary-light);
    margin-bottom: 2rem;
}

.entry-content h2::before {
    content: '';
    position: absolute;
    bottom: -3px;
    left: 0;
    width: 60px;
    height: 3px;
    background: var(--primary-main);
}

.entry-content h3 {
    font-size: 1.5rem;
    color: var(--primary-dark);
}

.entry-content h4 {
    font-size: 1.25rem;
    color: var(--gray-800);
}

.entry-content p {
    margin-bottom: 1.75rem;
    text-align: justify;
}

.entry-content ul,
.entry-content ol {
    margin-bottom: 2rem;
    padding-left: 2rem;
}

.entry-content li {
    margin-bottom: 0.75rem;
    line-height: 1.7;
}

.entry-content ul li {
    position: relative;
}

.entry-content ul li::before {
    content: '';
    position: absolute;
    left: -1.5rem;
    top: 0.75rem;
    width: 6px;
    height: 6px;
    background: var(--primary-main);
    border-radius: 50%;
}

.entry-content blockquote {
    border-left: 4px solid var(--primary-main);
    background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
    padding: 2rem;
    margin: 2.5rem 0;
    border-radius: 0.75rem;
    font-style: italic;
    color: var(--gray-700);
    position: relative;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

.entry-content blockquote::before {
    content: '"';
    position: absolute;
    top: -10px;
    left: 20px;
    font-size: 4rem;
    color: var(--primary-main);
    font-family: serif;
    line-height: 1;
}

.entry-content code {
    background: #f1f5f9;
    color: var(--primary-dark);
    padding: 0.25rem 0.5rem;
    border-radius: 0.375rem;
    font-family: 'Monaco', 'Menlo', 'Ubuntu Mono', monospace;
    font-size: 0.9em;
    font-weight: 600;
}

.entry-content pre {
    background: #1e293b;
    color: #e2e8f0;
    padding: 2rem;
    border-radius: 0.75rem;
    overflow-x: auto;
    margin: 2rem 0;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.2);
}

.entry-content pre code {
    background: none;
    padding: 0;
    color: inherit;
    font-weight: normal;
}

.entry-content a {
    color: var(--primary-main);
    text-decoration: none;
    font-weight: 600;
    border-bottom: 2px solid transparent;
    transition: all 0.3s ease;
}

.entry-content a:hover {
    border-bottom-color: var(--primary-main);
    color: var(--primary-dark);
}

.entry-content img {
    border-radius: 0.75rem;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
    margin: 2rem 0;
}

/* Page Links */
.page-links {
    margin-top: 3rem;
    padding: 2rem;
    background: #f8fafc;
    border-radius: 0.75rem;
    text-align: center;
}

.page-links-title {
    font-weight: 600;
    color: var(--gray-700);
    margin-right: 1rem;
}

.page-number {
    display: inline-block;
    padding: 0.5rem 1rem;
    margin: 0 0.25rem;
    background: white;
    color: var(--primary-main);
    text-decoration: none;
    border-radius: 0.5rem;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.page-number:hover {
    background: var(--primary-main);
    color: white;
    transform: translateY(-2px);
}

/* Post Footer Meta */
.post-footer-meta {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin-bottom: 3rem;
    padding: 2rem;
    background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
    border-radius: 1rem;
    border: 1px solid #e2e8f0;
}

.meta-title {
    font-size: 1rem;
    font-weight: 700;
    color: var(--midnight-blue);
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.meta-title::before {
    content: '';
    width: 4px;
    height: 20px;
    background: var(--primary-main);
    border-radius: 2px;
}

.category-list,
.tags-list {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.category-badge,
.tag-badge {
    display: inline-block;
    padding: 0.5rem 1rem;
    background: white;
    color: var(--gray-700);
    text-decoration: none;
    border-radius: 2rem;
    font-size: 0.9rem;
    font-weight: 600;
    transition: all 0.3s ease;
    border: 2px solid #e2e8f0;
}

.category-badge:hover,
.tag-badge:hover {
    background: var(--primary-main);
    color: white;
    border-color: var(--primary-main);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(59, 130, 246, 0.3);
}

/* Author Bio Section */
.author-bio-section {
    margin-bottom: 3rem;
    padding: 2.5rem;
    background: linear-gradient(135deg, #fafbfc 0%, #f8fafc 100%);
    border-radius: 1.5rem;
    border: 1px solid #e2e8f0;
}

.author-bio-card {
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
}

.author-avatar {
    flex-shrink: 0;
}

.author-avatar img {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    border: 4px solid white;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.author-info {
    flex: 1;
}

.author-name {
    margin: 0 0 0.75rem 0;
    font-size: 1.25rem;
    font-weight: 700;
}

.author-name a {
    color: var(--midnight-blue);
    text-decoration: none;
    transition: color 0.3s ease;
}

.author-name a:hover {
    color: var(--primary-main);
}

.author-description {
    color: var(--gray-600);
    line-height: 1.6;
    margin-bottom: 1rem;
}

.author-meta {
    font-size: 0.9rem;
    color: var(--gray-500);
    font-weight: 600;
}

/* Share Buttons Section */
.post-share-section {
    margin-bottom: 3rem;
    padding: 2rem;
    background: white;
    border-radius: 1rem;
    border: 2px solid #f1f5f9;
}

.share-title {
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--midnight-blue);
    margin-bottom: 1.5rem;
    text-align: center;
}

.share-buttons {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.share-btn {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    border-radius: 2rem;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    cursor: pointer;
}

.share-btn.twitter {
    background: #1da1f2;
    color: white;
}

.share-btn.linkedin {
    background: #0077b5;
    color: white;
}

.share-btn.facebook {
    background: #1877f2;
    color: white;
}

.share-btn.copy-link {
    background: var(--gray-100);
    color: var(--gray-700);
    border-color: #e2e8f0;
}

.share-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

.share-btn.copy-link:hover {
    background: var(--primary-main);
    color: white;
    border-color: var(--primary-main);
}

/* Post Navigation Section */
.post-navigation-section {
    margin-bottom: 3rem;
    padding: 2.5rem;
    background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
    border-radius: 1.5rem;
    border: 1px solid #e2e8f0;
}

.nav-posts {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}

.nav-post {
    background: white;
    border-radius: 1rem;
    padding: 1.5rem;
    border: 2px solid #f1f5f9;
    transition: all 0.3s ease;
}

.nav-post:hover {
    border-color: var(--primary-main);
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.1);
}

.nav-label {
    display: block;
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--gray-500);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 1rem;
}

.nav-link {
    text-decoration: none;
    color: inherit;
}

.nav-content {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.prev-post .nav-content {
    flex-direction: row;
}

.next-post .nav-content {
    flex-direction: row-reverse;
    text-align: right;
}

.nav-thumbnail {
    flex-shrink: 0;
    width: 60px;
    height: 60px;
    border-radius: 0.5rem;
    overflow: hidden;
}

.nav-thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.nav-text {
    flex: 1;
    min-width: 0;
}

.nav-title {
    font-size: 1rem;
    font-weight: 600;
    color: var(--midnight-blue);
    line-height: 1.4;
    margin-bottom: 0.5rem;
    display: block;
}

.nav-date {
    font-size: 0.8rem;
    color: var(--gray-500);
    font-weight: 500;
}

/* Comments Section */
.comments-section {
    margin-top: 3rem;
    padding: 2.5rem;
    background: white;
    border-radius: 1.5rem;
    border: 1px solid #e2e8f0;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

/* Reading Progress Bar */
.reading-progress {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: rgba(255, 255, 255, 0.2);
    z-index: 9999;
    backdrop-filter: blur(10px);
}

.reading-progress-bar {
    height: 100%;
    background: linear-gradient(90deg, var(--primary-main) 0%, var(--primary-light) 100%);
    width: 0%;
    transition: width 0.3s ease;
    box-shadow: 0 0 10px rgba(59, 130, 246, 0.5);
}

/* Sidebar Styles */
.blog-sidebar {
    background: white;
    border-radius: 1rem;
    padding: 1.5rem;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
}

.sidebar-widget {
    margin-bottom: 2.5rem;
}

.sidebar-widget:last-child {
    margin-bottom: 0;
}

.widget-title {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--midnight-blue);
    margin-bottom: 1.5rem;
    padding-bottom: 0.75rem;
    border-bottom: 2px solid #e2e8f0;
}

.widget-title svg {
    color: var(--primary-main);
}

/* Search Widget */
.search-form-container {
    position: relative;
}

.search-form-container .search-form {
    display: flex;
    gap: 0.5rem;
}

.search-form-container input[type="search"] {
    flex: 1;
    padding: 0.75rem 1rem;
    border: 2px solid #e2e8f0;
    border-radius: 0.5rem;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.search-form-container input[type="search"]:focus {
    outline: none;
    border-color: var(--primary-main);
    box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
}

.search-form-container button {
    padding: 0.75rem 1rem;
    background: var(--primary-main);
    color: white;
    border: none;
    border-radius: 0.5rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.search-form-container button:hover {
    background: var(--primary-dark);
    transform: translateY(-1px);
}

/* Recent Posts Widget */
.recent-posts-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.recent-post-item {
    display: flex;
    gap: 0.75rem;
    padding: 0.75rem;
    border-radius: 0.5rem;
    transition: all 0.3s ease;
    border: 1px solid transparent;
}

.recent-post-item:hover {
    background: #f8fafc;
    border-color: #e2e8f0;
    transform: translateX(4px);
}

.recent-post-thumbnail {
    flex-shrink: 0;
    width: 60px;
    height: 60px;
    border-radius: 0.5rem;
    overflow: hidden;
}

.recent-post-thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.recent-post-content {
    flex: 1;
    min-width: 0;
}

.recent-post-title {
    margin: 0 0 0.5rem 0;
    font-size: 0.9rem;
    font-weight: 600;
    line-height: 1.3;
}

.recent-post-title a {
    color: var(--gray-800);
    text-decoration: none;
    transition: color 0.3s ease;
}

.recent-post-title a:hover {
    color: var(--primary-main);
}

.recent-post-meta {
    font-size: 0.75rem;
    color: var(--gray-600);
    display: flex;
    align-items: center;
    gap: 0.25rem;
}

.recent-post-meta svg {
    width: 12px;
    height: 12px;
}

/* Categories Widget */
.categories-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.category-item {
    margin: 0;
}

.category-link {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.75rem 1rem;
    background: #f8fafc;
    border-radius: 0.5rem;
    text-decoration: none;
    color: var(--gray-700);
    transition: all 0.3s ease;
    border: 1px solid transparent;
}

.category-link:hover {
    background: var(--primary-light);
    color: var(--primary-dark);
    border-color: var(--primary-main);
    transform: translateX(4px);
}

.category-name {
    font-weight: 500;
}

.category-count {
    background: var(--primary-main);
    color: white;
    font-size: 0.75rem;
    font-weight: 600;
    padding: 0.25rem 0.5rem;
    border-radius: 9999px;
    min-width: 24px;
    text-align: center;
}

/* Popular Posts Widget */
.popular-posts-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.popular-post-item {
    padding: 0.75rem;
    border-radius: 0.5rem;
    transition: all 0.3s ease;
    border: 1px solid transparent;
    background: #f8fafc;
}

.popular-post-item:hover {
    background: white;
    border-color: #e2e8f0;
    transform: translateX(4px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.popular-post-content {
    width: 100%;
}

.popular-post-title {
    margin: 0 0 0.5rem 0;
    font-size: 0.9rem;
    font-weight: 600;
    line-height: 1.3;
}

.popular-post-title a {
    color: var(--gray-800);
    text-decoration: none;
    transition: color 0.3s ease;
}

.popular-post-title a:hover {
    color: var(--primary-main);
}

.popular-post-meta {
    font-size: 0.75rem;
    color: var(--gray-600);
    display: flex;
    align-items: center;
    gap: 0.25rem;
}

.popular-post-meta svg {
    width: 12px;
    height: 12px;
}

.post-comments {
    display: flex;
    align-items: center;
    gap: 0.25rem;
}


/* Single Post Content */
.single-post {
    line-height: 1.7;
}

.post-thumbnail {
    border-radius: 1rem;
    overflow: hidden;
    margin-bottom: 2rem;
}

.post-thumbnail img {
    width: 100%;
    height: auto;
    max-height: 400px;
    object-fit: cover;
}

.entry-content {
    font-size: 1.1rem;
    color: var(--gray-800);
}

.entry-content h1,
.entry-content h2,
.entry-content h3,
.entry-content h4,
.entry-content h5,
.entry-content h6 {
    color: var(--midnight-blue);
    font-weight: 600;
    margin: 2rem 0 1rem 0;
    line-height: 1.3;
}

.entry-content h2 {
    font-size: 1.75rem;
    border-bottom: 2px solid #e2e8f0;
    padding-bottom: 0.5rem;
}

.entry-content h3 {
    font-size: 1.5rem;
}

.entry-content p {
    margin-bottom: 1.5rem;
}

.entry-content ul,
.entry-content ol {
    margin-bottom: 1.5rem;
    padding-left: 2rem;
}

.entry-content li {
    margin-bottom: 0.5rem;
}

.entry-content blockquote {
    border-left: 4px solid var(--primary-main);
    padding-left: 1.5rem;
    margin: 2rem 0;
    font-style: italic;
    color: var(--gray-600);
    background: #f8fafc;
    padding: 1.5rem;
    border-radius: 0.5rem;
}

.entry-content code {
    background: #f1f5f9;
    padding: 0.25rem 0.5rem;
    border-radius: 0.25rem;
    font-family: 'Monaco', 'Menlo', 'Ubuntu Mono', monospace;
    font-size: 0.9em;
}

.entry-content pre {
    background: #1e293b;
    color: #e2e8f0;
    padding: 1.5rem;
    border-radius: 0.5rem;
    overflow-x: auto;
    margin: 1.5rem 0;
}

.entry-content pre code {
    background: none;
    padding: 0;
    color: inherit;
}

/* Post Navigation */
.post-navigation {
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 2px solid #e2e8f0;
}

.nav-links {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}

.nav-previous,
.nav-next {
    padding: 1.5rem;
    background: #f8fafc;
    border-radius: 0.75rem;
    border: 1px solid #e2e8f0;
    transition: all 0.3s ease;
}

.nav-previous:hover,
.nav-next:hover {
    background: white;
    border-color: var(--primary-main);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.nav-previous a,
.nav-next a {
    text-decoration: none;
    color: var(--gray-800);
}

.nav-subtitle {
    display: block;
    font-size: 0.8rem;
    color: var(--gray-600);
    margin-bottom: 0.5rem;
    font-weight: 500;
}

.nav-title {
    display: block;
    font-weight: 600;
    color: var(--midnight-blue);
}

/* Responsive Design */
@media (max-width: 1024px) {
    .blog-layout {
        grid-template-columns: 250px 1fr;
        gap: 2rem;
    }
    
    .blog-content-container {
        padding: 2rem;
    }
    
    .blog-banner-title {
        font-size: 2.5rem;
    }
}

@media (max-width: 768px) {
    .blog-header-banner {
        padding: 6rem 0 3rem;
    }
    
    .blog-banner-title {
        font-size: 2rem;
    }
    
    .blog-banner-meta {
        gap: 1rem;
        font-size: 0.9rem;
    }
    
    .blog-layout {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .blog-sidebar-container {
        order: 2;
        position: static;
    }
    
    .blog-content-container {
        order: 1;
        padding: 1.5rem;
    }
    
    .nav-links {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
}

@media (max-width: 480px) {
    .blog-header-banner {
        padding: 5rem 0 2rem;
    }
    
    .blog-banner-title {
        font-size: 1.75rem;
        color: white !important;
        padding-top: 2rem;
    }
    
    .blog-banner-meta {
        flex-direction: column;
        gap: 0.75rem;
    }
    
    .blog-content-container {
        padding: 1rem;
    }
    
    .blog-sidebar {
        padding: 1rem;
    }
    
    .entry-content {
        font-size: 1rem;
    }
    
    .post-content-wrapper {
        padding: 2rem 1rem;
    }
    
    .post-header-info {
        padding: 1.5rem 1rem 1rem;
    }
    
    .meta-row {
        flex-direction: column;
        gap: 1rem;
        align-items: flex-start;
    }
    
    .post-featured-image {
        height: 250px;
    }
    
    .post-footer-meta {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        padding: 1.5rem;
    }
    
    .author-bio-section {
        padding: 1.5rem;
    }
    
    .author-bio-card {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }
    
    .share-buttons {
        gap: 0.5rem;
    }
    
    .share-btn {
        padding: 0.5rem 1rem;
        font-size: 0.8rem;
    }
    
    .nav-posts {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .nav-post {
        padding: 1rem;
    }
    
    .next-post .nav-content {
        flex-direction: row;
        text-align: left;
    }
    
    .comments-section {
        padding: 1.5rem;
    }
}

/* Enhanced Professional Blog Responsive Styles */
@media (max-width: 1200px) {
    .blog-layout {
        grid-template-columns: 280px 1fr;
        gap: 2.5rem;
    }
    
    .blog-content-container {
        padding: 0;
    }
    
    .post-content-wrapper {
        padding: 2.5rem 2rem;
    }
}

@media (max-width: 1024px) {
    .blog-layout {
        grid-template-columns: 250px 1fr;
        gap: 2rem;
    }
    
    .blog-banner-title {
        font-size: 2.5rem;
        color: white !important;
        padding-top: 3rem;
    }
    
    .post-content-wrapper {
        padding: 2rem 1.5rem;
    }
    
    .post-header-info {
        padding: 1.5rem 1.5rem 1rem;
    }
    
    .entry-content {
        font-size: 1.1rem;
    }
    
    .entry-content h2 {
        font-size: 1.75rem;
    }
    
    .entry-content h3 {
        font-size: 1.375rem;
    }
}

@media (max-width: 768px) {
    .blog-header-banner {
        padding: 6rem 0 3rem;
    }
    
    .blog-banner-title {
        font-size: 2rem;
        color: white !important;
        padding-top: 2.5rem;
    }
    
    .blog-banner-meta {
        gap: 1rem;
        font-size: 0.9rem;
    }
    
    .blog-layout {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .blog-sidebar-container {
        order: 2;
        position: static;
    }
    
    .blog-content-container {
        order: 1;
    }
    
    .post-content-wrapper {
        padding: 2rem 1.5rem;
    }
    
    .post-header-info {
        padding: 1.5rem 1.5rem 1rem;
    }
    
    .meta-row {
        flex-direction: column;
        gap: 1rem;
        align-items: flex-start;
    }
    
    .post-featured-image {
        height: 300px;
    }
    
    .entry-content {
        font-size: 1.05rem;
        line-height: 1.7;
    }
    
    .entry-content h2 {
        font-size: 1.625rem;
        margin: 2rem 0 1rem 0;
    }
    
    .entry-content h3 {
        font-size: 1.25rem;
    }
    
    .post-footer-meta {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        padding: 1.5rem;
    }
    
    .author-bio-section {
        padding: 2rem 1.5rem;
    }
    
    .post-share-section {
        padding: 1.5rem;
    }
    
    .share-buttons {
        gap: 0.75rem;
    }
    
    .share-btn {
        padding: 0.625rem 1.25rem;
        font-size: 0.85rem;
    }
    
    .post-navigation-section {
        padding: 2rem 1.5rem;
    }
    
    .nav-posts {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .nav-post {
        padding: 1.25rem;
    }
    
    .next-post .nav-content {
        flex-direction: row;
        text-align: left;
    }
    
    .comments-section {
        padding: 2rem 1.5rem;
    }
}

/* Core Values Section Styles */
.core-values-section {
    background: linear-gradient(135deg, var(--midnight-blue) 0%, #1e293b  50%, #0f172a 100%);
    position: relative;
    overflow: hidden;
    padding: 3rem 0;
}

.core-values-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg width="60" height="60" viewBox="0 0 60 60" xmlns="http://www.w3.org/2000/svg"><g fill="none" fill-rule="evenodd"><g fill="%23ffffff" fill-opacity="0.03"><circle cx="30" cy="30" r="1"/></g></svg>') repeat;
    opacity: 0.5;
}

.core-values-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: white;
    margin-bottom: 0.75rem;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.core-values-subtitle {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 2.5rem;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

.core-values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 1000px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.core-value-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 1.5rem;
    padding: 2rem 1.5rem;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.core-value-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0.05) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
    border-radius: 2rem;
}

.core-value-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    border-color: rgba(255, 255, 255, 0.2);
}

.core-value-card:hover::before {
    opacity: 1;
}

.value-icon-wrapper {
    margin-bottom: 1.5rem;
    position: relative;
}

.value-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    transition: all 0.4s ease;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

.value-icon.customer-first {
    background: linear-gradient(135deg, #ef4444 0%, #f87171 100%);
}

.value-icon.integrity {
    background: linear-gradient(135deg, #10b981 0%, #34d399 100%);
}

.value-icon.collaboration {
    background: linear-gradient(135deg, #3b82f6 0%, #60a5fa 100%);
}

.value-icon svg {
    color: white;
    filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.3));
}

.core-value-card:hover .value-icon {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
}

.core-value-card:hover .value-icon.customer-first {
    box-shadow: 0 15px 40px rgba(239, 68, 68, 0.4);
}

.core-value-card:hover .value-icon.integrity {
    box-shadow: 0 15px 40px rgba(16, 185, 129, 0.4);
}

.core-value-card:hover .value-icon.collaboration {
    box-shadow: 0 15px 40px rgba(59, 130, 246, 0.4);
}

.value-content {
    position: relative;
    z-index: 2;
}

.value-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: white;
    margin-bottom: 1rem;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.value-description {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
    text-align: left;
}

/* Floating Animation */
.core-value-card {
    animation: float 6s ease-in-out infinite;
}

.core-value-card:nth-child(2) {
    animation-delay: -2s;
}

.core-value-card:nth-child(3) {
    animation-delay: -4s;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-10px);
    }
}

/* Core Values Responsive Design */
@media (max-width: 1024px) {
    .core-values-grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 1.5rem;
    }
    
    .core-values-title {
        font-size: 2.25rem;
    }
    
    .core-value-card {
        padding: 1.75rem 1.25rem;
    }
}

@media (max-width: 768px) {
    .core-values-section {
        padding: 2.5rem 0;
    }
    
    .core-values-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .core-values-title {
        font-size: 2rem;
    }
    
    .core-values-subtitle {
        font-size: 1rem;
        margin-bottom: 2rem;
    }
    
    .core-value-card {
        padding: 1.5rem 1.25rem;
    }
    
    .value-icon {
        width: 50px;
        height: 50px;
    }
    
    .value-title {
        font-size: 1.1rem;
    }
    
    .value-description {
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .core-values-section {
        padding: 2rem 0;
    }
    
    .core-values-title {
        font-size: 1.75rem;
    }
    
    .core-values-subtitle {
        margin-bottom: 1.5rem;
    }
    
    .core-value-card {
        padding: 1.25rem 1rem;
    }
    
    .value-icon {
        width: 45px;
        height: 45px;
    }
    
    .value-icon-wrapper {
        margin-bottom: 1rem;
    }
}

/* Smart Services Section Styles */
.services-section-new {
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    position: relative;
    padding: 3rem 0;
    overflow: hidden;
}

.services-section-new::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg width="40" height="40" viewBox="0 0 40 40" xmlns="http://www.w3.org/2000/svg"><g fill="none" fill-rule="evenodd"><g fill="%23000000" fill-opacity="0.02"><circle cx="20" cy="20" r="1"/></g></svg>') repeat;
    opacity: 0.6;
}

.services-main-title {
    font-size: 3rem;
    font-weight: 700;
    color: var(--midnight-blue);
    margin-bottom: 1rem;
    position: relative;
    z-index: 2;
}

.services-main-subtitle {
    font-size: 1.2rem;
    color: var(--gray-600);
    max-width: 700px;
    margin: 0 auto 2.5rem;
    line-height: 1.6;
    position: relative;
    z-index: 2;
}

.services-smart-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(380px, 1fr));
    gap: 1.5rem;
    max-width: 1300px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.smart-service-card {
    background: white;
    border-radius: 1.5rem;
    padding: 0;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(0, 0, 0, 0.05);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    height: auto;
    min-height: 180px;
}

.smart-service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-main), var(--primary-light));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

.smart-service-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.12);
    border-color: rgba(37, 99, 235, 0.1);
    background: white;
    min-height: 320px;
}

.smart-service-card:hover::before {
    transform: scaleX(1);
}

.card-header {
    padding: 1.5rem 1.5rem 1rem;
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.service-icon-modern {
    width: 60px;
    height: 60px;
    border-radius: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.service-icon-modern::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: inherit;
    opacity: 0.1;
    transition: opacity 0.3s ease;
}

.smart-service-card:hover .service-icon-modern::before {
    opacity: 0.2;
}

.service-icon-modern.distribution {
    background: linear-gradient(135deg, #3b82f6 0%, #60a5fa 100%);
}

.service-icon-modern.supply-chain {
    background: linear-gradient(135deg, #10b981 0%, #34d399 100%);
}

.service-icon-modern.partners {
    background: linear-gradient(135deg, #8b5cf6 0%, #a78bfa 100%);
}

.service-icon-modern.technical {
    background: linear-gradient(135deg, #f59e0b 0%, #fbbf24 100%);
}

.service-icon-modern.consultative {
    background: linear-gradient(135deg, #ef4444 0%, #f87171 100%);
}

.service-icon-modern.contact-us {
    background: linear-gradient(135deg, #06b6d4 0%, #67e8f9 100%);
}

.service-icon-modern svg {
    color: white;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.2));
    transition: transform 0.3s ease;
}

.smart-service-card:hover .service-icon-modern svg {
    transform: scale(1.1);
}

.smart-service-title {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--midnight-blue);
    margin: 0;
    line-height: 1.3;
    flex: 1;
}

.card-content {
    padding: 0 1.5rem 1.5rem;
    flex: 1;
    display: flex;
    flex-direction: column;
    position: relative;
}

.smart-service-description {
    font-size: 0.95rem;
    color: var(--gray-600);
    line-height: 1.6;
    margin-bottom: 1.25rem;
    flex: 1;
    text-align: justify;
    opacity: 0;
    max-height: 0;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    transform: translateY(-10px);
}

.smart-service-card:hover .smart-service-description {
    opacity: 1;
    max-height: 200px;
    transform: translateY(0);
    margin-top: 1rem;
}

.service-icons {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto auto;
    gap: 0.4rem;
    margin-bottom: 0.75rem;
    opacity: 1;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.service-icons .service-icon-item {
    display: flex !important;
    align-items: center;
    justify-content: center;
    gap: 0.3rem;
    padding: 0.5rem 0.4rem;
    border-radius: 0.6rem;
    font-size: 0.65rem;
    font-weight: 600;
    color: white;
    min-height: 36px !important;
    max-height: 36px !important;
    width: auto !important;
    height: auto !important;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
    text-align: center;
    border: none;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

.service-icons .service-icon-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    min-height: 36px !important;
    max-height: 36px !important;
}

.service-icons .service-icon-item svg {
    flex-shrink: 0;
    width: 16px !important;
    height: 16px !important;
}

.service-icons .service-icon-item span {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.service-icon-item:nth-child(3) {
    grid-column: 1 / -1;
    max-width: 100%;
}

/* Technology & Innovation Icons */
.tech-icon {
    background: linear-gradient(135deg, #1e40af 0%, #1e3a8a 100%);
}

.partnership-icon {
    background: linear-gradient(135deg, #047857 0%, #065f46 100%);
}

.quality-icon {
    background: linear-gradient(135deg, #7c2d12 0%, #92400e 100%);
}

/* Logistics & Operations Icons */
.logistics-icon {
    background: linear-gradient(135deg, #6b21a8 0%, #581c87 100%);
}

.delivery-icon {
    background: linear-gradient(135deg, #0c4a6e 0%, #075985 100%);
}

.cost-icon {
    background: linear-gradient(135deg, #b91c1c 0%, #991b1b 100%);
}

/* Training & Support Icons */
.training-icon {
    background: linear-gradient(135deg, #1e40af 0%, #1e3a8a 100%);
}

.marketing-icon {
    background: linear-gradient(135deg, #047857 0%, #065f46 100%);
}

.growth-icon {
    background: linear-gradient(135deg, #7c2d12 0%, #92400e 100%);
}

/* Technical & Expert Icons */
.expert-icon {
    background: linear-gradient(135deg, #6b21a8 0%, #581c87 100%);
}

.implementation-icon {
    background: linear-gradient(135deg, #0c4a6e 0%, #075985 100%);
}

.support-icon {
    background: linear-gradient(135deg, #b91c1c 0%, #991b1b 100%);
}

/* Solutions & Efficiency Icons */
.solution-icon {
    background: linear-gradient(135deg, #1e40af 0%, #1e3a8a 100%);
}

.efficiency-icon {
    background: linear-gradient(135deg, #047857 0%, #065f46 100%);
}

.scale-icon {
    background: linear-gradient(135deg, #7c2d12 0%, #92400e 100%);
}

/* Contact & Communication Icons */
.consultation-icon {
    background: linear-gradient(135deg, #6b21a8 0%, #581c87 100%);
}

.guidance-icon {
    background: linear-gradient(135deg, #0c4a6e 0%, #075985 100%);
}

.response-icon {
    background: linear-gradient(135deg, #b91c1c 0%, #991b1b 100%);
}



/* Contact Card Specific Styles */
.contact-card .contact-cta {
    margin-top: 1rem;
    opacity: 0;
    transform: translateY(10px);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.contact-card:hover .contact-cta {
    opacity: 1;
    transform: translateY(0);
}

.contact-btn {
    background: linear-gradient(135deg, #06b6d4 0%, #67e8f9 100%);
    color: white;
    border: none;
    padding: 0.75rem 1.5rem;
    border-radius: 0.75rem;
    font-size: 0.9rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(6, 182, 212, 0.3);
    width: 100%;
    justify-content: center;
}

.contact-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(6, 182, 212, 0.4);
    background: linear-gradient(135deg, #0891b2 0%, #06b6d4 100%);
}

/* Contact Modal Styles */
.contact-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 9999;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 1rem;
}

.contact-modal.active {
    display: flex;
}

.modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}

.modal-content {
    background: white;
    border-radius: 1.5rem;
    max-width: 600px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
    z-index: 10;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.25);
    animation: modalSlideIn 0.3s ease-out;
}

@keyframes modalSlideIn {
    from {
        opacity: 0;
        transform: translateY(-30px) scale(0.95);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.modal-header {
    padding: 2rem 2rem 1rem;
    border-bottom: 1px solid #e5e7eb;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.modal-title {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--midnight-blue);
    margin: 0;
}

.modal-close {
    background: none;
    border: none;
    padding: 0.5rem;
    cursor: pointer;
    color: var(--gray-500);
    transition: all 0.3s ease;
    border-radius: 0.5rem;
}

.modal-close:hover {
    background: #f3f4f6;
    color: var(--gray-700);
}

.modal-body {
    padding: 1rem 2rem 2rem;
}

.modal-subtitle {
    color: var(--gray-600);
    margin-bottom: 2rem;
    line-height: 1.6;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.form-group label {
    font-weight: 600;
    color: var(--gray-700);
    font-size: 0.9rem;
}

.form-group input,
.form-group textarea {
    padding: 0.75rem 1rem;
    border: 2px solid #e5e7eb;
    border-radius: 0.75rem;
    font-size: 1rem;
    transition: all 0.3s ease;
    background: white;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #06b6d4;
    box-shadow: 0 0 0 3px rgba(6, 182, 212, 0.1);
}

.form-group textarea {
    resize: vertical;
    min-height: 100px;
}

.form-actions {
    display: flex;
    gap: 1rem;
    justify-content: flex-end;
    margin-top: 1rem;
}

.btn-primary,
.btn-secondary {
    padding: 0.75rem 1.5rem;
    border-radius: 0.75rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    border: none;
    font-size: 0.9rem;
}

.btn-primary {
    background: linear-gradient(135deg, #06b6d4 0%, #67e8f9 100%);
    color: white;
    box-shadow: 0 4px 12px rgba(6, 182, 212, 0.3);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(6, 182, 212, 0.4);
}

.btn-secondary {
    background: #f3f4f6;
    color: var(--gray-700);
    border: 1px solid #d1d5db;
}

.btn-secondary:hover {
    background: #e5e7eb;
}

/* Staggered Animation */
.smart-service-card:nth-child(1) { animation-delay: 0.1s; }
.smart-service-card:nth-child(2) { animation-delay: 0.2s; }
.smart-service-card:nth-child(3) { animation-delay: 0.3s; }
.smart-service-card:nth-child(4) { animation-delay: 0.4s; }
.smart-service-card:nth-child(5) { animation-delay: 0.5s; }
.smart-service-card:nth-child(6) { animation-delay: 0.6s; }

/* Responsive Design for Smart Services */
@media (max-width: 1200px) {
    .services-smart-grid {
        grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
        gap: 1.5rem;
    }
    
    .services-main-title {
        font-size: 2.5rem;
    }
}

@media (max-width: 768px) {
    .services-section-new {
        padding: 2.5rem 0;
    }
    
    .services-smart-grid {
        grid-template-columns: 1fr;
        gap: 1.25rem;
    }
    
    .services-main-title {
        font-size: 2rem;
    }
    
    .services-main-subtitle {
        font-size: 1.1rem;
        margin-bottom: 2rem;
    }
    
    .smart-service-card {
        min-height: 160px;
    }
    
    .smart-service-card:hover {
        min-height: 280px;
    }
    
    .card-header {
        padding: 1.25rem 1.25rem 0.75rem;
        flex-direction: column;
        align-items: flex-start;
        gap: 0.75rem;
    }
    
    .service-icon-modern {
        width: 50px;
        height: 50px;
    }
    
    .smart-service-title {
        font-size: 1.2rem;
    }
    
    .card-content {
        padding: 0 1.25rem 1.25rem;
    }
    
}

@media (max-width: 768px) {
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .modal-header {
        padding: 1.5rem 1.5rem 1rem;
    }
    
    .modal-body {
        padding: 1rem 1.5rem 1.5rem;
    }
    
    .modal-title {
        font-size: 1.5rem;
    }
    
    .form-actions {
        flex-direction: column;
    }
    
    .btn-primary,
    .btn-secondary {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .services-section-new {
        padding: 2rem 0;
    }
    
    .services-main-title {
        font-size: 1.75rem;
    }
    
    .services-main-subtitle {
        margin-bottom: 1.5rem;
    }
    
    .service-icons .service-icon-item {
        font-size: 0.55rem !important;
        padding: 0.35rem 0.25rem;
        gap: 0.2rem;
        min-height: 28px !important;
        max-height: 28px !important;
        width: auto !important;
        height: auto !important;
    }
    
    .service-icons .service-icon-item svg {
        width: 12px !important;
        height: 12px !important;
    }
    
    .service-icons {
        gap: 0.25rem;
    }
    
    .smart-service-card {
        min-height: 140px;
    }
    
    .smart-service-card:hover {
        min-height: 260px;
    }
    
    .card-header {
        padding: 1rem 1rem 0.5rem;
    }
    
    .card-content {
        padding: 0 1rem 1rem;
    }
    
    
    .smart-service-description {
        font-size: 0.9rem;
        margin-bottom: 1rem;
    }
    
    .service-icons .service-icon-item {
        font-size: 0.6rem !important;
        padding: 0.4rem 0.3rem;
        gap: 0.25rem;
        min-height: 32px !important;
        max-height: 32px !important;
        width: auto !important;
        height: auto !important;
    }
    
    .service-icons .service-icon-item svg {
        width: 14px !important;
        height: 14px !important;
    }
    
    .service-icons {
        gap: 0.3rem;
    }
    
    
    .modal-content {
        margin: 0.5rem;
        max-height: 95vh;
    }
    
    .modal-header {
        padding: 1rem 1rem 0.75rem;
    }
    
    .modal-body {
        padding: 0.75rem 1rem 1rem;
    }
    
    .modal-title {
        font-size: 1.25rem;
    }
}

/* Contact Page Styles */
.contact-hero {
    background: linear-gradient(135deg, var(--midnight-blue) 0%, #1e293b 50%, #0f172a 100%);
    position: relative;
    padding: 8rem 0 4rem;
    overflow: hidden;
}

.contact-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg width="60" height="60" viewBox="0 0 60 60" xmlns="http://www.w3.org/2000/svg"><g fill="none" fill-rule="evenodd"><g fill="%23ffffff" fill-opacity="0.05"><circle cx="30" cy="30" r="1"/></g></svg>') repeat;
    opacity: 0.6;
}

.contact-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.2);
}

.contact-hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: white;
}

.contact-hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: white !important;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.contact-hero-subtitle {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.9);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

.contact-content-section {
    padding: 5rem 0;
    background: #f8fafc;
}

.contact-layout {
    display: grid;
    grid-template-columns: 1fr 400px;
    gap: 4rem;
    max-width: 1200px;
    margin: 0 auto;
}

.contact-form-container {
    background: white;
    border-radius: 1.5rem;
    padding: 3rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.contact-form-header {
    margin-bottom: 2.5rem;
}

.contact-form-title {
    font-size: 2rem;
    font-weight: 700;
    color: var(--midnight-blue);
    margin-bottom: 1rem;
}

.contact-form-subtitle {
    color: var(--gray-600);
    line-height: 1.6;
}

.contact-page-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.form-group label {
    font-weight: 600;
    color: var(--gray-700);
    font-size: 0.9rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 0.875rem 1rem;
    border: 2px solid #e5e7eb;
    border-radius: 0.75rem;
    font-size: 1rem;
    transition: all 0.3s ease;
    background: white;
    font-family: inherit;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-main);
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
}

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

.contact-submit-btn {
    background: linear-gradient(135deg, var(--primary-main) 0%, var(--primary-light) 100%);
    color: white;
    border: none;
    padding: 1rem 2rem;
    border-radius: 0.75rem;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(37, 99, 235, 0.3);
}

.contact-submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(37, 99, 235, 0.4);
}

.contact-info-container {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.contact-info-card,
.contact-map-card {
    background: white;
    border-radius: 1.5rem;
    padding: 2rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.contact-info-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--midnight-blue);
    margin-bottom: 1.5rem;
}

.contact-info-item {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.5rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid #f3f4f6;
}

.contact-info-item:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

.contact-info-icon {
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, var(--primary-main) 0%, var(--primary-light) 100%);
    border-radius: 0.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
}

.contact-info-content h4 {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--midnight-blue);
    margin-bottom: 0.5rem;
}

.contact-info-content p {
    color: var(--gray-600);
    line-height: 1.6;
    margin: 0;
}

.map-container {
    margin-bottom: 1rem;
}

.map-placeholder {
    background: #f3f4f6;
    border-radius: 0.75rem;
    height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px dashed #d1d5db;
}

.map-placeholder-content {
    text-align: center;
    color: var(--gray-500);
}

.map-placeholder-content svg {
    margin-bottom: 0.5rem;
}

.map-placeholder-content p {
    font-weight: 600;
    margin-bottom: 0.25rem;
}

.map-actions {
    display: flex;
    gap: 1rem;
}

.map-link {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--primary-main);
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
    transition: color 0.3s ease;
}

.map-link:hover {
    color: var(--primary-dark);
}

.contact-cta-section {
    background: linear-gradient(135deg, var(--primary-main) 0%, var(--primary-dark) 100%);
    padding: 4rem 0;
    text-align: center;
}

.contact-cta-content {
    max-width: 600px;
    margin: 0 auto;
}

.contact-cta-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: white;
    margin-bottom: 1rem;
}

.contact-cta-subtitle {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2rem;
    line-height: 1.6;
}

.contact-cta-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
}

.cta-btn {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.875rem 1.5rem;
    border-radius: 0.75rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

.cta-btn.primary {
    background: white;
    color: var(--primary-main);
}

.cta-btn.primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 255, 255, 0.3);
}

.cta-btn.secondary {
    background: rgba(255, 255, 255, 0.1);
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.cta-btn.secondary:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
}

/* Contact Page Responsive */
@media (max-width: 1024px) {
    .contact-layout {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .contact-hero-title {
        font-size: 3rem;
        color: white !important;
    }
}

@media (max-width: 768px) {
    .contact-hero {
        padding: 6rem 0 3rem;
    }
    
    .contact-hero-title {
        font-size: 2.5rem;
        color: white !important;
    }
    
    .contact-content-section {
        padding: 3rem 0;
    }
    
    .contact-form-container {
        padding: 2rem;
    }
    
    .form-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .contact-cta-actions {
        flex-direction: column;
        align-items: center;
    }
    
    .cta-btn {
        width: 200px;
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .contact-hero-title {
        font-size: 2rem;
        color: white !important;
    }
    
    .contact-form-container,
    .contact-info-card,
    .contact-map-card {
        padding: 1.5rem;
    }
    
    .contact-form-title {
        font-size: 1.5rem;
    }
    
    .contact-cta-title {
        font-size: 2rem;
    }
}

/* About Us Page Styles */
.about-hero {
    background: linear-gradient(135deg, var(--midnight-blue) 0%, #1e293b 50%, #0f172a 100%);
    position: relative;
    padding: 8rem 0 4rem;
    overflow: hidden;
}

.about-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg width="60" height="60" viewBox="0 0 60 60" xmlns="http://www.w3.org/2000/svg"><g fill="none" fill-rule="evenodd"><g fill="%23ffffff" fill-opacity="0.05"><circle cx="30" cy="30" r="1"/></g></svg>') repeat;
    opacity: 0.6;
}

.about-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.2);
}

.about-hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: white;
}

.about-hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: white !important;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.about-hero-subtitle {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.9);
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.6;
}

/* About Introduction Section */
.about-intro-section {
    padding: 5rem 0;
    background: #f8fafc;
}

.about-intro-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 4rem;
    align-items: center;
}

.intro-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--midnight-blue);
    margin-bottom: 2rem;
}

.intro-description {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--gray-600);
    margin-bottom: 1.5rem;
}

.global-presence-card {
    background: white;
    padding: 2.5rem;
    border-radius: 1.5rem;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.presence-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #3b82f6 0%, #60a5fa 100%);
    border-radius: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: white;
}

.global-presence-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--midnight-blue);
    margin-bottom: 1rem;
}

.global-presence-card p {
    color: var(--gray-600);
    font-weight: 500;
}

/* Our Approach Section */
.about-approach-section {
    padding: 5rem 0;
    background: white;
}

.approach-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--midnight-blue);
    text-align: center;
    margin-bottom: 1rem;
}

.approach-subtitle {
    font-size: 1.2rem;
    color: var(--gray-600);
    text-align: center;
    max-width: 600px;
    margin: 0 auto 3rem;
    line-height: 1.6;
}

.approach-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.approach-card {
    background: white;
    padding: 2.5rem;
    border-radius: 1.5rem;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.approach-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
}

.approach-icon {
    width: 80px;
    height: 80px;
    border-radius: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: white;
    transition: all 0.3s ease;
}

.approach-icon.technology {
    background: linear-gradient(135deg, #10b981 0%, #34d399 100%);
}

.approach-icon.consultative {
    background: linear-gradient(135deg, #8b5cf6 0%, #a78bfa 100%);
}

.approach-icon.support {
    background: linear-gradient(135deg, #f59e0b 0%, #fbbf24 100%);
}

.approach-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--midnight-blue);
    margin-bottom: 1rem;
}

.approach-card p {
    color: var(--gray-600);
    line-height: 1.6;
}

/* Services Overview Section */
.about-services-section {
    padding: 5rem 0;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
}

.services-overview-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--midnight-blue);
    text-align: center;
    margin-bottom: 3rem;
}

.services-overview-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    max-width: 1000px;
    margin: 0 auto;
}

.service-overview-item {
    background: white;
    padding: 2rem;
    border-radius: 1.25rem;
    text-align: center;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.service-overview-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.12);
}

.service-overview-icon {
    width: 70px;
    height: 70px;
    border-radius: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: white;
}

.service-overview-icon.hardware {
    background: linear-gradient(135deg, #3b82f6 0%, #60a5fa 100%);
}

.service-overview-icon.software {
    background: linear-gradient(135deg, #10b981 0%, #34d399 100%);
}

.service-overview-icon.networking {
    background: linear-gradient(135deg, #8b5cf6 0%, #a78bfa 100%);
}

.service-overview-icon.cloud {
    background: linear-gradient(135deg, #06b6d4 0%, #67e8f9 100%);
}

.service-overview-item h3 {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--midnight-blue);
    margin-bottom: 0.75rem;
}

.service-overview-item p {
    color: var(--gray-600);
    font-size: 0.95rem;
}

/* Corporate Responsibility Section */
.about-responsibility-section {
    padding: 5rem 0;
    background: var(--midnight-blue);
    color: white;
    position: relative;
    overflow: hidden;
}

.about-responsibility-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg width="60" height="60" viewBox="0 0 60 60" xmlns="http://www.w3.org/2000/svg"><g fill="none" fill-rule="evenodd"><g fill="%23ffffff" fill-opacity="0.03"><circle cx="30" cy="30" r="1"/></g></svg>') repeat;
}

.responsibility-content {
    position: relative;
    z-index: 2;
}

.responsibility-title {
    font-size: 2.5rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 1rem;
    color: white;
}

.responsibility-subtitle {
    font-size: 1.2rem;
    text-align: center;
    max-width: 600px;
    margin: 0 auto 3rem;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
}

.responsibility-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.responsibility-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 2.5rem;
    border-radius: 1.5rem;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
}

.responsibility-card:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-5px);
}

.responsibility-icon {
    width: 80px;
    height: 80px;
    border-radius: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: white;
}

.responsibility-icon.digital {
    background: linear-gradient(135deg, #f59e0b 0%, #fbbf24 100%);
}

.responsibility-icon.environmental {
    background: linear-gradient(135deg, #10b981 0%, #34d399 100%);
}

.responsibility-icon.community {
    background: linear-gradient(135deg, #8b5cf6 0%, #a78bfa 100%);
}

.responsibility-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: white;
}

.responsibility-card p {
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
}

/* Mission Section */
.about-mission-section {
    padding: 5rem 0;
    background: white;
}

.mission-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 4rem;
    align-items: center;
}

.mission-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--midnight-blue);
    margin-bottom: 2rem;
}

.mission-description {
    font-size: 1.2rem;
    line-height: 1.7;
    color: var(--gray-600);
    margin-bottom: 2.5rem;
}

.mission-values {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.mission-value {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.mission-value-icon {
    width: 50px;
    height: 50px;
    border-radius: 0.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
}

.mission-value-icon.innovation {
    background: linear-gradient(135deg, #f59e0b 0%, #fbbf24 100%);
}

.mission-value-icon.integrity {
    background: linear-gradient(135deg, #10b981 0%, #34d399 100%);
}

.mission-value span {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--midnight-blue);
}

.mission-stats {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

.stat-item {
    text-align: center;
    padding: 2rem;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    border-radius: 1.25rem;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-main);
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 1rem;
    color: var(--gray-600);
    font-weight: 500;
}

/* About CTA Section */
.about-cta-section {
    background: linear-gradient(135deg, var(--primary-main) 0%, var(--primary-dark) 100%);
    padding: 4rem 0;
    text-align: center;
}

.about-cta-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: white;
    margin-bottom: 1rem;
}

.about-cta-subtitle {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2rem;
    line-height: 1.6;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.about-cta-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
}

/* About Page Responsive */
@media (max-width: 1024px) {
    .about-intro-content,
    .mission-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .about-hero-title {
        font-size: 3rem;
        color: white !important;
    }
    
    .approach-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .about-hero {
        padding: 6rem 0 3rem;
    }
    
    .about-hero-title {
        font-size: 2.5rem;
        color: white !important;
    }
    
    .about-intro-section,
    .about-approach-section,
    .about-services-section,
    .about-responsibility-section,
    .about-mission-section {
        padding: 3rem 0;
    }
    
    .intro-title,
    .approach-title,
    .services-overview-title,
    .responsibility-title,
    .mission-title {
        font-size: 2rem;
    }
    
    .about-cta-actions {
        flex-direction: column;
        align-items: center;
    }
    
    .cta-btn {
        width: 200px;
        justify-content: center;
    }
    
    .mission-values {
        gap: 1rem;
    }
    
    .mission-stats {
        grid-template-columns: repeat(3, 1fr);
        gap: 1rem;
    }
    
    .stat-item {
        padding: 1.5rem 1rem;
    }
    
    .stat-number {
        font-size: 2rem;
    }
}

@media (max-width: 480px) {
    .about-hero-title {
        font-size: 2rem;
        color: white !important;
    }
    
    .approach-card,
    .responsibility-card,
    .global-presence-card {
        padding: 2rem 1.5rem;
    }
    
    .about-cta-title {
        font-size: 2rem;
    }
    
    .mission-stats {
        grid-template-columns: 1fr;
    }
}

/* Blog Grid Page Styles */
.blog-grid-hero {
    background: linear-gradient(135deg, var(--midnight-blue) 0%, #1e293b 50%, #0f172a 100%);
    position: relative;
    padding: 6rem 0 3rem;
    overflow: hidden;
}

.blog-grid-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg width="60" height="60" viewBox="0 0 60 60" xmlns="http://www.w3.org/2000/svg"><g fill="none" fill-rule="evenodd"><g fill="%23ffffff" fill-opacity="0.05"><circle cx="30" cy="30" r="1"/></g></svg>') repeat;
    opacity: 0.6;
}

.blog-grid-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.2);
}

.blog-grid-hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: white;
}

.blog-grid-hero-title {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: white !important;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.blog-grid-hero-subtitle {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.9);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

/* Blog Grid Content Section */
.blog-grid-content-section {
    padding: 4rem 0;
    background: #f8fafc;
}

.blog-grid-layout {
    display: grid;
    grid-template-columns: 300px 1fr;
    gap: 3rem;
    max-width: 1400px;
    margin: 0 auto;
}

/* Blog Sidebar */
.blog-grid-sidebar {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.blog-widget {
    background: white;
    border-radius: 1rem;
    padding: 1.5rem;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.widget-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--midnight-blue);
    margin-bottom: 1rem;
    padding-bottom: 0.75rem;
    border-bottom: 2px solid #e2e8f0;
}

.widget-content {
    color: var(--gray-600);
}

/* Search Form */
.blog-search-form {
    position: relative;
}

.search-input-group {
    position: relative;
    display: flex;
}

.search-field {
    width: 100%;
    padding: 0.75rem 3rem 0.75rem 1rem;
    border: 2px solid #e5e7eb;
    border-radius: 0.75rem;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    background: #f9fafb;
}

.search-field:focus {
    outline: none;
    border-color: var(--primary-main);
    background: white;
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
}

.search-submit {
    position: absolute;
    right: 0.5rem;
    top: 50%;
    transform: translateY(-50%);
    background: var(--primary-main);
    color: white;
    border: none;
    padding: 0.5rem;
    border-radius: 0.5rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.search-submit:hover {
    background: var(--primary-dark);
    transform: translateY(-50%) scale(1.05);
}

/* Category Filters */
.category-filters {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.category-filter {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 1rem;
    background: #f9fafb;
    border: 1px solid #e5e7eb;
    border-radius: 0.75rem;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--gray-700);
    text-align: left;
    width: 100%;
}

.category-filter:hover {
    background: #f3f4f6;
    border-color: var(--primary-main);
    transform: translateX(3px);
}

.category-filter.active {
    background: linear-gradient(135deg, var(--primary-main) 0%, var(--primary-light) 100%);
    color: white;
    border-color: var(--primary-main);
    box-shadow: 0 4px 12px rgba(37, 99, 235, 0.3);
}

.category-filter svg {
    flex-shrink: 0;
}

.post-count {
    margin-left: auto;
    background: rgba(255, 255, 255, 0.2);
    color: inherit;
    padding: 0.25rem 0.5rem;
    border-radius: 0.5rem;
    font-size: 0.8rem;
    font-weight: 600;
}

.category-filter.active .post-count {
    background: rgba(255, 255, 255, 0.3);
}

/* Recent Posts */
.recent-posts {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.recent-post-item {
    padding: 1rem;
    background: #f9fafb;
    border-radius: 0.75rem;
    border: 1px solid #e5e7eb;
    transition: all 0.3s ease;
}

.recent-post-item:hover {
    background: white;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    transform: translateY(-2px);
}

.recent-post-title {
    font-size: 0.95rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.recent-post-title a {
    color: var(--midnight-blue);
    text-decoration: none;
    transition: color 0.3s ease;
}

.recent-post-title a:hover {
    color: var(--primary-main);
}

.recent-post-meta {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.8rem;
    color: var(--gray-500);
}

/* Tag Cloud */
.tag-cloud {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.tag-item {
    display: inline-block;
    padding: 0.4rem 0.75rem;
    background: #f3f4f6;
    color: var(--gray-700);
    text-decoration: none;
    border-radius: 0.5rem;
    font-size: 0.85rem;
    font-weight: 500;
    transition: all 0.3s ease;
    border: 1px solid #e5e7eb;
}

.tag-item:hover {
    background: var(--primary-main);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(37, 99, 235, 0.3);
}

/* Main Content Area */
.blog-grid-main {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

/* Filter Status */
.filter-status {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 1.5rem;
    background: white;
    border-radius: 1rem;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.filter-info {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.95rem;
    color: var(--gray-600);
}

.post-count-display {
    font-weight: 700;
    color: var(--primary-main);
    font-size: 1.1rem;
}

.view-toggle {
    display: flex;
    gap: 0.5rem;
}

.view-btn {
    padding: 0.5rem;
    background: #f9fafb;
    border: 1px solid #e5e7eb;
    border-radius: 0.5rem;
    cursor: pointer;
    transition: all 0.3s ease;
    color: var(--gray-600);
}

.view-btn:hover {
    background: #f3f4f6;
    color: var(--gray-800);
}

.view-btn.active {
    background: var(--primary-main);
    color: white;
    border-color: var(--primary-main);
}

/* Posts Grid */
.posts-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
}

.posts-grid.list-view {
    grid-template-columns: 1fr;
}

.post-grid-item {
    background: white;
    border-radius: 1rem;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
}

.post-grid-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}

.posts-grid.list-view .post-grid-item {
    flex-direction: row;
    align-items: center;
}

.post-grid-image {
    position: relative;
    overflow: hidden;
    aspect-ratio: 16/10;
}

.posts-grid.list-view .post-grid-image {
    flex: 0 0 300px;
    aspect-ratio: 16/10;
}

.grid-post-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.post-grid-item:hover .grid-post-img {
    transform: scale(1.05);
}

.post-grid-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: all 0.3s ease;
}

.post-grid-item:hover .post-grid-overlay {
    opacity: 1;
}

.read-more-overlay {
    color: white;
    padding: 0.75rem;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.read-more-overlay:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: scale(1.1);
}

.post-grid-content {
    padding: 1.5rem;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.post-grid-meta {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
    flex-wrap: wrap;
}

.post-grid-category {
    background: linear-gradient(135deg, var(--primary-main) 0%, var(--primary-light) 100%);
    color: white;
    padding: 0.25rem 0.75rem;
    border-radius: 0.5rem;
    font-size: 0.8rem;
    font-weight: 600;
}

.post-grid-date {
    color: var(--gray-500);
    font-size: 0.85rem;
    font-weight: 500;
}

.post-grid-title {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 1rem;
    line-height: 1.4;
}

.post-grid-title a {
    color: var(--midnight-blue);
    text-decoration: none;
    transition: color 0.3s ease;
}

.post-grid-title a:hover {
    color: var(--primary-main);
}

.post-grid-excerpt {
    color: var(--gray-600);
    line-height: 1.6;
    margin-bottom: 1.5rem;
    flex: 1;
}

.post-grid-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 1rem;
    border-top: 1px solid #e5e7eb;
    font-size: 0.85rem;
    color: var(--gray-500);
}

.post-grid-author,
.post-grid-reading-time {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

/* No Posts Found */
.no-posts-found {
    grid-column: 1 / -1;
    text-align: center;
    padding: 4rem 2rem;
}

.no-posts-content {
    max-width: 400px;
    margin: 0 auto;
}

.no-posts-content svg {
    color: var(--gray-400);
    margin-bottom: 1.5rem;
}

.no-posts-content h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--midnight-blue);
    margin-bottom: 1rem;
}

.no-posts-content p {
    color: var(--gray-600);
    line-height: 1.6;
}

/* Load More Button */
.load-more-container {
    text-align: center;
    margin-top: 2rem;
}

.load-more-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 2rem;
    background: linear-gradient(135deg, var(--primary-main) 0%, var(--primary-light) 100%);
    color: white;
    border: none;
    border-radius: 0.75rem;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(37, 99, 235, 0.3);
}

.load-more-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(37, 99, 235, 0.4);
}

.load-more-btn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    transform: none;
}

/* Blog Grid Responsive */
@media (max-width: 1024px) {
    .blog-grid-layout {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .blog-grid-sidebar {
        order: 2;
        flex-direction: row;
        overflow-x: auto;
        gap: 1rem;
        padding-bottom: 1rem;
    }
    
    .blog-widget {
        flex: 0 0 280px;
    }
    
    .blog-grid-main {
        order: 1;
    }
    
    .blog-grid-hero-title {
        font-size: 2.5rem;
    }
}

@media (max-width: 768px) {
    .blog-grid-hero {
        padding: 4rem 0 2rem;
    }
    
    .blog-grid-hero-title {
        font-size: 2rem;
        color: white !important;
    }
    
    .blog-grid-content-section {
        padding: 2rem 0;
    }
    
    .posts-grid {
        grid-template-columns: 1fr;
    }
    
    .filter-status {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
    
    .blog-grid-sidebar {
        flex-direction: column;
    }
    
    .blog-widget {
        flex: none;
    }
    
    .posts-grid.list-view .post-grid-item {
        flex-direction: column;
    }
    
    .posts-grid.list-view .post-grid-image {
        flex: none;
        width: 100%;
    }
}

@media (max-width: 480px) {
    .blog-grid-hero-title {
        font-size: 1.75rem;
        color: white !important;
    }
    
    .blog-widget {
        padding: 1rem;
    }
    
    .post-grid-content {
        padding: 1rem;
    }
    
    .post-grid-footer {
        flex-direction: column;
        gap: 0.5rem;
        align-items: flex-start;
    }
}

/* Service Pages Styles */
.service-hero {
    background: linear-gradient(135deg, var(--midnight-blue) 0%, #1e293b 50%, #0f172a 100%);
    position: relative;
    padding: 8rem 0 4rem;
    overflow: hidden;
}

.service-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg width="60" height="60" viewBox="0 0 60 60" xmlns="http://www.w3.org/2000/svg"><g fill="none" fill-rule="evenodd"><g fill="%23ffffff" fill-opacity="0.08"><circle cx="30" cy="30" r="1"/></g></svg>') repeat;
    opacity: 0.6;
}

.service-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.3);
}

.service-hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: white;
    max-width: 900px;
    margin: 0 auto;
}

.service-breadcrumb {
    font-size: 0.95rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.service-breadcrumb a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: color 0.3s ease;
}

.service-breadcrumb a:hover {
    color: white;
}

.breadcrumb-separator {
    margin: 0 0.75rem;
    opacity: 0.6;
}

.current-service {
    color: var(--primary-light);
    font-weight: 600;
}

.service-hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: white !important;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.service-hero-subtitle {
    font-size: 1.3rem;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
    margin-bottom: 3rem;
}

.service-hero-stats {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-top: 3rem;
}

.service-hero-stats .stat-item {
    background: linear-gradient(135deg, var(--midnight-blue) 0%, #1e293b 100%);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 1rem;
    padding: 1.5rem;
    text-align: center;
    min-width: 120px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    transition: all 0.3s ease;
}

.service-hero-stats .stat-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.25);
    border-color: rgba(255, 255, 255, 0.2);
}

.service-hero-stats .stat-number {
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--primary-light);
    margin-bottom: 0.5rem;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.service-hero-stats .stat-label {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 500;
}

/* Service Overview Section */
.service-overview-section {
    padding: 6rem 0;
    background: #f8fafc;
}

.service-overview-content {
    display: grid;
    grid-template-columns: 1fr 400px;
    gap: 4rem;
    align-items: center;
}

.overview-text .section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--midnight-blue);
    margin-bottom: 1.5rem;
}

.overview-text .section-description {
    font-size: 1.1rem;
    color: var(--gray-600);
    line-height: 1.7;
    margin-bottom: 3rem;
}

.overview-highlights {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.highlight-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    background: linear-gradient(135deg, var(--midnight-blue) 0%, #1e293b 100%);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 1rem;
    padding: 1.5rem;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    transition: all 0.3s ease;
}

.highlight-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.25);
    border-color: rgba(255, 255, 255, 0.2);
}

.highlight-icon {
    flex-shrink: 0;
    width: 50px;
    height: 50px;
    border-radius: 0.8rem;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.highlight-icon.tech-icon,
.highlight-icon.expert-icon,
.highlight-icon.strategy-icon {
    background: linear-gradient(135deg, #3b82f6 0%, #1d4ed8 100%);
}

.highlight-icon.network-icon,
.highlight-icon.response-icon,
.highlight-icon.transformation-icon {
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
}

.highlight-icon.support-icon,
.highlight-icon.proactive-icon,
.highlight-icon.optimization-icon {
    background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
}

.highlight-icon.logistics-icon,
.highlight-icon.training-icon {
    background: linear-gradient(135deg, #8b5cf6 0%, #7c3aed 100%);
}

.highlight-icon.tracking-icon,
.highlight-icon.marketing-icon {
    background: linear-gradient(135deg, #ef4444 0%, #dc2626 100%);
}

.highlight-icon.growth-icon {
    background: linear-gradient(135deg, #06b6d4 0%, #0891b2 100%);
}

.highlight-content h3 {
    font-size: 1.2rem;
    font-weight: 700;
    color: white;
    margin-bottom: 0.5rem;
}

.highlight-content p {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.5;
    font-size: 0.95rem;
}

.overview-image {
    display: flex;
    justify-content: center;
    align-items: center;
}

.image-card {
    width: 100%;
    max-width: 350px;
    aspect-ratio: 1;
    border-radius: 2rem;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.image-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    position: relative;
    overflow: hidden;
}

.image-placeholder::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg width="40" height="40" viewBox="0 0 40 40" xmlns="http://www.w3.org/2000/svg"><g fill="none" fill-rule="evenodd"><g fill="%23ffffff" fill-opacity="0.1"><circle cx="20" cy="20" r="1"/></g></svg>') repeat;
}

.image-placeholder svg {
    position: relative;
    z-index: 2;
}

.it-distribution-bg {
    background: linear-gradient(135deg, #3b82f6 0%, #1d4ed8 100%);
}

.supply-chain-bg {
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
}

.partner-enablement-bg {
    background: linear-gradient(135deg, #8b5cf6 0%, #7c3aed 100%);
}

.technical-support-bg {
    background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
}

.consultancy-it-bg {
    background: linear-gradient(135deg, #ef4444 0%, #dc2626 100%);
}

/* Service Sections */
.product-categories-section,
.supply-chain-services-section,
.partner-programs-section,
.support-services-section,
.consulting-services-section {
    padding: 6rem 0;
    background: white;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--midnight-blue);
    margin-bottom: 1rem;
}

.section-subtitle {
    font-size: 1.2rem;
    color: var(--gray-600);
    line-height: 1.6;
    margin-bottom: 4rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.categories-grid,
.services-grid,
.programs-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
}

.category-card,
.service-card,
.program-card,
.support-service-card,
.consulting-service-card {
    background: linear-gradient(135deg, var(--midnight-blue) 0%, #1e293b 100%);
    border-radius: 1rem;
    padding: 1.5rem;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    color: white;
}

.category-card:hover,
.service-card:hover,
.program-card:hover,
.support-service-card:hover,
.consulting-service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.25);
    border-color: rgba(255, 255, 255, 0.2);
}

.category-icon,
.service-icon,
.program-icon {
    width: 60px;
    height: 60px;
    border-radius: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
    color: white;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.hardware-category {
    background: linear-gradient(135deg, #1e40af 0%, #1e3a8a 100%);
}

.hardware-category .category-icon {
    background: linear-gradient(135deg, #3b82f6 0%, #1d4ed8 100%);
}

.networking-category {
    background: linear-gradient(135deg, #047857 0%, #065f46 100%);
}

.networking-category .category-icon {
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
}

.software-category {
    background: linear-gradient(135deg, #7c2d12 0%, #7c2d12 100%);
}

.software-category .category-icon {
    background: linear-gradient(135deg, #8b5cf6 0%, #7c3aed 100%);
}

.cloud-category {
    background: linear-gradient(135deg, #0c4a6e 0%, #075985 100%);
}

.cloud-category .category-icon {
    background: linear-gradient(135deg, #06b6d4 0%, #0891b2 100%);
}

.procurement-card {
    background: linear-gradient(135deg, #1e40af 0%, #1e3a8a 100%);
}

.procurement-card .service-icon {
    background: linear-gradient(135deg, #3b82f6 0%, #1d4ed8 100%);
}

.warehousing-card {
    background: linear-gradient(135deg, #047857 0%, #065f46 100%);
}

.warehousing-card .service-icon {
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
}

.logistics-card {
    background: linear-gradient(135deg, #c2410c 0%, #9a3412 100%);
}

.logistics-card .service-icon {
    background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
}

.analytics-card {
    background: linear-gradient(135deg, #6b21a8 0%, #581c87 100%);
}

.analytics-card .service-icon {
    background: linear-gradient(135deg, #8b5cf6 0%, #7c3aed 100%);
}

.training-program {
    background: linear-gradient(135deg, #1e40af 0%, #1e3a8a 100%);
}

.training-program .program-icon {
    background: linear-gradient(135deg, #3b82f6 0%, #1d4ed8 100%);
}

.marketing-program {
    background: linear-gradient(135deg, #047857 0%, #065f46 100%);
}

.marketing-program .program-icon {
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
}

.technical-program {
    background: linear-gradient(135deg, #c2410c 0%, #9a3412 100%);
}

.technical-program .program-icon {
    background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
}

.incentive-program {
    background: linear-gradient(135deg, #6b21a8 0%, #581c87 100%);
}

.incentive-program .program-icon {
    background: linear-gradient(135deg, #8b5cf6 0%, #7c3aed 100%);
}

.presales-card {
    background: linear-gradient(135deg, #1e40af 0%, #1e3a8a 100%);
}

.presales-card .service-icon {
    background: linear-gradient(135deg, #3b82f6 0%, #1d4ed8 100%);
}

.implementation-card {
    background: linear-gradient(135deg, #047857 0%, #065f46 100%);
}

.implementation-card .service-icon {
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
}

.maintenance-card {
    background: linear-gradient(135deg, #c2410c 0%, #9a3412 100%);
}

.maintenance-card .service-icon {
    background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
}

.troubleshooting-card {
    background: linear-gradient(135deg, #b91c1c 0%, #991b1b 100%);
}

.troubleshooting-card .service-icon {
    background: linear-gradient(135deg, #ef4444 0%, #dc2626 100%);
}

.strategy-card {
    background: linear-gradient(135deg, #1e40af 0%, #1e3a8a 100%);
}

.strategy-card .service-icon {
    background: linear-gradient(135deg, #3b82f6 0%, #1d4ed8 100%);
}

.architecture-card {
    background: linear-gradient(135deg, #047857 0%, #065f46 100%);
}

.architecture-card .service-icon {
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
}

.transformation-card {
    background: linear-gradient(135deg, #c2410c 0%, #9a3412 100%);
}

.transformation-card .service-icon {
    background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
}

.security-card {
    background: linear-gradient(135deg, #b91c1c 0%, #991b1b 100%);
}

.security-card .service-icon {
    background: linear-gradient(135deg, #ef4444 0%, #dc2626 100%);
}

.cloud-card {
    background: linear-gradient(135deg, #0c4a6e 0%, #075985 100%);
}

.cloud-card .service-icon {
    background: linear-gradient(135deg, #06b6d4 0%, #0891b2 100%);
}

.data-card {
    background: linear-gradient(135deg, #6b21a8 0%, #581c87 100%);
}

.data-card .service-icon {
    background: linear-gradient(135deg, #8b5cf6 0%, #7c3aed 100%);
}

.category-title,
.service-title,
.program-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: white;
    margin-bottom: 0.75rem;
}

.category-list,
.service-features,
.program-features {
    list-style: none;
    padding: 0;
    margin: 1rem 0;
}

.category-list li,
.service-features li,
.program-features li {
    padding: 0.4rem 0;
    color: rgba(255, 255, 255, 0.9);
    position: relative;
    padding-left: 1.5rem;
    font-size: 0.9rem;
}

.category-list li::before,
.service-features li::before,
.program-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--primary-light);
    font-weight: 700;
}

.service-description,
.program-description {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.5;
    margin-bottom: 1rem;
    font-size: 0.95rem;
}

.category-footer,
.program-badge {
    margin-top: auto;
}

.product-count {
    background: linear-gradient(135deg, var(--primary-light) 0%, #60a5fa 100%);
    color: white;
    padding: 0.4rem 0.8rem;
    border-radius: 0.4rem;
    font-size: 0.8rem;
    font-weight: 600;
    display: inline-block;
    box-shadow: 0 2px 8px rgba(96, 165, 250, 0.3);
}

.program-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
}

.badge-text {
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    color: white;
    padding: 0.25rem 0.75rem;
    border-radius: 0.5rem;
    font-size: 0.8rem;
    font-weight: 600;
}

/* Partner Brands Section */
.partner-brands-section {
    padding: 6rem 0;
    background: #f8fafc;
}

.brands-showcase {
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.brand-category {
    text-align: center;
}

.brand-category-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--midnight-blue);
    margin-bottom: 2rem;
}

.brand-logos {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.brand-logo {
    background: white;
    padding: 1.5rem 2rem;
    border-radius: 1rem;
    font-weight: 700;
    color: var(--midnight-blue);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.brand-logo:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

/* Process Section */
.process-section {
    padding: 6rem 0;
    background: white;
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.process-step {
    text-align: center;
    position: relative;
}

.step-number {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary-main) 0%, var(--primary-light) 100%);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0 auto 2rem;
    box-shadow: 0 8px 20px rgba(37, 99, 235, 0.3);
}

.step-content {
    max-width: 300px;
    margin: 0 auto;
}

.step-icon {
    width: 60px;
    height: 60px;
    border-radius: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: white;
}

.consultation-icon {
    background: linear-gradient(135deg, #3b82f6 0%, #1d4ed8 100%);
}

.selection-icon {
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
}

.procurement-icon {
    background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
}

.delivery-icon {
    background: linear-gradient(135deg, #8b5cf6 0%, #7c3aed 100%);
}

.step-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--midnight-blue);
    margin-bottom: 1rem;
}

.step-description {
    color: var(--gray-600);
    line-height: 1.6;
}

/* Global Network Section */
.global-network-section {
    padding: 6rem 0;
    background: #f8fafc;
}

.network-locations {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.location-card {
    background: white;
    border-radius: 1.5rem;
    padding: 2rem;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.location-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
}

.location-flag {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.location-name {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--midnight-blue);
    margin-bottom: 0.5rem;
}

.location-role {
    color: var(--primary-main);
    font-weight: 600;
    margin-bottom: 2rem;
}

.location-details {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.detail-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.detail-label {
    color: var(--gray-600);
    font-weight: 500;
}

.detail-value {
    color: var(--midnight-blue);
    font-weight: 600;
}

/* Technology Integration Section */
.technology-integration-section {
    padding: 6rem 0;
    background: white;
}

.tech-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem;
}

.tech-feature {
    text-align: center;
}

.tech-feature .tech-icon {
    width: 100px;
    height: 100px;
    border-radius: 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 2rem;
    color: white;
}

.ai-icon {
    background: linear-gradient(135deg, #3b82f6 0%, #1d4ed8 100%);
}

.iot-icon {
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
}

.blockchain-icon {
    background: linear-gradient(135deg, #8b5cf6 0%, #7c3aed 100%);
}

.tech-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--midnight-blue);
    margin-bottom: 1rem;
}

.tech-description {
    color: var(--gray-600);
    line-height: 1.6;
    max-width: 400px;
    margin: 0 auto;
}

/* Partner Tiers Section */
.partner-tiers-section {
    padding: 6rem 0;
    background: #f8fafc;
}

.tiers-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.tier-card {
    background: white;
    border-radius: 1.5rem;
    padding: 2rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.tier-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
}

.featured-tier {
    border: 2px solid var(--primary-main);
    transform: scale(1.05);
}

.tier-header {
    text-align: center;
    margin-bottom: 2rem;
    position: relative;
}

.tier-icon {
    width: 60px;
    height: 60px;
    border-radius: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    color: white;
}

.bronze-icon {
    background: linear-gradient(135deg, #cd7f32 0%, #b8860b 100%);
}

.silver-icon {
    background: linear-gradient(135deg, #c0c0c0 0%, #a8a8a8 100%);
}

.gold-icon {
    background: linear-gradient(135deg, #ffd700 0%, #ffb347 100%);
}

.platinum-icon {
    background: linear-gradient(135deg, #e5e4e2 0%, #d3d3d3 100%);
}

.tier-name {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--midnight-blue);
    margin-bottom: 0.5rem;
}

.tier-subtitle {
    color: var(--gray-600);
    font-weight: 500;
}

.featured-badge {
    position: absolute;
    top: -10px;
    right: 1rem;
    background: linear-gradient(135deg, var(--primary-main) 0%, var(--primary-light) 100%);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 0.5rem;
    font-size: 0.8rem;
    font-weight: 600;
}

.tier-benefits {
    margin-bottom: 2rem;
}

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

.benefits-list li {
    padding: 0.5rem 0;
    color: var(--gray-600);
    position: relative;
    padding-left: 1.5rem;
}

.benefits-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--primary-main);
    font-weight: 700;
}

.tier-requirements {
    border-top: 1px solid #e5e7eb;
    padding-top: 1.5rem;
}

.tier-requirements h4 {
    font-size: 1rem;
    font-weight: 700;
    color: var(--midnight-blue);
    margin-bottom: 0.5rem;
}

.tier-requirements p {
    color: var(--primary-main);
    font-weight: 600;
}

/* Support Levels Section */
.support-levels-section {
    padding: 6rem 0;
    background: #f8fafc;
}

.support-levels {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.level-card {
    background: white;
    border-radius: 1.5rem;
    padding: 2rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    position: relative;
}

.level-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
}

.level-header {
    text-align: center;
    margin-bottom: 2rem;
    position: relative;
}

.level-icon {
    width: 60px;
    height: 60px;
    border-radius: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    color: white;
}

.basic-icon {
    background: linear-gradient(135deg, #6b7280 0%, #4b5563 100%);
}

.premium-icon {
    background: linear-gradient(135deg, #3b82f6 0%, #1d4ed8 100%);
}

.enterprise-icon {
    background: linear-gradient(135deg, #8b5cf6 0%, #7c3aed 100%);
}

.level-name {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--midnight-blue);
    margin-bottom: 0.5rem;
}

.level-subtitle {
    color: var(--gray-600);
    font-weight: 500;
}

.level-features {
    margin-bottom: 2rem;
}

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

.features-list li {
    padding: 0.5rem 0;
    color: var(--gray-600);
    position: relative;
    padding-left: 1.5rem;
}

.features-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--primary-main);
    font-weight: 700;
}

.level-sla {
    border-top: 1px solid #e5e7eb;
    padding-top: 1.5rem;
}

.level-sla h4 {
    font-size: 1rem;
    font-weight: 700;
    color: var(--midnight-blue);
    margin-bottom: 0.5rem;
}

.level-sla p {
    color: var(--primary-main);
    font-weight: 600;
}

/* Support Channels Section */
.support-channels-section {
    padding: 6rem 0;
    background: white;
}

.channels-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.channel-card {
    background: white;
    border-radius: 1.5rem;
    padding: 2rem;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.channel-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
}

.channel-icon {
    width: 80px;
    height: 80px;
    border-radius: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: white;
}

.phone-channel .channel-icon {
    background: linear-gradient(135deg, #3b82f6 0%, #1d4ed8 100%);
}

.email-channel .channel-icon {
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
}

.chat-channel .channel-icon {
    background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
}

.portal-channel .channel-icon {
    background: linear-gradient(135deg, #8b5cf6 0%, #7c3aed 100%);
}

.channel-name {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--midnight-blue);
    margin-bottom: 1rem;
}

.channel-description {
    color: var(--gray-600);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.channel-details p {
    margin: 0.5rem 0;
}

.channel-details strong {
    color: var(--midnight-blue);
}

/* Success Stories Section */
.success-stories-section {
    padding: 6rem 0;
    background: #f8fafc;
}

.success-stories {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.story-card {
    background: white;
    border-radius: 1.5rem;
    padding: 2.5rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.story-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
}

.story-quote {
    margin-bottom: 2rem;
}

.story-quote svg {
    color: var(--primary-main);
    opacity: 0.3;
}

.story-text {
    font-size: 1.1rem;
    color: var(--gray-700);
    line-height: 1.7;
    margin-bottom: 2rem;
    font-style: italic;
}

.story-author {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
}

.author-name {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--midnight-blue);
    margin-bottom: 0.25rem;
}

.author-title {
    color: var(--gray-600);
    font-size: 0.95rem;
}

.story-metrics {
    text-align: right;
}

.metric {
    background: linear-gradient(135deg, var(--primary-main) 0%, var(--primary-light) 100%);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 0.5rem;
    font-size: 0.9rem;
    font-weight: 600;
}

/* Knowledge Base Section */
.knowledge-base-section {
    padding: 6rem 0;
    background: #f8fafc;
}

.knowledge-resources {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem;
}

.resource-item {
    text-align: center;
}

.resource-icon {
    width: 100px;
    height: 100px;
    border-radius: 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 2rem;
    color: white;
}

.documentation-icon {
    background: linear-gradient(135deg, #3b82f6 0%, #1d4ed8 100%);
}

.video-icon {
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
}

.faq-icon {
    background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
}

.resource-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--midnight-blue);
    margin-bottom: 1rem;
}

.resource-description {
    color: var(--gray-600);
    line-height: 1.6;
    max-width: 400px;
    margin: 0 auto;
}

/* Consulting Process Section */
.consulting-process-section {
    padding: 6rem 0;
    background: white;
}

.process-timeline {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
}

.process-timeline::before {
    content: '';
    position: absolute;
    left: 30px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: linear-gradient(to bottom, var(--primary-main), var(--primary-light));
}

.timeline-item {
    position: relative;
    margin-bottom: 4rem;
    padding-left: 5rem;
}

.timeline-marker {
    position: absolute;
    left: 0;
    top: 0;
}

.marker-number {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary-main) 0%, var(--primary-light) 100%);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    box-shadow: 0 8px 20px rgba(37, 99, 235, 0.3);
}

.timeline-content {
    background: white;
    border-radius: 1.5rem;
    padding: 2rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.timeline-icon {
    width: 60px;
    height: 60px;
    border-radius: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    color: white;
}

.discovery-icon {
    background: linear-gradient(135deg, #3b82f6 0%, #1d4ed8 100%);
}

.implementation-icon {
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
}

.timeline-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--midnight-blue);
    margin-bottom: 1rem;
}

.timeline-description {
    color: var(--gray-600);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.timeline-deliverables {
    list-style: none;
    padding: 0;
    margin: 0;
}

.timeline-deliverables li {
    padding: 0.25rem 0;
    color: var(--gray-600);
    position: relative;
    padding-left: 1.5rem;
}

.timeline-deliverables li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--primary-main);
    font-weight: 700;
}

/* Industry Expertise Section */
.industry-expertise-section {
    padding: 6rem 0;
    background: #f8fafc;
}

.industries-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.industry-card {
    background: white;
    border-radius: 1.5rem;
    padding: 2rem;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.industry-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
}

.industry-icon {
    width: 80px;
    height: 80px;
    border-radius: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: white;
}

.finance-industry .industry-icon {
    background: linear-gradient(135deg, #3b82f6 0%, #1d4ed8 100%);
}

.healthcare-industry .industry-icon {
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
}

.manufacturing-industry .industry-icon {
    background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
}

.retail-industry .industry-icon {
    background: linear-gradient(135deg, #8b5cf6 0%, #7c3aed 100%);
}

.industry-name {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--midnight-blue);
    margin-bottom: 1rem;
}

.industry-description {
    color: var(--gray-600);
    line-height: 1.6;
}

/* Service CTA Section */
.service-cta-section {
    padding: 6rem 0;
    background: linear-gradient(135deg, var(--midnight-blue) 0%, #1e293b 50%, #0f172a 100%);
    position: relative;
    overflow: hidden;
}

.service-cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg width="60" height="60" viewBox="0 0 60 60" xmlns="http://www.w3.org/2000/svg"><g fill="none" fill-rule="evenodd"><g fill="%23ffffff" fill-opacity="0.05"><circle cx="30" cy="30" r="1"/></g></svg>') repeat;
    opacity: 0.6;
}

.cta-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: white;
    max-width: 800px;
    margin: 0 auto;
}

.cta-title {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: white !important;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.cta-subtitle {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
    margin-bottom: 3rem;
}

.cta-actions {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 2rem;
    border-radius: 0.75rem;
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.cta-btn.primary {
    background: linear-gradient(135deg, var(--primary-main) 0%, var(--primary-light) 100%);
    color: white;
    box-shadow: 0 4px 12px rgba(37, 99, 235, 0.3);
}

.cta-btn.primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(37, 99, 235, 0.4);
}

.cta-btn.secondary {
    background: rgba(255, 255, 255, 0.1);
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(10px);
}

.cta-btn.secondary:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.5);
    transform: translateY(-2px);
}

/* Updated Button Styles - Darker Background with White Text */
.btn-primary,
.btn-secondary,
.button,
input[type="submit"],
button[type="submit"],
.wp-block-button__link,
.slide-buttons .btn-primary,
.slide-buttons .btn-secondary,
.contact-btn,
.load-more-btn,
.search-submit {
    background: var(--midnight-blue) !important;
    color: white !important;
    border: 2px solid var(--midnight-blue) !important;
    padding: 0.75rem 1.5rem !important;
    border-radius: 0.5rem !important;
    font-weight: 600 !important;
    text-decoration: none !important;
    display: inline-flex !important;
    align-items: center !important;
    gap: 0.5rem !important;
    transition: all 0.3s ease !important;
    cursor: pointer !important;
}

.btn-primary:hover,
.btn-secondary:hover,
.button:hover,
input[type="submit"]:hover,
button[type="submit"]:hover,
.wp-block-button__link:hover,
.slide-buttons .btn-primary:hover,
.slide-buttons .btn-secondary:hover,
.contact-btn:hover,
.load-more-btn:hover,
.search-submit:hover {
    background: #0f172a !important;
    border-color: #0f172a !important;
    transform: translateY(-2px) !important;
    box-shadow: 0 4px 12px rgba(15, 23, 42, 0.3) !important;
}

/* Service Pages Responsive */
@media (max-width: 1024px) {
    .service-hero {
        padding: 6rem 0 3rem;
    }
    
    .service-hero-title {
        font-size: 3rem;
    }
    
    .service-hero-stats {
        gap: 1.5rem;
    }
    
    .service-hero-stats .stat-item {
        padding: 1.25rem;
        min-width: 100px;
    }
    
    .service-hero-stats .stat-number {
        font-size: 2rem;
    }
    
    .service-overview-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .overview-image {
        order: -1;
    }
    
    .categories-grid,
    .services-grid,
    .programs-grid {
        grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
        gap: 1.25rem;
    }
    
    .tiers-container {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    }
    
    .featured-tier {
        transform: none;
    }
    
    .process-timeline::before {
        display: none;
    }
    
    .timeline-item {
        padding-left: 0;
        text-align: center;
    }
    
    .timeline-marker {
        position: relative;
        margin-bottom: 2rem;
    }
}

@media (max-width: 768px) {
    .service-hero {
        padding: 4rem 0 2rem;
    }
    
    .service-hero-title {
        font-size: 2.5rem;
        color: white !important;
    }
    
    .service-hero-subtitle {
        font-size: 1.1rem;
    }
    
    .service-hero-stats {
        flex-direction: column;
        gap: 1.25rem;
        align-items: center;
    }
    
    .service-hero-stats .stat-item {
        padding: 1rem;
        min-width: 90px;
        max-width: 150px;
    }
    
    .stat-number {
        font-size: 2rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .categories-grid,
    .services-grid,
    .programs-grid {
        grid-template-columns: 1fr;
    }
    
    .brands-showcase {
        gap: 2rem;
    }
    
    .brand-logos {
        gap: 1rem;
    }
    
    .process-steps {
        grid-template-columns: 1fr;
    }
    
    .network-locations {
        grid-template-columns: 1fr;
    }
    
    .tech-features {
        grid-template-columns: 1fr;
    }
    
    .tiers-container {
        grid-template-columns: 1fr;
    }
    
    .support-levels {
        grid-template-columns: 1fr;
    }
    
    .channels-grid {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    }
    
    .success-stories {
        grid-template-columns: 1fr;
    }
    
    .knowledge-resources {
        grid-template-columns: 1fr;
    }
    
    .industries-grid {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    }
    
    .cta-title {
        font-size: 2.5rem;
    }
    
    .cta-actions {
        flex-direction: column;
        align-items: center;
    }
    
    .cta-btn {
        width: 100%;
        max-width: 300px;
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .service-hero-title {
        font-size: 2rem;
        color: white !important;
    }
    
    .service-hero-subtitle {
        font-size: 1rem;
    }
    
    .section-title {
        font-size: 1.75rem;
    }
    
    .category-card,
    .service-card,
    .program-card,
    .support-service-card,
    .consulting-service-card {
        padding: 1.25rem;
    }
    
    .overview-highlights .highlight-item {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
        padding: 1.25rem;
    }
    
    .overview-highlights .highlight-icon {
        width: 45px;
        height: 45px;
        align-self: center;
    }
    
    .cta-title {
        font-size: 2rem;
    }
    
    .story-author {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
}

/* Screen Reader Text */
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}