/*
Theme Name: TuohaiTech Theme
Theme URI: https://www.tuohaitech.com
Author: TuohaiTech Team
Author URI: https://www.tuohaitech.com
Description: Custom theme for TuohaiTech Precision Molding - Master Craftsman Technology
Version: 1.5.1
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: tuohaitech
Tags: custom, injection-molding, precision, manufacturing, responsive
*/

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

html {
    font-size: 16px;
    -webkit-text-size-adjust: 100%;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #333;
    background: #fff;
    overflow-x: hidden;
}

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

img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* Header Styles */
.site-header {
    background: #fff;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
    width: 100%;
}

.header-top {
    background: #2c2c2c;
    color: #fff;
    padding: 8px 0;
    font-size: 14px;
}

.header-top-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
}

.header-top-left {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.header-top-left a {
    color: #fff;
    text-decoration: none;
    transition: opacity 0.3s;
}

.header-top-left a:hover {
    opacity: 0.8;
}

.header-top-right {
    font-weight: 500;
}

.header-main {
    padding: 15px 0;
}

.header-main-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.site-logo {
    font-size: 28px;
    font-weight: 700;
    color: #2c2c2c;
    text-decoration: none;
    flex-shrink: 0;
}

.site-logo span {
    color: #8a8a8a;
}

/* Desktop Navigation */
.main-nav-wrapper {
    display: block;
}

.main-nav {
    display: flex;
    gap: 30px;
    list-style: none;
    position: relative;
    align-items: center;
}

.main-nav > li {
    position: relative;
}

.main-nav a {
    font-size: 18px;
    color: #333;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s;
    display: block;
    padding: 10px 0;
    white-space: nowrap;
}

.main-nav a:hover {
    color: #2c2c2c;
}

.nav-cta-btn {
    background: #8a8a8a;
    color: #fff !important;
    padding: 10px 20px !important;
    border-radius: 5px;
    transition: all 0.3s;
}

.nav-cta-btn:hover {
    background: #6a6a6a !important;
    color: #fff !important;
}

.dropdown-arrow {
    font-size: 10px;
    margin-left: 3px;
}

/* Dropdown Menu - Desktop */
.main-nav .sub-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background: #fff;
    min-width: 250px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.15);
    border-radius: 5px;
    padding: 10px 0;
    z-index: 1001;
    list-style: none;
}

.main-nav > li:hover .sub-menu {
    display: block;
}

.main-nav .sub-menu li {
    list-style: none;
}

.main-nav .sub-menu a {
    padding: 10px 20px;
    font-size: 14px;
    white-space: nowrap;
}

.main-nav .sub-menu a:hover {
    background: #f6fafd;
}

/* Mobile Menu Toggle Button */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 24px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 1002;
}

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

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

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

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

/* Mobile Overlay */
.mobile-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.5);
    z-index: 999;
    opacity: 0;
    transition: opacity 0.3s;
}

.mobile-overlay.active {
    display: block;
    opacity: 1;
}

/* Hero Section */
.hero-section {
    background: linear-gradient(135deg, #2c2c2c 0%, #1a1a1a 100%);
    color: #fff;
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.hero-content {
    max-width: 600px;
}

.hero-title {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.2;
}

.hero-subtitle {
    font-size: 20px;
    margin-bottom: 30px;
    opacity: 0.9;
    line-height: 1.6;
}

.hero-features {
    display: flex;
    gap: 30px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.hero-feature {
    display: flex;
    align-items: center;
    gap: 10px;
    flex: 1;
    min-width: 200px;
}

.hero-feature-icon {
    width: 40px;
    height: 40px;
    background: #8a8a8a;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    flex-shrink: 0;
}

.btn-primary {
    display: inline-block;
    background: #8a8a8a;
    color: #fff;
    padding: 15px 40px;
    text-decoration: none;
    border-radius: 5px;
    font-weight: 600;
    transition: all 0.3s;
}

.btn-primary:hover {
    background: #6a6a6a;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(229, 62, 62, 0.3);
}

/* Section Styles */
.section {
    padding: 80px 0;
}

.section-title {
    text-align: center;
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 50px;
    color: #2c2c2c;
}

/* Product Grid */
.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-bottom: 50px;
}

.product-card {
    background: #fff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    transition: all 0.3s;
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

.product-image {
    width: 100%;
    height: 250px;
    object-fit: cover;
}

.product-content {
    padding: 25px;
}

.product-title {
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 15px;
    color: #2c2c2c;
}

.product-features {
    list-style: none;
    margin-bottom: 20px;
}

.product-features li {
    padding: 8px 0;
    padding-left: 25px;
    position: relative;
}

.product-features li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #8a8a8a;
    font-weight: bold;
}

/* Services Section */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.service-card {
    text-align: center;
    padding: 40px 30px;
    background: #f6fafd;
    border-radius: 10px;
    transition: all 0.3s;
}

.service-card:hover {
    background: #fff;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.service-icon {
    width: 80px;
    height: 80px;
    background: #2c2c2c;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 36px;
    color: #fff;
}

.service-title {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 15px;
    color: #2c2c2c;
}

/* Footer */
.site-footer {
    background: #1a365d;
    color: #fff;
    padding: 60px 0 20px;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-section h3 {
    font-size: 18px;
    margin-bottom: 20px;
    color: #fff;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 10px;
}

.footer-section a {
    color: #cbd5e0;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-section a:hover {
    color: #fff;
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255,255,255,0.1);
    font-size: 14px;
    color: #cbd5e0;
}

/* ========================================
   RESPONSIVE DESIGN - TABLET (768px)
   ======================================== */
@media (max-width: 991px) {
    .hero-title {
        font-size: 40px;
    }
    
    .hero-subtitle {
        font-size: 18px;
    }
    
    .section-title {
        font-size: 32px;
    }
    
    .product-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 20px;
    }
    
    .services-grid {
        grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
        gap: 20px;
    }
}

/* ========================================
   RESPONSIVE DESIGN - MOBILE (768px and below)
   ======================================== */
@media (max-width: 768px) {
    /* Header Top - Mobile */
    .header-top {
        padding: 6px 0;
        font-size: 12px;
    }
    
    .header-top-inner {
        flex-direction: column;
        gap: 5px;
        text-align: center;
    }
    
    .header-top-left {
        gap: 15px;
        justify-content: center;
    }
    
    .header-top-right {
        font-size: 11px;
    }
    
    /* Header Main - Mobile */
    .header-main {
        padding: 12px 0;
    }
    
    .site-logo {
        font-size: 24px;
    }
    
    /* Mobile Menu Toggle - Show */
    .mobile-menu-toggle {
        display: flex;
    }
    
    /* Mobile Navigation */
    .main-nav-wrapper {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        max-width: 320px;
        height: 100vh;
        background: #fff;
        box-shadow: -5px 0 15px rgba(0,0,0,0.2);
        transition: right 0.3s ease;
        z-index: 1001;
        overflow-y: auto;
        padding: 80px 20px 20px;
    }
    
    .main-nav-wrapper.active {
        right: 0;
    }
    
    .main-nav {
        flex-direction: column;
        gap: 0;
        width: 100%;
    }
    
    .main-nav > li {
        width: 100%;
        border-bottom: 1px solid #f0f0f0;
    }
    
    .main-nav a {
        padding: 15px 0;
        font-size: 16px;
    }
    
    /* Mobile Dropdown */
    .main-nav .sub-menu {
        position: static;
        display: none;
        box-shadow: none;
        padding: 0;
        background: #f9f9f9;
        border-radius: 0;
        min-width: auto;
    }
    
    .main-nav .sub-menu.active {
        display: block;
    }
    
    .main-nav .sub-menu a {
        padding: 12px 20px;
        font-size: 14px;
    }
    
    .dropdown-arrow {
        float: right;
        transition: transform 0.3s;
    }
    
    .menu-item-has-children.active .dropdown-arrow {
        transform: rotate(180deg);
    }
    
    .nav-cta-btn {
        display: block;
        text-align: center;
        margin-top: 10px;
    }
    
    /* Hero Section - Mobile */
    .hero-section {
        padding: 60px 0;
    }
    
    .hero-title {
        font-size: 32px;
    }
    
    .hero-subtitle {
        font-size: 16px;
    }
    
    .hero-features {
        flex-direction: column;
        gap: 15px;
    }
    
    .hero-feature {
        min-width: auto;
    }
    
    .btn-primary {
        padding: 12px 30px;
        font-size: 15px;
        display: block;
        text-align: center;
        max-width: 300px;
        margin: 0 auto;
    }
    
    /* Sections - Mobile */
    .section {
        padding: 50px 0;
    }
    
    .section-title {
        font-size: 28px;
        margin-bottom: 30px;
    }
    
    /* Product Grid - Mobile */
    .product-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .product-image {
        height: 200px;
    }
    
    .product-content {
        padding: 20px;
    }
    
    .product-title {
        font-size: 20px;
    }
    
    /* Services Grid - Mobile */
    .services-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .service-card {
        padding: 30px 20px;
    }
    
    .service-icon {
        width: 60px;
        height: 60px;
        font-size: 28px;
    }
    
    .service-title {
        font-size: 18px;
    }
    
    /* Footer - Mobile */
    .site-footer {
        padding: 40px 0 20px;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .footer-section {
        text-align: center;
    }
    
    .footer-section h3 {
        font-size: 16px;
    }
    
    .footer-bottom {
        font-size: 12px;
    }
}

/* ========================================
   RESPONSIVE DESIGN - SMALL MOBILE (480px)
   ======================================== */
@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    .hero-title {
        font-size: 28px;
    }
    
    .hero-subtitle {
        font-size: 14px;
    }
    
    .section-title {
        font-size: 24px;
    }
    
    .product-title {
        font-size: 18px;
    }
    
    .service-title {
        font-size: 16px;
    }
    
    .site-logo {
        font-size: 20px;
    }
}

/* ========================================
   PRINT STYLES
   ======================================== */
@media print {
    .site-header,
    .site-footer,
    .mobile-menu-toggle,
    .mobile-overlay {
        display: none;
    }
    
    body {
        font-size: 12pt;
        color: #000;
        background: #fff;
    }
}

/* ========================================
   HERO SLIDER
   ======================================== */
.hero-slider {
    position: relative;
    height: 600px;
    overflow: hidden;
}

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

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    opacity: 0;
    transition: opacity 1s ease-in-out;
    z-index: 1;
}

.slide.active {
    opacity: 1;
    z-index: 2;
}

.slide-content {
    max-width: 700px;
    color: #fff;
    animation: slideUp 0.8s ease-out;
}

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

.slide-label {
    display: inline-block;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 15px;
    opacity: 0.9;
}

.slide-content h1 {
    font-size: 48px;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 20px;
}

.slide-content p {
    font-size: 18px;
    line-height: 1.7;
    margin-bottom: 30px;
    opacity: 0.95;
}

.slide-btns {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.btn-outline {
    display: inline-block;
    background: transparent;
    color: #fff;
    padding: 15px 40px;
    text-decoration: none;
    border-radius: 5px;
    font-weight: 600;
    transition: all 0.3s;
    border: 2px solid #fff;
}

.btn-outline:hover {
    background: #fff;
    color: #2c2c2c;
}

.btn-whatsapp {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #25D366;
    color: #fff;
    padding: 15px 40px;
    text-decoration: none;
    border-radius: 5px;
    font-weight: 600;
    transition: all 0.3s;
}

.btn-whatsapp:hover {
    background: #128C7E;
    transform: translateY(-2px);
}

/* Slider Controls */
.slider-controls {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    align-items: center;
    gap: 20px;
    z-index: 10;
}

.slider-arrow {
    background: rgba(255,255,255,0.2);
    border: none;
    color: #fff;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
}

.slider-arrow:hover {
    background: rgba(255,255,255,0.4);
}

.slider-dots {
    display: flex;
    gap: 10px;
}

.slider-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255,255,255,0.4);
    border: none;
    cursor: pointer;
    transition: all 0.3s;
}

.slider-dot.active {
    background: #fff;
    transform: scale(1.2);
}

/* ========================================
   STATS BAR
   ======================================== */
.stats-bar {
    background: #fff;
    padding: 30px 0;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    position: relative;
    z-index: 5;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.stat-item {
    display: flex;
    align-items: center;
    gap: 15px;
}

.stat-icon {
    width: 50px;
    height: 50px;
    background: #2c2c2c;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 20px;
    flex-shrink: 0;
}

.stat-text strong {
    display: block;
    font-size: 16px;
    color: #333;
    margin-bottom: 2px;
}

.stat-text span {
    font-size: 14px;
    color: #666;
}

/* ========================================
   SECTION HEADER
   ======================================== */
.section-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 50px;
}

.section-label {
    display: inline-block;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #2c2c2c;
    margin-bottom: 10px;
}

.section-desc {
    font-size: 16px;
    color: #666;
    line-height: 1.7;
    margin-top: 15px;
}

.section-alt {
    background: #f6fafd;
}

.section-cta {
    text-align: center;
    margin-top: 40px;
}

/* ========================================
   PRODUCT CARD ENHANCED
   ======================================== */
.product-image-wrap {
    overflow: hidden;
    position: relative;
}

.product-image-wrap::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, transparent 60%, rgba(0,0,0,0.1));
    pointer-events: none;
}

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

.product-image {
    transition: transform 0.5s ease;
}

.product-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #2c2c2c;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    transition: all 0.3s;
}

.product-link:hover {
    gap: 12px;
    color: #8a8a8a;
}

/* ========================================
   SERVICE CARD ENHANCED
   ======================================== */
.service-card {
    text-align: left;
    position: relative;
}

.service-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #2c2c2c;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    margin-top: 15px;
    transition: all 0.3s;
}

.service-link:hover {
    gap: 12px;
    color: #8a8a8a;
}

/* ========================================
   INDUSTRIES SECTION
   ======================================== */
.industries-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.industry-card {
    text-align: center;
    padding: 40px 25px;
    background: #f6fafd;
    border-radius: 10px;
    transition: all 0.3s;
    border: 2px solid transparent;
}

.industry-card:hover {
    background: #fff;
    border-color: #2c2c2c;
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(77,130,255,0.15);
}

.industry-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #2c2c2c, #1a1a1a);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 28px;
    color: #fff;
}

.industry-card h3 {
    font-size: 20px;
    font-weight: 600;
    color: #2c2c2c;
    margin-bottom: 15px;
}

.industry-card ul {
    list-style: none;
    text-align: left;
}

.industry-card ul li {
    padding: 6px 0;
    padding-left: 20px;
    position: relative;
    font-size: 14px;
    color: #666;
}

.industry-card ul li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #2c2c2c;
    font-weight: bold;
}

/* ========================================
   CTA SECTION
   ======================================== */
.cta-section {
    background: linear-gradient(135deg, #2c2c2c 0%, #1a1a1a 100%);
    padding: 80px 0;
    text-align: center;
    color: #fff;
}

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

.cta-content h2 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 20px;
}

.cta-content p {
    font-size: 18px;
    line-height: 1.7;
    margin-bottom: 30px;
    opacity: 0.95;
}

.cta-btns {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
}

/* ========================================
   PAGE BANNER (Inner Pages)
   ======================================== */
.page-banner {
    background: linear-gradient(135deg, #2c2c2c 0%, #1a1a1a 100%);
    padding: 80px 0 60px;
    color: #fff;
    text-align: center;
}

.page-banner-content h1 {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 15px;
}

.breadcrumbs {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-size: 14px;
}

.breadcrumbs a {
    color: rgba(255,255,255,0.8);
    text-decoration: none;
    transition: color 0.3s;
}

.breadcrumbs a:hover {
    color: #fff;
}

.breadcrumbs .separator {
    color: rgba(255,255,255,0.5);
    font-size: 10px;
}

.breadcrumbs .current {
    color: #fff;
    font-weight: 500;
}

/* ========================================
   PAGE CONTENT
   ======================================== */
.page-content-section {
    padding: 60px 0 80px;
}

.page-content-wrap {
    max-width: 900px;
    margin: 0 auto;
}

.page-body h2 {
    font-size: 32px;
    font-weight: 700;
    color: #2c2c2c;
    margin-top: 40px;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid #f0f0f0;
}

.page-body h2:first-child {
    margin-top: 0;
}

.page-body h3 {
    font-size: 24px;
    font-weight: 600;
    color: #333;
    margin-top: 30px;
    margin-bottom: 15px;
}

.page-body p {
    font-size: 16px;
    line-height: 1.8;
    color: #555;
    margin-bottom: 20px;
}

.page-body ul, .page-body ol {
    margin-bottom: 20px;
    padding-left: 25px;
}

.page-body li {
    font-size: 16px;
    line-height: 1.8;
    color: #555;
    margin-bottom: 8px;
}

.page-body a {
    color: #2c2c2c;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s;
}

.page-body a:hover {
    color: #8a8a8a;
    text-decoration: underline;
}

.page-body strong {
    color: #333;
}

/* ========================================
   ABOUT PAGE STYLES
   ======================================== */
.about-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin: 40px 0;
    padding: 40px 0;
    border-top: 2px solid #f0f0f0;
    border-bottom: 2px solid #f0f0f0;
}

.about-stat-item {
    text-align: center;
}

.about-stat-number {
    font-size: 48px;
    font-weight: 700;
    color: #2c2c2c;
    line-height: 1;
    margin-bottom: 10px;
}

.about-stat-label {
    font-size: 14px;
    color: #666;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.why-choose-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin: 30px 0;
}

.why-choose-item {
    text-align: center;
    padding: 30px 20px;
    background: #f6fafd;
    border-radius: 10px;
    transition: all 0.3s;
}

.why-choose-item:hover {
    background: #fff;
    box-shadow: 0 10px 30px rgba(77,130,255,0.15);
    transform: translateY(-3px);
}

.why-choose-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #2c2c2c, #1a1a1a);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
    font-size: 24px;
    color: #fff;
}

.why-choose-item h3 {
    font-size: 18px;
    font-weight: 600;
    color: #2c2c2c;
    margin-bottom: 10px;
    margin-top: 0;
}

.why-choose-item p {
    font-size: 14px;
    color: #666;
    line-height: 1.6;
    margin-bottom: 0;
}

.about-cta {
    background: linear-gradient(135deg, #2c2c2c 0%, #1a1a1a 100%);
    padding: 40px;
    border-radius: 10px;
    text-align: center;
    color: #fff;
    margin-top: 40px;
}

.about-cta h3 {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 10px;
    margin-top: 0;
    color: #fff;
}

.about-cta p {
    font-size: 16px;
    margin-bottom: 20px;
    opacity: 0.95;
    color: #fff;
}

.about-cta .btn-primary {
    background: #fff;
    color: #2c2c2c;
}

.about-cta .btn-primary:hover {
    background: #f0f0f0;
    color: #2c2c2c;
}

/* ========================================
   RESPONSIVE - SLIDER & NEW SECTIONS
   ======================================== */
@media (max-width: 991px) {
    .hero-slider {
        height: 500px;
    }
    
    .slide-content h1 {
        font-size: 38px;
    }
    
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .industries-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .about-stats {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .why-choose-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .hero-slider {
        height: 450px;
    }
    
    .slide-content h1 {
        font-size: 28px;
    }
    
    .slide-content p {
        font-size: 15px;
    }
    
    .slide-label {
        font-size: 12px;
    }
    
    .slide-btns {
        flex-direction: column;
    }
    
    .slide-btns a {
        text-align: center;
    }
    
    .btn-outline, .btn-whatsapp {
        padding: 12px 30px;
        font-size: 14px;
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .stat-item {
        justify-content: center;
    }
    
    .industries-grid {
        grid-template-columns: 1fr;
    }
    
    .cta-content h2 {
        font-size: 28px;
    }
    
    .cta-btns {
        flex-direction: column;
        align-items: center;
    }
    
    .page-banner {
        padding: 50px 0 40px;
    }
    
    .page-banner-content h1 {
        font-size: 32px;
    }
    
    .page-body h2 {
        font-size: 26px;
    }
    
    .page-body h3 {
        font-size: 20px;
    }
    
    .about-stats {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
        padding: 30px 0;
    }
    
    .about-stat-number {
        font-size: 36px;
    }
    
    .why-choose-grid {
        grid-template-columns: 1fr;
    }
    
    .about-cta {
        padding: 30px 20px;
    }
    
    .about-cta h3 {
        font-size: 22px;
    }
    
    .slider-controls {
        bottom: 15px;
    }
    
    .slider-arrow {
        width: 35px;
        height: 35px;
    }
}

@media (max-width: 480px) {
    .hero-slider {
        height: 400px;
    }
    
    .slide-content h1 {
        font-size: 24px;
    }
    
    .slide-content p {
        font-size: 14px;
        margin-bottom: 20px;
    }
    
    .page-banner-content h1 {
        font-size: 26px;
    }
    
    .about-stats {
        grid-template-columns: 1fr 1fr;
    }
    
    .about-stat-number {
        font-size: 30px;
    }
}

/* Timeline Styles */
.timeline {
    position: relative;
    padding: 40px 0;
    margin: 40px 0;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 50px;
    top: 0;
    bottom: 0;
    width: 3px;
    background: linear-gradient(to bottom, #2c2c2c, #8a8a8a);
}

.timeline-item {
    position: relative;
    padding-left: 100px;
    margin-bottom: 50px;
}

.timeline-item:last-child {
    margin-bottom: 0;
}

.timeline-year {
    position: absolute;
    left: 0;
    top: 0;
    width: 80px;
    height: 80px;
    background: #2c2c2c;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    font-weight: 700;
    color: #fff;
    box-shadow: 0 4px 15px rgba(77, 130, 255, 0.3);
    z-index: 2;
}

.timeline-item-active .timeline-year {
    background: #8a8a8a;
    box-shadow: 0 4px 15px rgba(229, 62, 62, 0.3);
    animation: pulse 2s infinite;
}

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

.timeline-content {
    background: #fff;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    border-left: 4px solid #2c2c2c;
}

.timeline-item-active .timeline-content {
    border-left-color: #8a8a8a;
    background: linear-gradient(135deg, #fff 0%, #f8f9ff 100%);
}

.timeline-content h3 {
    font-size: 22px;
    font-weight: 700;
    color: #333;
    margin-bottom: 15px;
}

.timeline-content p {
    font-size: 15px;
    line-height: 1.8;
    color: #666;
    margin-bottom: 10px;
}

.timeline-content p:last-child {
    margin-bottom: 0;
}

.timeline-content a {
    color: #2c2c2c;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s;
}

.timeline-content a:hover {
    color: #8a8a8a;
}

/* Location Grid */
.location-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin: 40px 0;
}

.location-card {
    background: #fff;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    text-align: center;
    transition: all 0.3s;
    border: 2px solid transparent;
}

.location-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
    border-color: #2c2c2c;
}

.location-card-hq {
    border-color: #8a8a8a;
    background: linear-gradient(135deg, #fff 0%, #fff5f5 100%);
}

.location-card-hq:hover {
    border-color: #8a8a8a;
}

.location-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #2c2c2c, #1a1a1a);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 28px;
    color: #fff;
}

.location-card-hq .location-icon {
    background: linear-gradient(135deg, #8a8a8a, #6a6a6a);
}

.location-card h3 {
    font-size: 20px;
    font-weight: 700;
    color: #333;
    margin-bottom: 10px;
}

.location-card p {
    font-size: 14px;
    line-height: 1.7;
    color: #666;
    margin-bottom: 10px;
}

.location-tag {
    display: inline-block;
    padding: 6px 16px;
    background: #2c2c2c;
    color: #fff;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    margin-top: 10px;
}

.location-card-hq .location-tag {
    background: #8a8a8a;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .timeline::before {
        left: 30px;
    }
    
    .timeline-item {
        padding-left: 80px;
    }
    
    .timeline-year {
        width: 60px;
        height: 60px;
        font-size: 16px;
    }
    
    .timeline-content {
        padding: 20px;
    }
    
    .timeline-content h3 {
        font-size: 18px;
    }
    
    .location-grid {
        grid-template-columns: 1fr;
    }
}

/* ========================================
   METALLIC TEXTURE EFFECTS
   ======================================== */

/* Metallic gradient for buttons */
.btn-primary {
    background: linear-gradient(135deg, #2c2c2c 0%, #4a4a4a 50%, #2c2c2c 100%);
    background-size: 200% 200%;
    box-shadow: 
        0 4px 15px rgba(0, 0, 0, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.btn-primary:hover {
    background: linear-gradient(135deg, #4a4a4a 0%, #6a6a6a 50%, #4a4a4a 100%);
    box-shadow: 
        0 6px 20px rgba(0, 0, 0, 0.4),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
}

/* Metallic outline button */
.btn-outline {
    border: 2px solid #8a8a8a;
    background: linear-gradient(135deg, rgba(44,44,44,0.1) 0%, rgba(138,138,138,0.1) 100%);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.btn-outline:hover {
    background: linear-gradient(135deg, rgba(44,44,44,0.3) 0%, rgba(138,138,138,0.3) 100%);
    border-color: #aaa;
    box-shadow: 
        0 4px 15px rgba(0, 0, 0, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

/* Metallic card borders */
.product-card,
.service-card,
.location-card,
.why-choose-item {
    border: 1px solid rgba(138, 138, 138, 0.3);
    box-shadow: 
        0 4px 15px rgba(0, 0, 0, 0.08),
        inset 0 1px 0 rgba(255, 255, 255, 0.5);
}

.product-card:hover,
.service-card:hover,
.location-card:hover,
.why-choose-item:hover {
    border-color: rgba(138, 138, 138, 0.6);
    box-shadow: 
        0 8px 25px rgba(0, 0, 0, 0.12),
        inset 0 1px 0 rgba(255, 255, 255, 0.8);
}

/* Metallic timeline line */
.timeline::before {
    background: linear-gradient(
        to bottom,
        #2c2c2c 0%,
        #6a6a6a 25%,
        #8a8a8a 50%,
        #6a6a6a 75%,
        #2c2c2c 100%
    );
    box-shadow: 
        0 0 10px rgba(138, 138, 138, 0.3),
        inset 1px 0 0 rgba(255, 255, 255, 0.2);
}

/* Metallic year markers */
.timeline-year {
    background: linear-gradient(135deg, #2c2c2c 0%, #4a4a4a 50%, #2c2c2c 100%);
    box-shadow: 
        0 4px 15px rgba(0, 0, 0, 0.3),
        inset 0 2px 0 rgba(255, 255, 255, 0.2),
        inset 0 -2px 0 rgba(0, 0, 0, 0.3);
    border: 2px solid rgba(138, 138, 138, 0.5);
}

.timeline-item-active .timeline-year {
    background: linear-gradient(135deg, #e53e3e 0%, #ff6b6b 50%, #e53e3e 100%);
    box-shadow: 
        0 4px 20px rgba(229, 62, 62, 0.4),
        inset 0 2px 0 rgba(255, 255, 255, 0.3);
    border-color: rgba(255, 107, 107, 0.6);
}

/* Metallic icon backgrounds */
.service-icon,
.industry-icon,
.location-icon,
.why-choose-icon {
    background: linear-gradient(135deg, #2c2c2c 0%, #4a4a4a 50%, #2c2c2c 100%);
    box-shadow: 
        0 4px 15px rgba(0, 0, 0, 0.2),
        inset 0 2px 0 rgba(255, 255, 255, 0.2);
    border: 1px solid rgba(138, 138, 138, 0.4);
}

/* Colorful icons for specific services */
.service-icon i {
    color: #4d82ff;
}

.industry-icon i {
    color: #4d82ff;
}

.location-icon i {
    color: #fff;
}

.why-choose-icon i {
    color: #4d82ff;
}

/* Metallic stat icons */
.stat-icon {
    background: linear-gradient(135deg, #2c2c2c 0%, #4a4a4a 50%, #2c2c2c 100%);
    box-shadow: 
        0 4px 15px rgba(0, 0, 0, 0.2),
        inset 0 2px 0 rgba(255, 255, 255, 0.2);
    border: 1px solid rgba(138, 138, 138, 0.4);
}

.stat-icon i {
    color: #4d82ff;
}

/* Metallic CTA section */
.cta-section {
    background: linear-gradient(
        135deg,
        #2c2c2c 0%,
        #4a4a4a 25%,
        #6a6a6a 50%,
        #4a4a4a 75%,
        #2c2c2c 100%
    );
    background-size: 200% 200%;
    animation: metallicShine 8s ease infinite;
}

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

/* Metallic hero slider overlay */
.slide {
    background-image: linear-gradient(
        135deg,
        rgba(44,44,44,0.95) 0%,
        rgba(74,74,74,0.90) 50%,
        rgba(44,44,74,0.95) 100%
    );
}

/* Metallic location tags */
.location-tag {
    background: linear-gradient(135deg, #2c2c2c 0%, #4a4a4a 100%);
    box-shadow: 
        0 2px 8px rgba(0, 0, 0, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
    border: 1px solid rgba(138, 138, 138, 0.4);
}

.location-card-hq .location-tag {
    background: linear-gradient(135deg, #e53e3e 0%, #ff6b6b 100%);
    box-shadow: 
        0 2px 8px rgba(229, 62, 62, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.3);
}

/* Metallic about CTA */
.about-cta {
    background: linear-gradient(
        135deg,
        #2c2c2c 0%,
        #4a4a4a 25%,
        #6a6a6a 50%,
        #4a4a4a 75%,
        #2c2c2c 100%
    );
    background-size: 200% 200%;
    animation: metallicShine 8s ease infinite;
    border: 1px solid rgba(138, 138, 138, 0.5);
    box-shadow: 
        0 8px 25px rgba(0, 0, 0, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

/* Metallic page banner */
.page-banner {
    background: linear-gradient(
        135deg,
        #2c2c2c 0%,
        #4a4a4a 50%,
        #2c2c2c 100%
    );
    box-shadow: inset 0 -2px 10px rgba(0, 0, 0, 0.3);
}

/* Metallic header top bar */
.header-top {
    background: linear-gradient(
        90deg,
        #2c2c2c 0%,
        #4a4a4a 50%,
        #2c2c2c 100%
    );
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

/* Metallic footer */
.site-footer {
    background: linear-gradient(
        180deg,
        #1a1a1a 0%,
        #2c2c2c 50%,
        #1a1a1a 100%
    );
    border-top: 2px solid rgba(138, 138, 138, 0.3);
}

/* Metallic WhatsApp button - keep green for brand */
.btn-whatsapp {
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
    box-shadow: 
        0 4px 15px rgba(37, 211, 102, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

.btn-whatsapp:hover {
    background: linear-gradient(135deg, #128C7E 0%, #075E54 100%);
    box-shadow: 
        0 6px 20px rgba(37, 211, 102, 0.4),
        inset 0 1px 0 rgba(255, 255, 255, 0.3);
}

/* Metallic product links */
.product-link {
    color: #4d82ff;
    font-weight: 600;
}

.product-link:hover {
    color: #e53e3e;
}

/* Metallic service links */
.service-link {
    color: #4d82ff;
    font-weight: 600;
}

.service-link:hover {
    color: #e53e3e;
}

/* Metallic about stat numbers */
.about-stat-number {
    background: linear-gradient(135deg, #2c2c2c 0%, #4a4a4a 50%, #2c2c2c 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

/* Metallic timeline content cards */
.timeline-content {
    background: linear-gradient(
        135deg,
        #fff 0%,
        #f8f8f8 50%,
        #fff 100%
    );
    border-left: 3px solid #8a8a8a;
    box-shadow: 
        0 4px 15px rgba(0, 0, 0, 0.08),
        inset 0 1px 0 rgba(255, 255, 255, 0.8);
}

.timeline-item-active .timeline-content {
    border-left-color: #e53e3e;
    background: linear-gradient(
        135deg,
        #fff 0%,
        #fff5f5 50%,
        #fff 100%
    );
}

/* Metallic section headers */
.section-label {
    color: #4d82ff;
    font-weight: 700;
    letter-spacing: 2px;
}

.section-title {
    color: #2c2c2c;
    font-weight: 700;
}

/* Metallic product titles */
.product-title {
    color: #2c2c2c;
}

/* Metallic service titles */
.service-title {
    color: #2c2c2c;
}

/* Metallic industry card hover */
.industry-card:hover {
    border-color: #4d82ff;
    box-shadow: 
        0 10px 30px rgba(77, 130, 255, 0.15),
        inset 0 1px 0 rgba(255, 255, 255, 0.8);
}

.industry-card ul li:before {
    color: #4d82ff;
}

/* Metallic why choose items */
.why-choose-item h3 {
    color: #4d82ff;
}

/* Metallic location card HQ */
.location-card-hq {
    border-color: #e53e3e;
    background: linear-gradient(
        135deg,
        #fff 0%,
        #fff5f5 50%,
        #fff 100%
    );
}

.location-card-hq:hover {
    border-color: #e53e3e;
    box-shadow: 
        0 10px 30px rgba(229, 62, 62, 0.15),
        inset 0 1px 0 rgba(255, 255, 255, 0.8);
}

/* Metallic navigation hover */
.main-nav a:hover {
    color: #4d82ff;
}

.nav-cta-btn {
    background: linear-gradient(135deg, #e53e3e 0%, #ff6b6b 100%);
    box-shadow: 
        0 4px 15px rgba(229, 62, 62, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

.nav-cta-btn:hover {
    background: linear-gradient(135deg, #ff6b6b 0%, #e53e3e 100%);
    box-shadow: 
        0 6px 20px rgba(229, 62, 62, 0.4),
        inset 0 1px 0 rgba(255, 255, 255, 0.3);
}

/* Footer Font Size Increase */
.site-footer .footer-section h3 {
    font-size: 20px !important;
    margin-bottom: 20px;
}

.site-footer .footer-section p {
    font-size: 16px !important;
    line-height: 1.8;
}

.site-footer .footer-section ul {
    list-style: none;
    padding: 0;
}

.site-footer .footer-section ul li {
    font-size: 16px !important;
    margin-bottom: 12px;
    line-height: 1.6;
}

.site-footer .footer-section ul li a {
    font-size: 16px !important;
    color: #cbd5e0;
    text-decoration: none;
    transition: color 0.3s;
}

.site-footer .footer-section ul li a:hover {
    color: #fff;
}

.site-footer .footer-bottom p {
    font-size: 15px !important;
}

@media (max-width: 768px) {
    .site-footer .footer-section h3 {
        font-size: 18px !important;
    }
    
    .site-footer .footer-section p,
    .site-footer .footer-section ul li,
    .site-footer .footer-section ul li a {
        font-size: 15px !important;
    }
    
    .site-footer .footer-bottom p {
        font-size: 13px !important;
    }
}

/* Product Card Font Size Increase */
.product-content {
    padding: 25px;
}

.product-title {
    font-size: 24px !important;
    font-weight: 700;
    margin-bottom: 20px;
}

.product-features {
    list-style: none;
    padding: 0;
    margin-bottom: 20px;
}

.product-features li {
    font-size: 16px !important;
    padding: 10px 0;
    padding-left: 30px;
    position: relative;
    line-height: 1.6;
    color: #555;
}

.product-features li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #4d82ff;
    font-weight: bold;
    font-size: 18px;
}

.product-link {
    font-size: 16px !important;
    font-weight: 600;
}

/* Service Card Font Size Increase */
.service-title {
    font-size: 22px !important;
    font-weight: 700;
    margin-bottom: 15px;
}

.service-card p {
    font-size: 16px !important;
    line-height: 1.7;
    color: #555;
}

.service-link {
    font-size: 16px !important;
    font-weight: 600;
}

/* Industry Card Font Size Increase */
.industry-card h3 {
    font-size: 22px !important;
    font-weight: 700;
    margin-bottom: 15px;
}

.industry-card ul li {
    font-size: 15px !important;
    padding: 8px 0;
    line-height: 1.6;
}

/* Why Choose Grid Font Size */
.why-choose-item h3 {
    font-size: 20px !important;
    font-weight: 700;
    margin-bottom: 12px;
}

.why-choose-item p {
    font-size: 15px !important;
    line-height: 1.7;
}

/* Stats Bar Font Size */
.stat-text strong {
    font-size: 17px !important;
}

.stat-text span {
    font-size: 15px !important;
}

/* Section Headers */
.section-title {
    font-size: 38px !important;
    font-weight: 700;
}

.section-desc {
    font-size: 17px !important;
    line-height: 1.8;
}

/* CTA Section */
.cta-content h2 {
    font-size: 38px !important;
}

.cta-content p {
    font-size: 18px !important;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .product-title,
    .service-title,
    .industry-card h3 {
        font-size: 20px !important;
    }
    
    .product-features li,
    .service-card p,
    .industry-card ul li,
    .why-choose-item p {
        font-size: 15px !important;
    }
    
    .section-title,
    .cta-content h2 {
        font-size: 28px !important;
    }
    
    .section-desc,
    .cta-content p {
        font-size: 16px !important;
    }
}

/* Service Cards - Larger Fonts */
.service-card .service-title {
    font-size: 26px !important;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.3;
}

.service-card p {
    font-size: 18px !important;
    line-height: 1.8;
    color: #555;
    margin-bottom: 20px;
}

.service-card .service-link {
    font-size: 18px !important;
    font-weight: 600;
}

/* Product Cards - Larger Fonts */
.product-card .product-title {
    font-size: 26px !important;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.3;
}

.product-card .product-features li {
    font-size: 17px !important;
    padding: 12px 0;
    padding-left: 30px;
    line-height: 1.7;
}

.product-card .product-link {
    font-size: 17px !important;
    font-weight: 600;
}

/* Industry Cards - Larger Fonts */
.industry-card h3 {
    font-size: 24px !important;
    font-weight: 700;
    margin-bottom: 18px;
}

.industry-card ul li {
    font-size: 16px !important;
    padding: 10px 0;
    line-height: 1.7;
}

/* Why Choose Cards - Larger Fonts */
.why-choose-item h3 {
    font-size: 22px !important;
    font-weight: 700;
    margin-bottom: 15px;
}

.why-choose-item p {
    font-size: 16px !important;
    line-height: 1.8;
}

/* Stats Bar - Larger Fonts */
.stat-text strong {
    font-size: 18px !important;
    font-weight: 700;
}

.stat-text span {
    font-size: 16px !important;
}

/* Section Headers - Larger */
.section-title {
    font-size: 42px !important;
    font-weight: 700;
    margin-bottom: 20px;
}

.section-desc {
    font-size: 18px !important;
    line-height: 1.8;
}

/* CTA Section - Larger */
.cta-content h2 {
    font-size: 42px !important;
    font-weight: 700;
}

.cta-content p {
    font-size: 20px !important;
    line-height: 1.8;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .service-card .service-title,
    .product-card .product-title,
    .industry-card h3 {
        font-size: 22px !important;
    }
    
    .service-card p,
    .product-card .product-features li,
    .industry-card ul li,
    .why-choose-item p {
        font-size: 16px !important;
    }
    
    .section-title,
    .cta-content h2 {
        font-size: 32px !important;
    }
    
    .section-desc,
    .cta-content p {
        font-size: 17px !important;
    }
}

/* One-to-One Service Section */
.one-to-one-service {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin: 40px 0;
}

.service-highlight {
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    border: 2px solid #e0e0e0;
    border-radius: 12px;
    padding: 30px;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.service-highlight::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #4d82ff 0%, #8a8a8a 50%, #4d82ff 100%);
}

.service-highlight:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(77, 130, 255, 0.15);
    border-color: #4d82ff;
}

.highlight-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    background: linear-gradient(135deg, #4d82ff 0%, #2d5fd3 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 36px;
    color: #fff;
    box-shadow: 0 4px 15px rgba(77, 130, 255, 0.3);
}

.service-highlight h3 {
    font-size: 22px !important;
    font-weight: 700;
    color: #2c2c2c;
    margin-bottom: 15px;
    line-height: 1.3;
}

.service-highlight p {
    font-size: 16px !important;
    line-height: 1.8;
    color: #555;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .one-to-one-service {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .service-highlight {
        padding: 25px;
    }
    
    .highlight-icon {
        width: 70px;
        height: 70px;
        font-size: 32px;
    }
    
    .service-highlight h3 {
        font-size: 20px !important;
    }
    
    .service-highlight p {
        font-size: 15px !important;
    }
}

/* ========================================
   COLOR SCHEME UPDATE - Black + Deep Blue
   ======================================== */

:root {
    --primary-color: #1e3a5f;
    --secondary-color: #2c5282;
    --accent-color: #4299e1;
    --dark-bg: #1a202c;
    --light-bg: #f7fafc;
}

/* Header */
.site-header {
    background: linear-gradient(135deg, var(--dark-bg) 0%, #2d3748 100%);
}

.site-logo {
    color: #fff;
}

.site-logo:hover {
    color: var(--accent-color);
}

.main-nav a {
    color: #e2e8f0;
}

.main-nav a:hover {
    color: var(--accent-color);
}

/* Hero Section */
.hero-section {
    background: linear-gradient(135deg, var(--dark-bg) 0%, var(--primary-color) 100%);
}

/* Buttons */
.btn-primary {
    background: var(--accent-color);
    color: #fff;
}

.btn-primary:hover {
    background: var(--secondary-color);
}

.btn-outline {
    border-color: var(--accent-color);
    color: var(--accent-color);
}

.btn-outline:hover {
    background: var(--accent-color);
    color: #fff;
}

/* Section Titles */
.section-title {
    color: var(--dark-bg);
}

.section-label {
    color: var(--accent-color);
}

/* Product Cards */
.product-card {
    background: #fff;
    border: 1px solid #e2e8f0;
}

.product-card:hover {
    box-shadow: 0 10px 30px rgba(30, 58, 95, 0.15);
    border-color: var(--accent-color);
}

.product-title {
    color: var(--primary-color);
}

.product-link {
    color: var(--accent-color);
}

/* Service Cards */
.service-card {
    background: #fff;
    border: 1px solid #e2e8f0;
}

.service-card:hover {
    box-shadow: 0 10px 30px rgba(30, 58, 95, 0.15);
    border-color: var(--accent-color);
}

.service-icon {
    background: var(--accent-color);
    color: #fff;
}

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

.service-link {
    color: var(--accent-color);
}

/* Industry Cards */
.industry-card {
    background: #fff;
    border: 1px solid #e2e8f0;
}

.industry-card:hover {
    box-shadow: 0 10px 30px rgba(30, 58, 95, 0.15);
    border-color: var(--accent-color);
}

.industry-icon {
    background: var(--accent-color);
    color: #fff;
}

.industry-card h3 {
    color: var(--primary-color);
}

/* Why Choose Cards - Icon before title, same line */
.why-choose-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.why-choose-item {
    background: #fff;
    border: 1px solid #e2e8f0;
    padding: 30px;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.why-choose-item:hover {
    box-shadow: 0 10px 30px rgba(30, 58, 95, 0.15);
    border-color: var(--accent-color);
}

.why-choose-header {
    display: flex;
    align-items: center;
    gap: 15px;
}

.why-choose-icon {
    background: var(--accent-color);
    color: #fff;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    flex-shrink: 0;
}

.why-choose-item h3 {
    color: var(--primary-color);
    margin: 0;
    font-size: 20px;
}

.why-choose-item p {
    color: #4a5568;
    line-height: 1.6;
    margin: 0;
}

/* CTA Section */
.cta-section {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
}

.cta-section h2 {
    color: #fff;
}

.cta-section p {
    color: #e2e8f0;
}

/* Footer */
.site-footer {
    background: var(--dark-bg);
    color: #e2e8f0;
}

.site-footer h3 {
    color: #fff;
}

.site-footer a {
    color: #cbd5e0;
}

.site-footer a:hover {
    color: var(--accent-color);
}

/* Footer Social Icons */
.footer-social {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.footer-social a {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #2d3748;
    color: #e2e8f0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    transition: all 0.3s ease;
}

.footer-social a:hover {
    background: var(--accent-color);
    color: #fff;
    transform: translateY(-3px);
}

/* Stats Bar */
.stat-item {
    background: #fff;
    border: 1px solid #e2e8f0;
}

.stat-item:hover {
    box-shadow: 0 10px 30px rgba(30, 58, 95, 0.15);
    border-color: var(--accent-color);
}

.stat-number {
    color: var(--accent-color);
}

.stat-label {
    color: #4a5568;
}

/* Page Banner */
.page-banner {
    background: linear-gradient(135deg, var(--dark-bg) 0%, var(--primary-color) 100%);
}

/* Contact Info */
.contact-info-item {
    background: #fff;
    border: 1px solid #e2e8f0;
}

.contact-info-item:hover {
    box-shadow: 0 10px 30px rgba(30, 58, 95, 0.15);
    border-color: var(--accent-color);
}

.contact-icon {
    background: var(--accent-color);
    color: #fff;
}

/* About Page */
.about-stats {
    background: var(--light-bg);
}

.about-stat-number {
    color: var(--accent-color);
}

.about-stat-label {
    color: #4a5568;
}

.timeline-year {
    background: var(--accent-color);
    color: #fff;
}

.timeline-content {
    background: #fff;
    border: 1px solid #e2e8f0;
}

.timeline-content h3 {
    color: var(--primary-color);
}

.location-card {
    background: #fff;
    border: 1px solid #e2e8f0;
}

.location-card:hover {
    box-shadow: 0 10px 30px rgba(30, 58, 95, 0.15);
    border-color: var(--accent-color);
}

.location-icon {
    background: var(--accent-color);
    color: #fff;
}

.location-tag {
    background: var(--accent-color);
    color: #fff;
}

/* One-to-One Service */
.service-highlight {
    background: #fff;
    border: 1px solid #e2e8f0;
}

.service-highlight:hover {
    box-shadow: 0 10px 30px rgba(30, 58, 95, 0.15);
    border-color: var(--accent-color);
}

.highlight-icon {
    background: var(--accent-color);
    color: #fff;
}

.service-highlight h3 {
    color: var(--primary-color);
}

/* Mobile Menu */
.mobile-menu-toggle span {
    background: #fff;
}

.mobile-nav {
    background: var(--dark-bg);
}

.mobile-nav a {
    color: #e2e8f0;
    border-bottom: 1px solid #2d3748;
}

.mobile-nav a:hover {
    color: var(--accent-color);
    background: #2d3748;
}

/* Fix Industry Cards Icon Overlap */
.industry-card {
    position: relative;
    padding-top: 80px;
}

.industry-icon {
    position: absolute;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
}

/* Font Size Adjustments - Slightly Smaller */
body {
    font-size: 15px;
}

h1 {
    font-size: 36px;
}

h2 {
    font-size: 28px;
}

h3 {
    font-size: 22px;
}

h4 {
    font-size: 18px;
}

p {
    font-size: 15px;
    line-height: 1.7;
}

.product-title {
    font-size: 20px;
}

.product-features li {
    font-size: 14px;
}

.service-title {
    font-size: 20px;
}

.service-card p {
    font-size: 14px;
}

.industry-card h3 {
    font-size: 18px;
}

.industry-card ul li {
    font-size: 14px;
}

.why-choose-item h3 {
    font-size: 18px;
}

.why-choose-item p {
    font-size: 14px;
}

.stat-number {
    font-size: 32px;
}

.stat-label {
    font-size: 14px;
}

.section-title {
    font-size: 32px;
}

.section-desc {
    font-size: 16px;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    h1 {
        font-size: 28px;
    }
    
    h2 {
        font-size: 24px;
    }
    
    h3 {
        font-size: 20px;
    }
    
    .section-title {
        font-size: 26px;
    }
    
    .why-choose-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-social {
        justify-content: center;
    }
}

/* ========================================
   DROPDOWN MENU - Dark Background Fix
   ======================================== */

/* Desktop dropdown menu */
.main-nav .sub-menu {
    background: #1a202c !important;
    border: 1px solid #2d3748;
    box-shadow: 0 8px 25px rgba(0,0,0,0.3);
}

.main-nav .sub-menu li a {
    color: #e2e8f0 !important;
    font-size: 15px !important;
    padding: 12px 20px !important;
}

.main-nav .sub-menu li a:hover {
    background: #2d3748 !important;
    color: #fff !important;
}

/* Mobile dropdown menu */
@media (max-width: 768px) {
    .main-nav .sub-menu {
        background: #2d3748 !important;
    }
    
    .main-nav .sub-menu li a {
        color: #e2e8f0 !important;
    }
}

/* ========================================
   SERVICE CARD ICONS - Better Contrast
   ======================================== */

.service-icon {
    background: linear-gradient(135deg, #1e3a5f 0%, #2d5282 100%) !important;
    box-shadow: 0 4px 15px rgba(30, 58, 95, 0.3) !important;
}

.service-icon i {
    color: #fff !important;
    font-size: 28px !important;
}

/* Industry card icons */
.industry-icon {
    background: linear-gradient(135deg, #1e3a5f 0%, #2d5282 100%) !important;
    box-shadow: 0 4px 15px rgba(30, 58, 95, 0.3) !important;
}

.industry-icon i {
    color: #fff !important;
    font-size: 28px !important;
}

/* Why choose icons */
.why-choose-icon {
    background: linear-gradient(135deg, #1e3a5f 0%, #2d5282 100%) !important;
    box-shadow: 0 4px 15px rgba(30, 58, 95, 0.3) !important;
}

.why-choose-icon i {
    color: #fff !important;
    font-size: 22px !important;
}

/* Location icons */
.location-icon {
    background: linear-gradient(135deg, #1e3a5f 0%, #2d5282 100%) !important;
    box-shadow: 0 4px 15px rgba(30, 58, 95, 0.3) !important;
}

.location-icon i {
    color: #fff !important;
    font-size: 28px !important;
}

/* Highlight icons (one-to-one service) */
.highlight-icon {
    background: linear-gradient(135deg, #1e3a5f 0%, #2d5282 100%) !important;
    box-shadow: 0 4px 15px rgba(30, 58, 95, 0.3) !important;
}

.highlight-icon i {
    color: #fff !important;
    font-size: 32px !important;
}

/* Stat icons */
.stat-icon {
    background: linear-gradient(135deg, #1e3a5f 0%, #2d5282 100%) !important;
    box-shadow: 0 4px 15px rgba(30, 58, 95, 0.3) !important;
}

.stat-icon i {
    color: #fff !important;
    font-size: 20px !important;
}

/* ========================================
   INDUSTRY CARDS - Fix Icon Overlap
   ======================================== */

.industry-card {
    position: relative;
    padding-top: 100px !important;
    text-align: center;
}

.industry-icon {
    position: absolute;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #1e3a5f 0%, #2d5282 100%) !important;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(30, 58, 95, 0.3) !important;
}

.industry-icon i {
    color: #fff !important;
    font-size: 28px !important;
}

.industry-card h3 {
    font-size: 20px !important;
    font-weight: 700;
    color: #1e3a5f !important;
    margin-bottom: 15px;
    margin-top: 0;
}

.industry-card ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.industry-card ul li {
    font-size: 15px !important;
    padding: 8px 0;
    padding-left: 25px;
    position: relative;
    color: #4a5568;
    text-align: left;
}

.industry-card ul li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #4a90e2;
    font-weight: bold;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .industry-card {
        padding-top: 90px !important;
    }
    
    .industry-icon {
        width: 60px;
        height: 60px;
        top: 15px;
    }
    
    .industry-icon i {
        font-size: 24px !important;
    }
    
    .industry-card h3 {
        font-size: 18px !important;
    }
    
    .industry-card ul li {
        font-size: 14px !important;
    }
}

/* ========================================
   WHY CHOOSE ICONS - High Contrast Fix
   ======================================== */

.why-choose-icon {
    background: linear-gradient(135deg, #1e3a5f 0%, #2d5282 100%) !important;
    box-shadow: 0 4px 15px rgba(30, 58, 95, 0.4) !important;
    border: 2px solid #1e3a5f !important;
}

.why-choose-icon i {
    color: #ffffff !important;
    font-size: 24px !important;
    font-weight: 900 !important;
}

/* Ensure all icon fonts are white */
.why-choose-icon .fa-award,
.why-choose-icon .fa-microchip,
.why-choose-icon .fa-certificate,
.why-choose-icon .fa-globe-americas,
.why-choose-icon .fa-tags,
.why-choose-icon .fa-shipping-fast {
    color: #ffffff !important;
}

/* ========================================
   WHY CHOOSE ICONS - High Contrast Fix
   ======================================== */

.why-choose-icon {
    background: linear-gradient(135deg, #1e3a5f 0%, #2d5282 100%) !important;
    box-shadow: 0 4px 15px rgba(30, 58, 95, 0.4) !important;
    border: 2px solid #1e3a5f !important;
}

.why-choose-icon i {
    color: #ffffff !important;
    font-size: 24px !important;
    font-weight: 900 !important;
}

/* Ensure all icon fonts are white */
.why-choose-icon .fa-award,
.why-choose-icon .fa-microchip,
.why-choose-icon .fa-certificate,
.why-choose-icon .fa-globe-americas,
.why-choose-icon .fa-tags,
.why-choose-icon .fa-shipping-fast {
    color: #ffffff !important;
}

/* ========================================
   PRODUCT CATEGORIES GRID
   ======================================== */
.product-categories-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin: 40px 0 60px 0;
}

.product-category-card {
    background: #fff;
    border: 1px solid #e2e8f0;
    border-radius: 10px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.product-category-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(30, 58, 95, 0.15);
    border-color: #4a90e2;
}

.product-category-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.product-category-card h3 {
    font-size: 20px !important;
    color: #1e3a5f !important;
    padding: 20px 20px 10px;
    margin: 0;
}

.product-category-card p {
    padding: 0 20px;
    color: #4a5568;
    font-size: 15px !important;
    line-height: 1.6;
}

.product-category-card .btn-primary {
    display: block;
    margin: 20px;
    margin-bottom: 30px;
    text-align: center;
    padding: 12px 20px;
    background: linear-gradient(135deg, #1e3a5f 0%, #2d5282 100%);
    color: #fff !important;
    text-decoration: none;
    border-radius: 5px;
    font-size: 14px !important;
    font-weight: 600;
    transition: all 0.3s ease;
}

.product-category-card .btn-primary:hover {
    background: linear-gradient(135deg, #2d5282 0%, #1e3a5f 100%);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(30, 58, 95, 0.3);
}

/* ========================================
   CASE STUDIES GRID
   ======================================== */
.case-studies-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin: 40px 0 60px 0;
}

.case-study-card {
    background: #fff;
    border: 1px solid #e2e8f0;
    border-radius: 10px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.case-study-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(30, 58, 95, 0.15);
    border-color: #4a90e2;
}

.case-study-card img {
    width: 100%;
    height: 250px;
    object-fit: cover;
}

.case-study-content {
    padding: 25px;
}

.case-study-content h3 {
    font-size: 22px !important;
    color: #1e3a5f !important;
    margin-bottom: 15px;
}

.case-study-content p {
    color: #4a5568;
    font-size: 15px !important;
    line-height: 1.7;
    margin-bottom: 20px;
}

.case-study-content .btn-primary {
    display: inline-block;
    padding: 10px 20px;
    background: linear-gradient(135deg, #1e3a5f 0%, #2d5282 100%);
    color: #fff !important;
    text-decoration: none;
    border-radius: 5px;
    font-size: 14px !important;
    font-weight: 600;
    transition: all 0.3s ease;
    margin-bottom: 10px;
}

.case-study-content .btn-primary:hover {
    background: linear-gradient(135deg, #2d5282 0%, #1e3a5f 100%);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(30, 58, 95, 0.3);
}

/* ========================================
   BLOG POSTS GRID
   ======================================== */
.blog-posts-grid {
    display: flex;
    flex-direction: column;
    gap: 30px;
    margin: 40px 0 60px 0;
}

.blog-post-card {
    display: flex;
    flex-direction: row;
    background: #fff;
    border: 1px solid #e2e8f0;
    border-radius: 10px;
    overflow: hidden;
    transition: all 0.3s ease;
    margin-bottom: 20px;
}

.blog-post-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(30, 58, 95, 0.15);
    border-color: #4a90e2;
}

.blog-post-card img {
    width: 280px;
    min-width: 280px;
    height: 220px;
    object-fit: cover;
    flex-shrink: 0;
}

.blog-post-content {
    padding: 25px 30px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    flex: 1;
}

.blog-date {
    display: block;
    font-size: 13px !important;
    color: #718096;
    margin-bottom: 10px;
    font-weight: 500;
}

.blog-post-content h3 {
    font-size: 20px !important;
    color: #1e3a5f !important;
    margin-bottom: 15px;
    line-height: 1.3;
}

.blog-post-content p {
    color: #4a5568;
    font-size: 15px !important;
    line-height: 1.7;
    margin-bottom: 20px;
}

.blog-post-content .btn-primary {
    display: inline-block;
    padding: 10px 20px;
    background: linear-gradient(135deg, #1e3a5f 0%, #2d5282 100%);
    color: #fff !important;
    text-decoration: none;
    border-radius: 5px;
    font-size: 14px !important;
    font-weight: 600;
    transition: all 0.3s ease;
    align-self: flex-start;
}

.blog-post-content .btn-primary:hover {
    background: linear-gradient(135deg, #2d5282 0%, #1e3a5f 100%);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(30, 58, 95, 0.3);
}

/* ========================================
   RESPONSIVE ADJUSTMENTS
   ======================================== */
@media (max-width: 992px) {
    .product-categories-grid,
    .case-studies-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .blog-post-card {
        flex-direction: column;
    }
    
    .blog-post-card img {
        width: 100%;
        min-width: 100%;
        height: 200px;
    }
}

@media (max-width: 768px) {
    .product-categories-grid,
    .case-studies-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .product-category-card img,
    .case-study-card img,
    .blog-post-card img {
        height: 180px;
    }
    
    .blog-post-content {
        padding: 20px;
    }
}

/* ========================================
   UPDATED LAYOUT STYLES (2026-06-23)
   ======================================== */

/* Products Grid - 2 columns fixed */
.product-categories-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin: 40px 0 60px 0;
}

.product-category-card .btn-primary {
    display: block;
    margin: 20px;
    margin-bottom: 25px;
    text-align: center;
    padding: 12px 20px;
    background: linear-gradient(135deg, #1e3a5f 0%, #2d5282 100%);
    color: #fff !important;
    text-decoration: none;
    border-radius: 5px;
    font-size: 14px !important;
    font-weight: 600;
    transition: all 0.3s ease;
}

/* Case Studies Grid - 2 columns */
.case-studies-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin: 40px 0 60px 0;
}

.case-study-card {
    margin-bottom: 20px;
}

.case-study-content .btn-primary {
    margin-bottom: 10px;
}

/* Blog Posts - Left image, right content layout */
.blog-posts-grid {
    display: flex;
    flex-direction: column;
    gap: 30px;
    margin: 40px 0 60px 0;
}

.blog-post-card {
    display: flex;
    flex-direction: row;
    background: #fff;
    border: 1px solid #e2e8f0;
    border-radius: 10px;
    overflow: hidden;
    transition: all 0.3s ease;
    margin-bottom: 20px;
}

.blog-post-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(30, 58, 95, 0.15);
    border-color: #4a90e2;
}

.blog-post-card img {
    width: 280px;
    min-width: 280px;
    height: 220px;
    object-fit: cover;
    flex-shrink: 0;
}

.blog-post-content {
    padding: 25px 30px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    flex: 1;
}

.blog-date {
    display: block;
    font-size: 13px !important;
    color: #718096;
    margin-bottom: 10px;
    font-weight: 500;
}

.blog-post-content h3 {
    font-size: 22px !important;
    color: #1e3a5f !important;
    margin-bottom: 15px;
    line-height: 1.3;
}

.blog-post-content p {
    color: #4a5568;
    font-size: 15px !important;
    line-height: 1.7;
    margin-bottom: 20px;
}

.blog-post-content .btn-primary {
    display: inline-block;
    padding: 10px 20px;
    background: linear-gradient(135deg, #1e3a5f 0%, #2d5282 100%);
    color: #fff !important;
    text-decoration: none;
    border-radius: 5px;
    font-size: 14px !important;
    font-weight: 600;
    transition: all 0.3s ease;
    align-self: flex-start;
}

.blog-post-content .btn-primary:hover {
    background: linear-gradient(135deg, #2d5282 0%, #1e3a5f 100%);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(30, 58, 95, 0.3);
}

/* Capabilities Grid - 2 columns */
.capabilities-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin: 40px 0 60px 0;
}

.capability-card {
    background: #fff;
    border: 1px solid #e2e8f0;
    border-radius: 10px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.capability-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(30, 58, 95, 0.15);
    border-color: #4a90e2;
}

.capability-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.capability-content {
    padding: 25px;
}

.capability-content h3 {
    font-size: 20px !important;
    color: #1e3a5f !important;
    margin-bottom: 15px;
}

.capability-content p {
    color: #4a5568;
    font-size: 15px !important;
    line-height: 1.6;
    margin-bottom: 15px;
}

.capability-content ul {
    margin-bottom: 20px;
    padding-left: 20px;
}

.capability-content ul li {
    color: #4a5568;
    font-size: 14px !important;
    line-height: 1.6;
    margin-bottom: 8px;
}

.capability-content .btn-primary {
    display: inline-block;
    padding: 10px 20px;
    background: linear-gradient(135deg, #1e3a5f 0%, #2d5282 100%);
    color: #fff !important;
    text-decoration: none;
    border-radius: 5px;
    font-size: 14px !important;
    font-weight: 600;
    transition: all 0.3s ease;
    margin-top: 10px;
}

.capability-content .btn-primary:hover {
    background: linear-gradient(135deg, #2d5282 0%, #1e3a5f 100%);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(30, 58, 95, 0.3);
}

/* Responsive adjustments */
@media (max-width: 992px) {
    .product-categories-grid,
    .capabilities-grid {
        grid-template-columns: 1fr;
    }
    
    .case-studies-grid {
        grid-template-columns: 1fr;
    }
    
    .blog-post-card {
        flex-direction: column;
    }
    
    .blog-post-card img {
        width: 100%;
        min-width: 100%;
        height: 200px;
    }
}

@media (max-width: 768px) {
    .product-categories-grid,
    .case-studies-grid,
    .capabilities-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .blog-post-card img {
        height: 180px;
    }
    
    .blog-post-content {
        padding: 20px;
    }
}

/* ========================================
   WOOCOMMERCE SHOP STYLES
   ======================================== */

/* Shop Hero */
.shop-hero {
    background: linear-gradient(135deg, #1e3a5f 0%, #2d5282 100%);
    color: #fff;
    padding: 60px 0;
    text-align: center;
}

.shop-title {
    font-size: 42px !important;
    font-weight: 700;
    margin-bottom: 20px;
    color: #fff !important;
}

.shop-description {
    font-size: 18px;
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.6;
    opacity: 0.95;
}

/* Category Filter */
.category-filter {
    padding: 60px 0;
    background: #f8fafc;
}

.category-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.category-card {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
}

.category-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 24px rgba(0,0,0,0.12);
}

.category-image {
    aspect-ratio: 16/9;
    overflow: hidden;
}

.category-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

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

.category-content {
    padding: 20px;
    display: flex;
    flex-direction: column;
    min-height: 120px;
}

.category-title {
    font-size: 18px !important;
    font-weight: 600;
    margin-bottom: 15px;
    color: #1e3a5f !important;
}

.category-title a {
    color: #1e3a5f;
    text-decoration: none;
}

.category-btn {
    margin-top: auto;
    display: block;
    text-align: center;
    padding: 10px 20px;
    background: #1e3a5f;
    color: #fff !important;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.category-btn:hover {
    background: #2d5282;
}

/* Products Section */
.products-section {
    padding: 60px 0;
}

.section-title {
    font-size: 32px !important;
    font-weight: 700;
    margin-bottom: 40px;
    color: #1e3a5f !important;
    text-align: center;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 30px;
}

.product-card {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 24px rgba(0,0,0,0.12);
}

.product-image {
    aspect-ratio: 1;
    overflow: hidden;
    background: #f8fafc;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

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

.product-content {
    padding: 20px;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.product-title {
    font-size: 18px !important;
    font-weight: 600;
    margin-bottom: 10px;
    color: #1e3a5f !important;
    line-height: 1.4;
}

.product-title a {
    color: #1e3a5f;
    text-decoration: none;
}

.product-short-desc {
    font-size: 14px;
    color: #64748b;
    line-height: 1.6;
    margin-bottom: 15px;
    flex: 1;
}

.product-btn {
    margin-top: auto;
    display: block;
    text-align: center;
    padding: 10px 20px;
    background: #1e3a5f;
    color: #fff !important;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.product-btn:hover {
    background: #2d5282;
}

/* Shop CTA */
.shop-cta {
    background: linear-gradient(135deg, #1e3a5f 0%, #2d5282 100%);
    color: #fff;
    padding: 80px 0;
    text-align: center;
}

.cta-content h2 {
    font-size: 36px !important;
    font-weight: 700;
    margin-bottom: 20px;
    color: #fff !important;
}

.cta-content p {
    font-size: 18px;
    margin-bottom: 30px;
    opacity: 0.95;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-whatsapp {
    display: inline-block;
    padding: 14px 32px;
    background: #25D366;
    color: #fff !important;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-whatsapp:hover {
    background: #20b858;
    transform: translateY(-2px);
}

/* Single Product Page */
.single-product-page {
    padding: 40px 0;
}

.product-hero {
    padding: 40px 0;
}

.product-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

.product-gallery {
    position: sticky;
    top: 100px;
}

.main-image {
    border-radius: 12px;
    overflow: hidden;
    background: #f8fafc;
    margin-bottom: 20px;
}

.main-image img {
    width: 100%;
    height: auto;
    display: block;
}

.thumbnail-gallery {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(100px, 1fr));
    gap: 10px;
}

.thumbnail-img {
    width: 100%;
    aspect-ratio: 1;
    object-fit: cover;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.thumbnail-img:hover {
    border-color: #1e3a5f;
}

.product-info {
    padding: 20px 0;
}

.product-categories {
    margin-bottom: 20px;
}

.category-tag {
    display: inline-block;
    padding: 6px 16px;
    background: #e0e7ff;
    color: #1e3a5f;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 500;
    text-decoration: none;
    margin-right: 10px;
    margin-bottom: 10px;
}

.product-title {
    font-size: 36px !important;
    font-weight: 700;
    margin-bottom: 20px;
    color: #1e3a5f !important;
    line-height: 1.3;
}

.product-short-description {
    font-size: 16px;
    line-height: 1.8;
    color: #475569;
    margin-bottom: 30px;
}

.product-actions {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.product-details {
    padding: 60px 0;
    background: #f8fafc;
}

.details-layout {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 60px;
}

.product-description {
    font-size: 16px;
    line-height: 1.8;
    color: #475569;
}

.product-description h2,
.product-description h3 {
    color: #1e3a5f !important;
    margin-top: 30px;
    margin-bottom: 15px;
}

.product-description ul,
.product-description ol {
    margin: 20px 0;
    padding-left: 30px;
}

.product-description li {
    margin-bottom: 10px;
}

.product-meta {
    margin-top: 30px;
    padding: 20px;
    background: #fff;
    border-radius: 8px;
    border-left: 4px solid #1e3a5f;
}

.sidebar-card {
    background: #fff;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
    position: sticky;
    top: 100px;
}

.sidebar-card h3 {
    font-size: 24px !important;
    font-weight: 600;
    margin-bottom: 15px;
    color: #1e3a5f !important;
}

.sidebar-card p {
    font-size: 15px;
    line-height: 1.6;
    color: #64748b;
    margin-bottom: 20px;
}

.related-products {
    padding: 60px 0;
}

/* Responsive */
@media (max-width: 992px) {
    .product-layout,
    .details-layout {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .product-gallery {
        position: static;
    }
    
    .sidebar-card {
        position: static;
    }
}

@media (max-width: 768px) {
    .shop-title {
        font-size: 32px !important;
    }
    
    .category-grid,
    .products-grid {
        grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
        gap: 20px;
    }
    
    .product-title {
        font-size: 28px !important;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .btn-primary,
    .btn-whatsapp {
        width: 100%;
        max-width: 300px;
    }
}
