/* Global Styles - Blue Style 1: Deep Blue Modern */
:root {
    --primary: #1A365D;
    --accent: #2A4365;
    --background: #FFFFFF;
    --card-bg: #F7FAFC;
    --text: #2D3748;
    --text-light: #718096;
    --font: 'Inter', sans-serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font);
    background-color: var(--background);
    color: var(--text);
    line-height: 1.6;
    padding-top: 80px !important;
}

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

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 1.5rem;
    letter-spacing: -0.025em;
    color: var(--primary);
}

h1 {
    font-size: 3rem;
    font-weight: 800;
}

h2 {
    font-size: 2.5rem;
    font-weight: 700;
}

h3 {
    font-size: 1.5rem;
    font-weight: 600;
}

p {
    margin-bottom: 1.5rem;
    line-height: 1.7;
    color: var(--text-light);
}

/* Buttons */
.btn-primary {
    display: inline-block;
    background-color: #334155;
    color: white;
    padding: 16px 32px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    border: none;
    box-shadow: 0 4px 12px rgba(51, 65, 85, 0.3);
    position: relative;
    overflow: hidden;
    font-size: 1rem;
    text-align: center;
}

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

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

.btn-primary:hover {
    background-color: #475569;
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 8px 24px rgba(51, 65, 85, 0.4);
}

.btn-secondary {
    display: inline-block;
    background-color: rgba(255, 255, 255, 0.1);
    color: white;
    padding: 16px 32px;
    border: 2px solid white;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    font-size: 1rem;
    text-align: center;
    backdrop-filter: blur(5px);
}

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

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

.btn-secondary:hover {
    background-color: white;
    color: #334155;
    box-shadow: 0 6px 20px rgba(255, 255, 255, 0.3);
    transform: translateY(-3px);
}

.btn-link {
    display: inline-block;
    color: #64748B;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    position: relative;
    padding-bottom: 4px;
    font-size: 1rem;
}

.btn-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: var(--primary);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.btn-link:hover::after {
    transform: scaleX(1);
}

.btn-link:hover {
    color: var(--primary);
    transform: translateY(-2px);
    text-shadow: 0 0 12px rgba(10, 47, 68, 0.3);
}

.full-width {
    width: 100%;
}

/* Navigation */
.navbar {
    background-color: var(--background);
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    border-bottom: 1px solid #E0E0E0;
    position: fixed !important;
    top: 0 !important;
    left: 0 !important;
    right: 0 !important;
    z-index: 9999 !important;
    height: 80px;
    display: flex;
    align-items: center;
    transition: none !important;
}

/* Navbar toggle for mobile */
.navbar-toggle {
    display: none;
    cursor: pointer;
    padding: 10px;
    z-index: 10000;
}

.navbar-toggle span {
    display: block;
    width: 25px;
    height: 3px;
    margin: 5px 0;
    background-color: var(--primary);
    transition: all 0.3s ease;
}

/* Navbar scroll effect */
.navbar-scrolled {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15) !important;
}

.navbar-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.navbar-toggle.active span:nth-child(2) {
    opacity: 0;
}

.navbar-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 20px;
}

.navbar-brand {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary);
}

.navbar-brand a {
    color: var(--primary);
    text-decoration: none;
    transition: all 0.3s ease;
}

.navbar-brand a:hover {
    color: var(--accent);
}

.navbar-menu ul {
    display: flex;
    list-style: none;
    gap: 1rem;
}

.navbar-menu a {
    color: var(--primary);
    text-decoration: none;
    padding: 0.5rem 1rem;
    border-radius: 4px;
    transition: all 0.3s ease;
    position: relative;
    font-weight: 700;
}

.navbar-menu a:hover {
    color: var(--accent);
    background-color: var(--card-bg);
}

/* Dropdown */
.dropdown {
    position: relative;
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background-color: var(--background);
    min-width: 200px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    border-radius: 4px;
    margin-top: 0.5rem;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 1001;
    display: block !important;
    border: 1px solid #E0E0E0;
}

.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-menu li {
    margin: 0;
}

.dropdown-menu a {
    display: block;
    padding: 0.75rem 1rem;
    border-radius: 0;
    border-bottom: 1px solid #F0F0F0;
}

.dropdown-menu a:last-child {
    border-bottom: none;
}

.dropdown-menu a:hover {
    color: var(--accent);
    background-color: var(--card-bg);
}

/* Dropdown toggle container */
.dropdown-toggle-container {
    position: relative;
}

/* Dropdown toggle button */
.dropdown-toggle-btn {
    background: none;
    border: none;
    color: var(--primary);
    font-size: 0.8rem;
    cursor: pointer;
    padding: 0.5rem;
    display: none;
    transition: all 0.3s ease;
    border-radius: 4px;
}

.dropdown-toggle-btn:hover {
    background-color: rgba(0, 0, 0, 0.05);
}

/* Mobile-specific styles */
@media (max-width: 768px) {
    .dropdown-toggle-container {
        display: flex;
        align-items: center;
        justify-content: space-between;
        width: 100%;
    }
    
    .navbar-menu.active ul li.dropdown .dropdown-menu {
        opacity: 0;
        visibility: hidden;
        max-height: 0;
        overflow: hidden;
        transition: all 0.3s ease;
        position: static;
        box-shadow: none;
        border: none;
        margin-top: 0;
    }
    
    .navbar-menu.active ul li.dropdown.active .dropdown-menu {
        opacity: 1;
        visibility: visible;
        max-height: 500px;
    }
    
    .navbar-menu.active ul li.dropdown .dropdown-menu a {
        color: #666;
        font-weight: 400;
        padding-left: 1.5rem;
    }
    
    .navbar-menu.active ul li.dropdown .dropdown-menu a:hover {
        color: var(--accent);
        background-color: var(--card-bg);
    }
    
    .dropdown-toggle-btn {
        display: block;
        font-size: 0.7rem;
        padding: 0.3rem 0.5rem;
        color: var(--primary);
    }
    
    .dropdown-toggle-btn.active {
        transform: rotate(180deg);
        transition: transform 0.3s ease;
        color: var(--accent);
    }
    
    .dropdown-toggle-btn:hover {
        background-color: rgba(0, 0, 0, 0.05);
    }
}

.navbar-right {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.phone {
    font-weight: 600;
    color: var(--primary);
}

/* Hero Section */
.hero {
    background-color: var(--background);
    background-image: url('imgs/dc.avif');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    color: white;
    padding: 150px 0 120px;
    position: relative;
    text-align: center;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    z-index: 1;
}

.hero .container {
    position: relative;
    z-index: 2;
    max-width: 1000px;
    padding: 0 20px;
}

.hero h1 {
    font-size: 2.8rem;
    margin-bottom: 1.5rem;
    color: white;
    font-weight: 700;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
    letter-spacing: -0.5px;
    line-height: 1.2;
    text-align: center;
}

@media (max-width: 1200px) {
    .hero h1 {
        font-size: 2.4rem;
    }
}

@media (max-width: 992px) {
    .hero h1 {
        font-size: 2.1rem;
    }
}

@media (max-width: 768px) {
    .hero h1 {
        font-size: 1.8rem;
    }
}

@media (max-width: 576px) {
    .hero h1 {
        font-size: 1.5rem;
    }
}

.hero-subtitle {
    font-size: 1.25rem;
    margin-bottom: 2.5rem;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 600;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.5);
    letter-spacing: 1px;
    text-transform: uppercase;
    text-align: center;
}

.hero p {
    font-size: 1.1rem;
    margin-bottom: 3.5rem;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
    color: rgba(255, 255, 255, 0.9);
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.5);
    line-height: 1.8;
    text-align: center;
    letter-spacing: 0.5px;
    word-wrap: break-word;
    hyphens: none;
}

@media (max-width: 1200px) {
    .hero p {
        max-width: 800px;
    }
}

@media (max-width: 992px) {
    .hero p {
        max-width: 700px;
    }
}

@media (max-width: 768px) {
    .hero p {
        max-width: 100%;
    }
}

.hero-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 2rem;
}

.hero-buttons .btn-primary, .hero-buttons .btn-secondary {
    padding: 18px 36px;
    font-size: 1.1rem;
    font-weight: 600;
    letter-spacing: 0.5px;
}

/* xFusion Server Portfolio Section */
.xfusion-portfolio {
    padding: 80px 0;
    background-color: var(--primary);
    color: #FFFFFF;
    position: relative;
}

.xfusion-portfolio h2 {
    text-align: center;
    margin-bottom: 2rem;
    color: #FFFFFF;
    font-size: 2.2rem;
    font-weight: 700;
}

.portfolio-description {
    text-align: center;
    max-width: 900px;
    margin: 0 auto 3rem;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.7;
    font-size: 1.1rem;
}

.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.portfolio-card {
    background-color: rgba(255, 255, 255, 0.1);
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.2);
    text-align: center;
    height: 100%;
    min-height: 450px;
    display: flex;
    flex-direction: column;
}

.portfolio-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
    background-color: rgba(255, 255, 255, 0.15);
}

.portfolio-card-link {
    text-decoration: none;
    color: inherit;
    display: block;
}

.portfolio-card-link:hover .portfolio-card {
    transform: translateY(-8px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
    background-color: rgba(255, 255, 255, 0.15);
}

.portfolio-image-adaptive {
    margin-bottom: 1.5rem;
    overflow: hidden !important;
    border-radius: 4px !important;
    border: 1px solid transparent;
    height: 150px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: transparent;
    -webkit-border-radius: 4px !important;
    -moz-border-radius: 4px !important;
    -ms-border-radius: 4px !important;
    position: relative;
    z-index: 1;
}

.portfolio-image-adaptive img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    border-radius: 4px !important;
    -webkit-border-radius: 4px !important;
    -moz-border-radius: 4px !important;
    -ms-border-radius: 4px !important;
}

.portfolio-card .portfolio-image {
    margin-bottom: 1.5rem;
    overflow: hidden !important;
    border-radius: 8px !important;
    border: 1px solid #334155 !important;
    height: 150px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    background-color: #f0f0f0 !important;
    position: relative !important;
    z-index: 1 !important;
    box-sizing: border-box !important;
}

.portfolio-grid .portfolio-card-link:nth-child(1) .portfolio-card .portfolio-image,
.portfolio-grid .portfolio-card-link:nth-child(2) .portfolio-card .portfolio-image {
    background-color: transparent !important;
    border: 1px solid transparent !important;
}

.portfolio-grid .portfolio-card-link:nth-child(1) .portfolio-card .portfolio-image img,
.portfolio-grid .portfolio-card-link:nth-child(2) .portfolio-card .portfolio-image img {
    width: 100% !important;
    height: 100% !important;
    object-fit: contain !important;
}

.portfolio-card .portfolio-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
    border-radius: 8px !important;
    -webkit-border-radius: 8px !important;
    -moz-border-radius: 8px !important;
    -ms-border-radius: 8px !important;
    box-sizing: border-box;
    max-width: 100%;
    max-height: 100%;
}

.portfolio-card .portfolio-image:hover img {
    transform: scale(1.05);
    border-radius: 8px !important;
    -webkit-border-radius: 8px !important;
    -moz-border-radius: 8px !important;
    -ms-border-radius: 8px !important;
}

.portfolio-card h3 {
    color: #FFFFFF;
    margin-bottom: 0.5rem;
    font-size: 1.3rem;
    font-weight: 700;
}

.portfolio-model {
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.95rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.xfusion-portfolio .portfolio-features {
    list-style-type: disc;
    padding-left: 1rem;
    margin-bottom: 0;
    text-align: left;
}

.xfusion-portfolio .portfolio-features li {
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.4;
    margin-bottom: 0.3rem;
    font-size: 0.95rem;
}

.xfusion-portfolio .portfolio-features li:last-child {
    margin-bottom: 0;
}

.portfolio-note {
    background-color: rgba(255, 255, 255, 0.1);
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    margin-top: 3rem;
    text-align: center;
}

.portfolio-note p {
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.7;
    margin-bottom: 1rem;
}

.portfolio-note p:last-child {
    margin-bottom: 0;
}

.portfolio-note .call-to-action {
    font-weight: 700;
    color: #FFFFFF;
    font-size: 1.2rem;
    text-align: center;
    padding: 1rem;
    background-color: rgba(255, 255, 255, 0.15);
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    margin-top: 1rem;
}

/* Core Values Section */
.core-values {
    padding: 80px 0;
    background-color: var(--background);
    position: relative;
}

.core-values h2 {
    text-align: center;
    margin-bottom: 2rem;
    color: var(--primary);
    font-size: 2.2rem;
    font-weight: 700;
}

.values-description {
    text-align: center;
    max-width: 900px;
    margin: 0 auto 3rem;
    color: var(--text-light);
    line-height: 1.7;
    font-size: 1.1rem;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.value-card {
    background-color: #E6F0F8;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    border: 1px solid rgba(30, 136, 229, 0.2);
    text-align: center;
}

.value-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 24px rgba(30, 136, 229, 0.2);
    border-color: var(--accent);
}

.value-image {
    margin-bottom: 1.5rem;
    overflow: hidden;
    border-radius: 8px;
}

.value-card h3 {
    color: var(--primary);
    margin-bottom: 1rem;
    font-size: 1.3rem;
    font-weight: 700;
}

.value-card p {
    color: var(--text-light);
    line-height: 1.6;
    text-align: left;
}

/* Core Services Section */
.core-services {
    padding: 80px 0;
    background-color: var(--background);
    position: relative;
}

.core-services h2 {
    text-align: center;
    margin-bottom: 3rem;
    color: var(--primary);
    font-size: 2.2rem;
    font-weight: 700;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.service-card {
    background-color: #E6F0F8;
    padding: 2.5rem;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    border: 1px solid rgba(30, 136, 229, 0.2);
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 24px rgba(30, 136, 229, 0.2);
    border-color: var(--accent);
}

.service-card h3 {
    color: var(--primary);
    margin-bottom: 1.5rem;
    font-size: 1.4rem;
    font-weight: 700;
}

.service-card p {
    color: var(--text-light);
    line-height: 1.7;
    margin-bottom: 0;
}

/* Value Props Section */
.value-props {
    padding: 80px 0;
    background-color: var(--background);
    position: relative;
}

.value-props h2 {
    text-align: center;
    margin-bottom: 3rem;
    color: var(--primary);
    font-size: 2.2rem;
    font-weight: 700;
}

.props-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.prop-item {
    background-color: #E6F0F8;
    padding: 2.5rem;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    border: 1px solid rgba(30, 136, 229, 0.2);
}

.prop-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 24px rgba(30, 136, 229, 0.2);
    border-color: var(--accent);
}

.prop-item h3 {
    color: var(--primary);
    margin-bottom: 1.5rem;
    font-size: 1.4rem;
    font-weight: 700;
}

.prop-item p {
    color: var(--text-light);
    line-height: 1.7;
    margin-bottom: 2rem;
}

.prop-item ul {
    list-style-type: disc;
    padding-left: 1.5rem;
    margin-bottom: 0;
}

.prop-item li {
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 0.5rem;
}

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

/* Enterprise Data Center Features Section */
.data-center-features {
    padding: 80px 0;
    background-color: var(--background);
    position: relative;
}

.data-center-features h2 {
    text-align: center;
    margin-bottom: 2rem;
    color: var(--primary);
    font-size: 2.2rem;
    font-weight: 700;
}

.features-description {
    text-align: center;
    max-width: 900px;
    margin: 0 auto 3rem;
    color: var(--text-light);
    line-height: 1.7;
    font-size: 1.1rem;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2.5rem;
    margin-top: 3rem;
}

@media (max-width: 768px) {
    .features-grid {
        grid-template-columns: 1fr;
    }
}

.feature-card {
    background-color: transparent;
    padding: 0;
    border-radius: 0;
    box-shadow: none;
    transition: none;
    border: none;
}

.feature-card:hover {
    transform: none;
    box-shadow: none;
    border-color: transparent;
}

.feature-icon {
    margin-bottom: 1rem;
    color: var(--primary);
    font-size: 1.8rem;
    display: inline-block;
}

.feature-card h3 {
    color: var(--primary);
    margin-bottom: 1rem;
    font-size: 1.25rem;
    font-weight: 700;
    display: inline-block;
    margin-left: 0.5rem;
    vertical-align: middle;
}

.feature-card p {
    color: var(--text-light);
    line-height: 1.7;
    margin-bottom: 0;
    padding-left: 2.5rem;
}

.features-cta {
    background-color: #E6F0F8;
    padding: 2.5rem;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(30, 136, 229, 0.2);
    margin-top: 3rem;
    text-align: left;
    position: relative;
}

.features-cta p {
    color: var(--text-light);
    line-height: 1.7;
    margin-bottom: 0;
    font-size: 1.1rem;
    position: relative;
    padding-left: 2rem;
}

.features-cta p strong {
    display: block;
    margin-bottom: 1rem;
    font-weight: 600;
    color: var(--primary);
}

.features-cta .nowrap {
    white-space: nowrap;
}

.features-cta p::before {
    content: '🔍';
    position: absolute;
    left: 0;
    top: 0;
    font-size: 1.2rem;
    color: var(--primary);
}

/* Server Platforms Section */
.server-platforms {
    padding: 80px 0;
    background-color: var(--primary);
    color: #FFFFFF;
    position: relative;
}

.server-platforms h2 {
    color: #FFFFFF;
    text-align: center;
    margin-bottom: 2rem;
    font-size: 2.2rem;
    font-weight: 700;
}

.platforms-description {
    text-align: center;
    max-width: 900px;
    margin: 0 auto 3rem;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.7;
    font-size: 1.1rem;
}

.platforms-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.platform-card {
    background-color: rgba(255, 255, 255, 0.1);
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.2);
    text-align: center;
}

.platform-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
    background-color: rgba(255, 255, 255, 0.15);
}

.platform-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 0;
}

.platform-card h3 {
    color: #FFFFFF;
    margin-bottom: 1rem;
    font-size: 1.3rem;
    font-weight: 700;
}

.platform-card p {
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
    text-align: left;
}

.cta-center {
    text-align: center;
    margin-top: 3rem;
}

.cta-center .btn-secondary {
    background-color: transparent;
    color: #FFFFFF;
    border-color: #FFFFFF;
}

.cta-center .btn-secondary:hover {
    background-color: #FFFFFF;
    color: var(--primary);
}

/* AI Appliances Section */
.ai-appliances {
    padding: 60px 0;
    background-color: var(--background);
    position: relative;
}

.ai-appliances h2 {
    text-align: center;
    margin-bottom: 1.5rem;
    color: var(--primary);
    font-size: 2rem;
    font-weight: 700;
}

.appliances-description {
    text-align: center;
    max-width: 900px;
    margin: 0 auto 2rem;
    color: var(--text-light);
    line-height: 1.7;
    font-size: 1rem;
}

.appliances-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
}

.appliance-card {
    background-color: #E6F0F8;
    padding: 1.5rem;
    border-radius: 6px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    border: 1px solid rgba(30, 136, 229, 0.2);
    text-align: center;
}

.appliance-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 4px 12px rgba(30, 136, 229, 0.15);
    border-color: var(--accent);
}

.appliance-icon {
    margin-bottom: 1rem;
    color: var(--primary);
    font-size: 1.5rem;
    display: inline-block;
}

.appliance-card h3 {
    color: var(--primary);
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
    font-weight: 700;
    line-height: 1.3;
}

.appliance-card p {
    color: var(--text-light);
    line-height: 1.5;
    margin-bottom: 0;
    font-size: 0.9rem;
}

.appliances-software {
    background-color: #E6F0F8;
    padding: 1.5rem;
    border-radius: 6px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(30, 136, 229, 0.2);
    margin-top: 2rem;
}

.appliances-software h3 {
    color: var(--primary);
    margin-bottom: 1rem;
    font-size: 1.1rem;
    font-weight: 700;
}

.appliances-software p {
    color: var(--text-light);
    line-height: 1.5;
    margin-bottom: 0;
    font-size: 0.9rem;
}

.appliance-card .btn-link {
    margin-top: 0.5rem;
    display: inline-block;
    font-size: 1rem;
    color: var(--accent);
}

/* About KINGBALANCE Section */
.about-kingbalance {
    padding: 60px 0;
    background-color: var(--background);
    position: relative;
    scroll-margin-top: 100px;
}

.about-kingbalance h2 {
    text-align: center;
    margin-bottom: 0.5rem;
    color: var(--primary);
    font-size: 2.2rem;
    font-weight: 700;
}

.about-subtitle {
    text-align: center;
    margin-bottom: 2rem;
    color: var(--text-light);
    font-size: 1.1rem;
    font-weight: 500;
}

.about-description {
    max-width: 1000px;
    margin: 0 auto 3rem;
    text-align: left;
}

.about-description p {
    color: var(--text-light);
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.about-description p:first-child {
    text-align: left;
    font-size: 1.1rem;
    margin-bottom: 2.5rem;
}

.about-description h3 {
    color: var(--primary);
    font-size: 1.4rem;
    font-weight: 700;
    margin-top: 2rem;
    margin-bottom: 1rem;
    text-align: left;
}

.about-description h3:first-of-type {
    margin-top: 0;
}

.about-description p:last-child {
    margin-bottom: 0;
}

.process-flow {
    margin-top: 3rem;
    position: relative;
    min-height: 400px;
    display: flex;
    justify-content: space-between;
}

.process-line {
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    height: 2px;
    background-color: #E0E0E0;
    transform: translateY(-50%);
    z-index: 1;
}

.process-item {
    flex: 1;
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.process-item-1, .process-item-3 {
    flex-direction: column;
}

.process-item-2, .process-item-4 {
    flex-direction: column-reverse;
}

.step-content {
    background-color: #E6F0F8;
    padding: 1.5rem;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(30, 136, 229, 0.2);
    width: 240px;
    margin: 1rem 0;
    min-height: 150px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.step-content h3 {
    color: var(--primary);
    margin-bottom: 0.8rem;
    font-size: 1.1rem;
    font-weight: 700;
}

.step-content p {
    color: var(--text-light);
    line-height: 1.5;
    margin-bottom: 0;
    font-size: 0.9rem;
}

.step-number {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 40px;
    height: 40px;
    background-color: #E6F0F8;
    color: var(--primary);
    border-radius: 50%;
    font-weight: 700;
    border: 1px solid rgba(30, 136, 229, 0.2);
    position: relative;
    z-index: 3;
}

/* Server Subpage Styles */
.server-subpage {
    padding: 60px 0 10px;
    background-color: var(--background);
    scroll-margin-top: 80px;
}

.server-subpage h1 {
    color: var(--primary);
    margin-bottom: 1.5rem;
    text-align: center;
}

.server-subpage p {
    color: var(--text-light);
    line-height: 1.6;
    margin-bottom: 3rem;
    text-align: center;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
}

.model-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-bottom: 4rem;
}

.model-card {
    border: 1px solid #E0E0E0;
    border-radius: 8px;
    padding: 1.5rem;
    text-align: left;
    display: flex;
    flex-direction: column;
    height: 100%;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.model-image {
    width: 100%;
    height: 200px;
    overflow: hidden;
    border-radius: 6px;
    margin-bottom: 1rem;
    background-color: transparent;
    display: flex;
    align-items: center;
    justify-content: center;
}

.model-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: transform 0.3s ease;
    background-color: transparent;
}

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

.model-card h3 {
    color: var(--primary);
    margin-bottom: 1rem;
    font-size: 1.1rem;
    font-weight: 700;
    flex-shrink: 0;
}

.model-card p {
    color: var(--text-light);
    line-height: 1.5;
    margin-bottom: 0;
    text-align: left;
    font-size: 0.9rem;
    flex-grow: 1;
}

.accessories {
    margin-bottom: 4rem;
}

.accessories h3 {
    color: var(--primary);
    margin-bottom: 2rem;
    font-size: 1.2rem;
    font-weight: 700;
}

.accessories-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 3rem;
}

.accessories ul {
    list-style: none;
    padding: 0;
}

.accessories li {
    color: var(--text-light);
    line-height: 1.6;
    margin-bottom: 0.5rem;
    position: relative;
    padding-left: 1.5rem;
}

.accessories li::before {
    content: "•";
    color: var(--primary);
    font-weight: bold;
    position: absolute;
    left: 0;
}

.cta-center {
    text-align: center;
    margin-top: 4rem;
}



/* Server Comparison Section */
.server-comparison {
    padding: 80px 0;
    background-color: var(--background);
    border-top: 1px solid #E0E0E0;
    scroll-margin-top: 50px;
}

.server-comparison h2 {
    color: var(--primary);
    margin-bottom: 1rem;
    text-align: center;
}

.server-comparison p {
    color: var(--text-light);
    line-height: 1.6;
    margin-bottom: 3rem;
    text-align: center;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.tab-container {
    max-width: 1400px;
    margin: 0 auto;
}

.tabs {
    display: flex;
    justify-content: center;
    margin-bottom: 2rem;
    border-bottom: 1px solid #E0E0E0;
}

.tab-btn {
    background: none;
    border: none;
    padding: 1rem 2rem;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-light);
    cursor: pointer;
    transition: all 0.3s ease;
    border-bottom: 3px solid transparent;
}

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

.tab-btn.active {
    color: var(--primary);
    border-bottom-color: var(--primary);
}

.tab-content {
    background-color: #FFFFFF;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    overflow: hidden;
}

.tab-pane {
    display: none;
    padding: 2rem;
}

.tab-pane.active {
    display: block;
}

.comparison-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.9rem;
}

.comparison-table th {
    background-color: var(--primary);
    color: #FFFFFF;
    font-weight: 700;
    padding: 1rem;
    text-align: left;
    border-bottom: 2px solid #E0E0E0;
}

.comparison-table td {
    padding: 0.8rem 1rem;
    border-bottom: 1px solid #E0E0E0;
    color: var(--text-light);
}

.comparison-table tr:nth-child(even) {
    background-color: #F7FAFC;
}

.comparison-table tr:hover {
    background-color: #F0F4F8;
}

.table-note {
    margin-top: 2rem;
    font-size: 0.9rem;
    color: var(--text-light);
    font-style: italic;
}

/* Storage & Networking Section */
.storage-networking-section {
    padding: 80px 0;
    background-color: var(--background);
    border-top: 1px solid #E0E0E0;
    scroll-margin-top: 50px;
}

.storage-networking-section h1 {
    color: var(--primary);
    margin-bottom: 1.5rem;
}

/* AI Appliance Sections */
.ai-subpage {
    padding: 40px 0;
    background-color: var(--background);
    transition: all 0.5s ease-in-out;
}

.ai-subpage:hover {
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

/* Smooth scroll behavior */
html {
    scroll-behavior: smooth;
}

/* Fade-in effect for sections */
.ai-subpage {
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.8s ease-out forwards;
}

/* Animation delays for AI sections */
.ai-subpage:nth-of-type(1) { animation-delay: 0.1s; }
.ai-subpage:nth-of-type(2) { animation-delay: 0.2s; }
.ai-subpage:nth-of-type(3) { animation-delay: 0.3s; }
.ai-subpage:nth-of-type(4) { animation-delay: 0.4s; }

/* Transition effects for section elements */
.ai-subpage h1,
.ai-subpage p,
.ai-subpage .specs-table,
.ai-subpage .software-stack,
.ai-subpage .software-section {
    transition: all 0.3s ease;
}

.ai-subpage h1:hover {
    color: var(--accent);
    transform: translateY(-2px);
}

.ai-subpage .specs-table:hover,
.ai-subpage .software-stack:hover,
.ai-subpage .software-section:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

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

.ai-subpage h1 {
    color: var(--primary);
    margin-bottom: 1rem;
    text-align: center;
    font-size: 2rem;
    font-weight: 700;
    line-height: 1.2;
}

.ai-subpage p {
    color: var(--text-light);
    line-height: 1.6;
    margin-bottom: 2rem;
    text-align: center;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
    font-size: 1rem;
}

.specs-section {
    margin-bottom: 1rem;
}

.specs-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    align-items: stretch;
}

/* Two-column grid for software sections */
.software-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    align-items: stretch;
    margin-bottom: 1rem;
}

/* Responsive layout for mobile */
@media (max-width: 768px) {
    .software-grid {
        grid-template-columns: 1fr;
    }
}

/* Three-column grid for use cases */
.specs-grid:has(.use-cases-section:nth-child(3)),
.specs-grid:has(.software-section:nth-child(3)) {
    grid-template-columns: 1fr 1fr 1fr;
    gap: 0.8rem;
}

/* Software Section Style */
.software-section {
    background-color: white;
    border-radius: 12px;
    padding: 1rem 1.2rem 1rem;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    text-align: center;
    border-top: 3px solid var(--primary);
    min-height: auto;
    height: auto;
}

.software-section h3 {
    color: var(--primary);
    font-size: 1.2rem;
    margin-bottom: 1rem;
    position: relative;
    display: inline-block;
}

.software-section h3::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 2px;
    background-color: var(--primary);
}

.software-section p {
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
    font-size: 0.9rem;
    line-height: 1.2;
    margin-bottom: 0 !important;
    padding-bottom: 0 !important;
    color: var(--text-light);
    font-weight: 400;
}

.specs-table {
    background-color: white;
    border-radius: 12px;
    padding: 1.8rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    border: 1px solid #F0F0F0;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.specs-table:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

.specs-table h2 {
    color: var(--primary);
    margin-bottom: 1.5rem;
    font-size: 1.3rem;
    font-weight: 700;
    text-align: center;
}

.specs-table table {
    width: 100%;
    border-collapse: collapse;
}

.specs-table th,
.specs-table td {
    padding: 0.8rem 0.9rem;
    text-align: left;
    border-bottom: 1px solid #F0F0F0;
}

.specs-table th {
    background-color: var(--card-bg);
    font-weight: 700;
    color: var(--primary);
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.specs-table td {
    color: var(--text-light);
    font-size: 0.9rem;
}

.specs-table tr:last-child th,
.specs-table tr:last-child td {
    border-bottom: none;
}

.specs-table tr:nth-child(even) {
    background-color: var(--card-bg);
}

.software-stack {
    background-color: white;
    border-radius: 12px;
    padding: 1.8rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    border: 1px solid #F0F0F0;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.software-stack:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

.software-stack h2 {
    color: var(--primary);
    margin-bottom: 1.5rem;
    font-size: 1.3rem;
    font-weight: 700;
    text-align: center;
}

.software-stack ul {
    list-style: none;
    padding-left: 0;
}

.software-stack li {
    margin-bottom: 0.8rem;
    color: var(--text-light);
    font-size: 0.9rem;
    padding-left: 1.5rem;
    position: relative;
}

.software-stack li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--accent);
    font-weight: bold;
}

.use-cases-section,
.upgrades-section {
    margin-bottom: 1.5rem;
    text-align: center;
    background: linear-gradient(135deg, #f8fafc 0%, #ffffff 100%);
    border-radius: 12px;
    padding: 1rem 1.5rem 0;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    border: 1px solid #e2e8f0;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
    max-width: 1100px;
    margin-left: auto;
    margin-right: auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    min-height: unset;
    height: auto;
}

.use-cases-section:hover,
.upgrades-section:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
}

.use-cases-section::before,
.upgrades-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, var(--primary) 0%, var(--accent) 100%);
}

.use-cases-section h3,
.upgrades-section h3 {
    color: var(--primary);
    margin-bottom: 0.8rem;
    font-size: 1.1rem;
    font-weight: 700;
    position: relative;
    display: inline-block;
}

.use-cases-section h3::after,
.upgrades-section h3::after {
    content: '';
    position: absolute;
    bottom: -6px;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 2px;
    background-color: var(--accent);
    border-radius: 2px;
}

.use-cases-section p,
.upgrades-section p {
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
    font-size: 0.9rem;
    line-height: 1.3;
    margin-bottom: 0;
    padding-bottom: 0;
    color: var(--text-light);
    font-weight: 400;
    display: block;
    text-align: center;
    flex-grow: 0;
    flex-shrink: 1;
    flex-basis: auto;
    height: auto;
    min-height: unset;
    white-space: normal;
    word-wrap: break-word;
}

.use-cases-section h3,
.upgrades-section h3 {
    color: var(--primary);
    margin-bottom: 0.6rem;
    font-size: 1.1rem;
    font-weight: 700;
    position: relative;
    display: inline-block;
    margin-top: 0;
    padding-top: 0;
}

@media (max-width: 992px) {
    .use-cases-section,
    .upgrades-section {
        padding: 0.8rem 1.3rem 0;
    }
    
    .use-cases-section h3,
    .upgrades-section h3 {
        font-size: 1rem;
        margin-bottom: 0.6rem;
    }
    
    .use-cases-section h3::after,
    .upgrades-section h3::after {
        width: 40px;
        height: 2px;
        bottom: -5px;
    }
    
    .use-cases-section p,
    .upgrades-section p {
        font-size: 0.85rem;
        line-height: 1.3;
    }
}

@media (max-width: 768px) {
    .use-cases-section,
    .upgrades-section {
        padding: 0.7rem 1.2rem 0;
        margin-bottom: 1.2rem;
    }
    
    .use-cases-section h3,
    .upgrades-section h3 {
        font-size: 1rem;
        margin-bottom: 0.5rem;
    }
    
    .use-cases-section h3::after,
    .upgrades-section h3::after {
        width: 35px;
        height: 2px;
    }
    
    .use-cases-section p,
    .upgrades-section p {
        font-size: 0.8rem;
        line-height: 1.3;
    }
}

.cta-center {
    margin-top: 3rem;
    text-align: center;
}

.cta-center .btn-primary {
    font-size: 1rem;
    padding: 16px 32px;
}

@media (max-width: 992px) {
    .specs-grid {
        grid-template-columns: 1fr;
        gap: 1.2rem;
    }
    
    .ai-subpage h1 {
        font-size: 1.6rem;
    }
    
    .specs-table,
    .software-stack {
        padding: 1.5rem;
    }
    
    .use-cases-section,
    .upgrades-section {
        padding: 1.8rem;
    }
}

@media (max-width: 768px) {
    .ai-subpage {
        padding: 40px 0;
    }
    
    .ai-subpage h1 {
        font-size: 1.4rem;
    }
    
    .specs-table,
    .software-stack {
        padding: 1.2rem;
    }
    
    .use-cases-section,
    .upgrades-section {
        padding: 1.5rem;
    }
}

.storage-networking-section p {
    color: var(--text-light);
    line-height: 1.6;
    margin-bottom: 3rem;
    text-align: center;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
}

.storage-networking-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    margin-bottom: 4rem;
    align-items: start;
}

@media (max-width: 768px) {
    .storage-networking-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}

.storage-section h2,
.networking-section h2 {
    color: var(--primary);
    margin-bottom: 2rem;
    font-size: 1.3rem;
    font-weight: 700;
    text-align: left;
    height: 40px;
    display: flex;
    align-items: center;
}

.storage-cards,
.networking-cards {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.storage-card,
.networking-card {
    border: 1px solid #E0E0E0;
    border-radius: 8px;
    padding: 1.5rem;
    text-align: left;
    min-height: 140px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.storage-card h3,
.networking-card h3 {
    color: var(--primary);
    margin-bottom: 0.8rem;
    font-size: 1.1rem;
    font-weight: 700;
}

.storage-card p,
.networking-card p {
    color: var(--text-light);
    line-height: 1.5;
    margin-bottom: 0;
    font-size: 0.9rem;
}



/* Partners Section */
.partners {
    padding: 80px 0;
    background-color: var(--background);
}

.partners h2 {
    text-align: center;
    margin-bottom: 1.5rem;
    color: var(--primary);
}

.partner-logo {
    text-align: center;
    margin-bottom: 2rem;
}

.partner-logo img {
    max-width: 200px;
    height: auto;
}

.partners-description {
    max-width: 1000px;
    margin: 0 auto 3rem;
    text-align: center;
    color: var(--text-light);
    line-height: 1.6;
}

.partners-list {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 2rem;
    margin-bottom: 3rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid #E0E0E0;
}

.partners-list span {
    color: var(--text-light);
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 0.05em;
}

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

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

.partner-item h3 {
    color: var(--primary);
    margin-bottom: 1rem;
    font-size: 1.2rem;
    font-weight: 700;
}

.partner-item p {
    color: var(--text-light);
    line-height: 1.6;
}

/* Why Choose KINGBALANCE Section */
.why-choose {
    padding: 30px 0;
    background-color: var(--background);
    position: relative;
}

.why-choose h2 {
    text-align: center;
    margin-bottom: 3rem;
    color: var(--primary);
    font-size: 2.2rem;
    font-weight: 700;
}

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

@media (max-width: 768px) {
    .why-choose-grid {
        grid-template-columns: 1fr;
    }
}

/* xFusion FusionServer Showcase Section */
.xfusion-showcase {
    padding: 40px 0;
    background-color: var(--background);
    position: relative;
}

.showcase-banner {
    margin-bottom: 4rem;
    border-radius: 8px;
    overflow: hidden;
}

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

/* AI Servers section specific styles */
#ai-server-section .showcase-grid {
    grid-template-columns: repeat(3, 1fr);
}

@media (max-width: 992px) {
    .showcase-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    #ai-server-section .showcase-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .showcase-grid {
        grid-template-columns: 1fr;
    }
    
    #ai-server-section .showcase-grid {
        grid-template-columns: 1fr;
    }
}

.showcase-card {
    background-color: #FFFFFF;
    padding: 1.5rem 1.5rem 1rem 1.5rem;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    text-align: center;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.showcase-content {
    flex: 1;
}

.showcase-buttons {
    margin-top: 1.5rem;
    display: flex;
    gap: 0.75rem;
}

.showcase-buttons .btn {
    flex: 1;
    text-align: center;
    padding: 0.35rem 1rem;
    font-size: 0.7rem;
    font-weight: 600;
    border-radius: 4px;
    transition: all 0.3s ease;
    text-decoration: none;
}

.showcase-buttons .btn-secondary {
    background-color: #334155;
    color: white;
    border: 2px solid #334155;
    box-shadow: 0 2px 4px rgba(51, 65, 85, 0.2);
}

.showcase-buttons .btn-secondary:hover {
    background-color: white;
    color: #334155;
    border: 2px solid #334155;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(51, 65, 85, 0.3);
}

.showcase-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(30, 136, 229, 0.2);
}

.showcase-image {
    margin-bottom: 1rem;
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #f8f9fa;
    border-radius: 4px;
    overflow: hidden;
}

.showcase-image img {
    max-height: 100%;
    object-fit: contain;
}

.showcase-card h3 {
    color: var(--primary);
    margin-bottom: 0.8rem;
    font-size: 1rem;
    font-weight: 700;
}

.showcase-card p {
    color: var(--text-light);
    line-height: 1.5;
    margin-bottom: 0.8rem;
    font-size: 0.8rem;
}

.showcase-card .btn {
    margin-top: 0.5rem;
    font-size: 0.7rem;
    padding: 0.35rem 1rem;
}

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

@media (max-width: 768px) {
    .xfusion-showcase {
        padding: 60px 0;
    }
    
    .showcase-grid {
        grid-template-columns: 1fr;
    }
    
    .showcase-card {
        padding: 1.5rem;
    }
}

.why-choose-card {
    background-color: #FFFFFF;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    border: 2px solid var(--primary);
    position: relative;
    padding-left: 4rem;
}

.why-choose-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(30, 136, 229, 0.2);
    border-color: var(--accent);
}

.why-choose-icon {
    position: absolute;
    left: 1rem;
    top: 1.5rem;
    width: 32px;
    height: 32px;
    background-color: transparent;
    color: var(--primary);
    border-radius: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
}

.why-choose-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    filter: invert(30%) sepia(91%) saturate(1488%) hue-rotate(194deg) brightness(97%) contrast(94%);
}

.why-choose-card h3 {
    color: var(--primary);
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.why-choose-card p {
    color: var(--text-light);
    line-height: 1.6;
    margin-bottom: 0;
}

.xfusion-highlight {
    color: var(--primary);
    font-weight: 600;
}



/* Responsive adjustments */
@media (max-width: 992px) {
    .process-steps {
        flex-direction: column;
        align-items: center;
        padding: 0;
    }
    
    .process-step {
        margin-bottom: 3rem;
        width: 100%;
        max-width: 400px;
    }
    
    .process-step:not(:last-child)::after {
        display: none;
    }
    
    .step-content {
        max-width: 100%;
    }
    
    .step-number {
        margin-bottom: 1rem;
    }
}

/* Partners Section */
.partners {
    padding: 60px 0;
    background-color: var(--card-bg);
    position: relative;
}

.partners h2 {
    text-align: center;
    margin-bottom: 2rem;
    color: var(--primary);
    font-size: 2rem;
    font-weight: 700;
}

.partners-list {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 2rem;
    font-size: 1rem;
    font-weight: 600;
    color: var(--primary);
}

.partners-list span {
    padding: 0.75rem 1.5rem;
    border-radius: 4px;
    background-color: var(--background);
    border: 1px solid #E0E0E0;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.partners-list span:hover {
    transform: translateY(-3px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
    background-color: var(--background);
}

/* Footer */
.footer {
    background-color: var(--primary);
    color: #FFFFFF;
    padding: 60px 0 30px;
    position: relative;
}

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

.footer-brand h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #FFFFFF;
    font-weight: 700;
}

.footer-brand p {
    font-size: 1rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 1.5rem;
}

.footer-links h4 {
    font-size: 1.1rem;
    margin-bottom: 1rem;
    color: #FFFFFF;
    font-weight: 700;
}

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

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

.footer-links a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 1rem;
}

.footer-links a:hover {
    color: #FFFFFF;
    text-decoration: underline;
}

.footer-contact h4 {
    font-size: 1.1rem;
    margin-bottom: 1rem;
    color: #FFFFFF;
    font-weight: 700;
}

.footer-contact p {
    margin-bottom: 1rem;
    line-height: 1.6;
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.8);
}

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

.footer-bottom-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.footer-partner-logo {
    flex-shrink: 0;
}

.footer-partner-logo img {
    max-width: 120px;
    height: auto;
}

.footer-bottom p {
    margin-bottom: 1rem;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.8);
}

@media (max-width: 768px) {
    .footer-bottom-content {
        flex-direction: column;
        gap: 1rem;
    }
    
    .footer-partner-logo img {
        max-width: 100px;
    }
}

.footer-bottom-links {
    margin-top: 1rem;
}

.footer-bottom-links a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    margin: 0 0.75rem;
    transition: all 0.3s ease;
    font-size: 0.9rem;
}

.footer-bottom-links a:hover {
    color: #FFFFFF;
    text-decoration: underline;
}

/* Responsive Design */
@media (max-width: 768px) {
    body {
        padding-top: 80px !important;
    }
    
    .navbar {
        position: fixed !important;
        top: 0 !important;
        left: 0 !important;
        right: 0 !important;
        z-index: 9999 !important;
        height: 80px !important;
        margin: 0 !important;
        padding: 0 !important;
        box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1) !important;
        background-color: var(--background) !important;
        border-bottom: 1px solid #E0E0E0 !important;
        display: flex !important;
        align-items: center !important;
        transition: none !important;
    }
    
    .navbar-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        height: 100vh;
        background-color: var(--background);
        box-shadow: -2px 0 4px rgba(0, 0, 0, 0.1);
        transition: right 0.3s ease;
        z-index: 9998;
        padding: 80px 15px;
    }
    
    .navbar-menu.active {
        right: 0;
    }
    
    .navbar-menu ul {
        flex-direction: column;
        gap: 0.5rem;
        padding: 0;
        margin: 0;
    }
    
    .navbar-menu li {
        width: 100%;
    }
    
    .navbar-menu a {
        display: block;
        width: 100%;
        padding: 0.8rem 1rem;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
    }
    
    .navbar-toggle {
        display: block;
        flex-shrink: 0;
    }
    
    .navbar .container {
        padding: 0 15px;
        width: 100%;
        max-width: 100%;
        margin: 0;
        justify-content: flex-start;
    }
    
    .navbar-brand {
        font-size: 1rem;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
        max-width: 60%;
    }
    
    .navbar-toggle {
        margin-left: 1rem;
    }
    
    .navbar-brand img {
        height: 35px !important;
        margin-right: 8px !important;
    }
    
    .hero h1 {
        font-size: 2rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .props-grid,
    .platforms-grid,
    .appliances-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}

@media (max-width: 992px) {
    .hero .container {
        text-align: center;
    }
    
    .hero-content {
        text-align: center;
    }
    
    .hero-image {
        text-align: center;
        margin-top: 2rem;
    }
    
    .hero-buttons {
        justify-content: center;
    }
}