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

body {
font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
line-height: 1.6;
color: #e0e0e0;
background: linear-gradient(-45deg, #1a1a2e, #16213e, #0f3460, #533483);
background-size: 400% 400%;
animation: gradientShift 15s ease infinite;
min-height: 100vh;
position: relative;
}

body::before {
content: '';
position: fixed;
top: 0;
left: 0;
width: 100%;
height: 100%;
background: 
    radial-gradient(circle at 20% 80%, rgba(120, 119, 198, 0.3) 0%, transparent 50%),
    radial-gradient(circle at 80% 20%, rgba(255, 119, 198, 0.3) 0%, transparent 50%),
    radial-gradient(circle at 40% 40%, rgba(120, 119, 198, 0.2) 0%, transparent 50%);
animation: floatingOrbs 20s ease-in-out infinite;
pointer-events: none;
z-index: -1;
}

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

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

.container {
max-width: 1200px;
margin: 0 auto;
background: rgba(17, 17, 17, 0.85);
backdrop-filter: blur(10px);
box-shadow: 0 20px 60px rgba(0,0,0,0.3);
min-height: 100vh;
border: 1px solid rgba(120, 119, 198, 0.2);
}

.header {
background: linear-gradient(135deg, rgba(26, 26, 46, 0.9) 0%, rgba(22, 33, 62, 0.9) 100%);
color: white;
padding: 4rem 3rem 3rem;
text-align: center;
position: relative;
overflow: hidden;
border-bottom: 2px solid rgba(120, 119, 198, 0.3);
}

.header::before {
content: '';
position: absolute;
top: 0;
left: 0;
right: 0;
bottom: 0;
background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grid" width="10" height="10" patternUnits="userSpaceOnUse"><path d="M 10 0 L 0 0 0 10" fill="none" stroke="rgba(120,119,198,0.1)" stroke-width="0.5"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
opacity: 0.3;
}

.header h1 {
font-size: 3rem;
margin-bottom: 1rem;
font-weight: 700;
position: relative;
z-index: 1;
}

.header .subtitle {
font-size: 1.3rem;
opacity: 0.8;
font-weight: 300;
position: relative;
z-index: 1;
}

.header-image-container {
margin-top: 2rem;
position: relative;
z-index: 1;
}

.header-image {
max-width: 100%;
height: auto;
max-height: 300px;
border-radius: 15px;
border: 2px solid rgba(120, 119, 198, 0.3);
box-shadow: 0 10px 30px rgba(120, 119, 198, 0.2);
transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.header-image:hover {
transform: scale(1.02);
box-shadow: 0 15px 40px rgba(120, 119, 198, 0.3);
border: 2px solid #7877c6;
}

.content {
padding: 3rem;
}

.overview {
background: #1a1a1a;
padding: 2.5rem;
margin: -1rem -1rem 3rem;
border-radius: 15px;
border-left: 5px solid #ffffff;
border: 1px solid #333;
}

.section {
margin-bottom: 3rem;
opacity: 0;
animation: fadeInUp 0.6s ease forwards;
}

.section:nth-child(2) { animation-delay: 0.1s; }
.section:nth-child(3) { animation-delay: 0.2s; }
.section:nth-child(4) { animation-delay: 0.3s; }
.section:nth-child(5) { animation-delay: 0.4s; }

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

h2 {
color: #ffffff;
font-size: 2.2rem;
margin-bottom: 1.5rem;
font-weight: 600;
border-bottom: 3px solid #ffffff;
padding-bottom: 0.5rem;
}

h3 {
color: #ffffff;
font-size: 1.5rem;
margin: 2rem 0 1rem;
font-weight: 600;
}

h4 {
color: #ffffff;
font-size: 1.2rem;
margin: 1.5rem 0 0.8rem;
font-weight: 600;
}

p {
margin-bottom: 1rem;
color: #cccccc;
font-size: 1.05rem;
}

.platform-card {
background: #1a1a1a;
border-radius: 12px;
padding: 2rem;
margin: 1.5rem 0;
box-shadow: 0 8px 30px rgba(255,255,255,0.05);
border: 1px solid #333;
transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.platform-card:hover {
transform: translateY(-5px);
box-shadow: 0 15px 40px rgba(255,255,255,0.1);
border: 1px solid #555;
}

.platform-title {
color: #ffffff;
font-size: 1.4rem;
font-weight: 700;
margin-bottom: 1rem;
display: flex;
align-items: center;
}

.platform-title::before {
content: '⚡';
margin-right: 0.5rem;
font-size: 1.2rem;
}

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

.feature-item {
background: #222222;
padding: 1.5rem;
border-radius: 8px;
border-left: 4px solid #ffffff;
border: 1px solid #333;
}

.feature-item h5 {
color: #ffffff;
font-weight: 600;
margin-bottom: 0.5rem;
}

.capabilities-list {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
gap: 1rem;
margin: 1.5rem 0;
}

.capability-item {
background: #000000;
color: white;
padding: 1rem;
border-radius: 8px;
font-weight: 500;
text-align: center;
transition: transform 0.3s ease;
border: 2px solid #333;
}

.capability-item:hover {
transform: scale(1.05);
border: 2px solid #ffffff;
}

.contact-section {
background: #000000;
color: white;
padding: 2.5rem;
border-radius: 15px;
text-align: center;
margin-top: 3rem;
border: 2px solid #333;
}

.contact-section h3 {
color: white;
margin-bottom: 1rem;
}

.email-link {
color: #ffffff;
text-decoration: none;
font-weight: 600;
font-size: 1.1rem;
transition: color 0.3s ease;
border-bottom: 1px solid #ffffff;
}

.email-link:hover {
color: #cccccc;
border-bottom: 1px solid #cccccc;
}

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

.benefit-card {
background: #1a1a1a;
border-radius: 10px;
padding: 2rem;
text-align: center;
box-shadow: 0 5px 20px rgba(255,255,255,0.05);
border: 1px solid #333;
border-top: 4px solid #ffffff;
}

.benefit-icon {
font-size: 3rem;
margin-bottom: 1rem;
}

.roadmap-timeline {
position: relative;
padding-left: 2rem;
}

.roadmap-timeline::before {
content: '';
position: absolute;
left: 0;
top: 0;
bottom: 0;
width: 3px;
background: #ffffff;
}

.timeline-item {
position: relative;
margin-bottom: 2rem;
padding-left: 2rem;
}

.timeline-item::before {
content: '';
position: absolute;
left: -1.5rem;
top: 0.5rem;
width: 12px;
height: 12px;
background: #ffffff;
border-radius: 50%;
border: 3px solid #111111;
box-shadow: 0 0 0 3px #ffffff;
}

.gpt-pro-section {
background: #1a1a1a;
padding: 2.5rem;
border-radius: 15px;
border: 1px solid #333;
margin: 2rem 0;
}

.gpt-features-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
gap: 1.5rem;
margin: 2rem 0;
}

.gpt-feature {
background: #222222;
padding: 1.5rem;
border-radius: 8px;
border: 1px solid #333;
}

.gpt-feature h5 {
color: #ffffff;
font-weight: 600;
margin-bottom: 0.5rem;
}

.gpt-feature p {
color: #cccccc;
font-size: 0.95rem;
}

.dashboard-container {
background: #1a1a1a;
border-radius: 15px;
border: 1px solid #333;
padding: 2rem;
margin: 2rem 0;
}

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

.dashboard-header h3 {
color: #ffffff;
margin: 0;
}

.status-indicator {
display: flex;
align-items: center;
color: #cccccc;
}

.status-dot {
width: 10px;
height: 10px;
border-radius: 50%;
margin-right: 0.5rem;
}

.status-dot.online {
background: #ffffff;
box-shadow: 0 0 10px rgba(255,255,255,0.5);
}

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

.metric-card {
background: #222222;
border: 1px solid #333;
border-radius: 8px;
padding: 1.5rem;
text-align: center;
}

.metric-card h4 {
color: #ffffff;
margin: 0 0 1rem 0;
font-size: 1rem;
}

.metric-value {
color: #ffffff;
font-size: 2rem;
font-weight: 700;
margin-bottom: 1rem;
}

.progress-bar {
width: 100%;
height: 6px;
background: #333;
border-radius: 3px;
overflow: hidden;
}

.progress-fill {
height: 100%;
background: #ffffff;
transition: width 0.3s ease;
}

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

.service-item {
background: #222222;
border: 1px solid #333;
border-radius: 8px;
padding: 1rem;
display: flex;
align-items: center;
}

.service-status {
width: 12px;
height: 12px;
border-radius: 50%;
margin-right: 1rem;
flex-shrink: 0;
}

.service-status.online {
background: #ffffff;
box-shadow: 0 0 8px rgba(255,255,255,0.4);
}

.service-info h5 {
color: #ffffff;
margin: 0 0 0.25rem 0;
font-size: 1rem;
}

.service-info p {
color: #cccccc;
margin: 0;
font-size: 0.85rem;
}

.dashboard-footer {
text-align: center;
padding-top: 1rem;
border-top: 1px solid #333;
color: #aaaaaa;
font-size: 0.9rem;
}

.highlight {
color: #ffffff;
font-weight: 600;
}

.footer-section {
background: #000000;
color: white;
padding: 3rem;
margin-top: 3rem;
border-top: 2px solid #333;
}

.footer-section h2 {
text-align: center;
margin-bottom: 1rem;
}

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

.division-card {
background: #1a1a1a;
border: 1px solid #333;
border-radius: 12px;
padding: 2rem;
text-align: center;
text-decoration: none;
color: inherit;
transition: all 0.3s ease;
display: block;
}

.division-card:hover {
transform: translateY(-5px);
border: 1px solid #ffffff;
box-shadow: 0 10px 30px rgba(255,255,255,0.1);
}

.division-icon {
font-size: 3rem;
margin-bottom: 1rem;
transition: transform 0.3s ease;
}

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

.division-name {
color: #ffffff;
font-size: 1.2rem;
font-weight: 600;
margin-bottom: 0.5rem;
}

.division-desc {
color: #cccccc;
font-size: 0.9rem;
line-height: 1.4;
}

.division-card:hover .division-name {
color: #ffffff;
}

.division-card:hover .division-desc {
color: #eeeeee;
}

.automation-platforms-section,
.wms-section,
.custom-solutions-section,
.ipaas-section {
margin: 3rem 0;
padding: 2rem;
background: linear-gradient(135deg, rgba(22, 33, 62, 0.6) 0%, rgba(26, 26, 46, 0.6) 100%);
border-radius: 12px;
border: 1px solid rgba(120, 119, 198, 0.3);
backdrop-filter: blur(10px);
}

.automation-features-grid,
.wms-features-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
gap: 1.5rem;
margin: 1.5rem 0;
}

.automation-feature,
.wms-feature {
background: linear-gradient(135deg, rgba(34, 34, 54, 0.8) 0%, rgba(22, 33, 62, 0.8) 100%);
padding: 1.5rem;
border-radius: 8px;
border: 1px solid rgba(120, 119, 198, 0.3);
transition: transform 0.3s ease, border-color 0.3s ease;
}

.automation-feature:hover,
.wms-feature:hover {
transform: translateY(-5px);
border-color: #7877c6;
box-shadow: 0 8px 25px rgba(120, 119, 198, 0.2);
}

.automation-feature h5,
.wms-feature h5 {
color: #b8b7ff;
font-weight: 600;
margin-bottom: 0.8rem;
font-size: 1.1rem;
}

.automation-feature p,
.wms-feature p {
color: #cccccc;
font-size: 0.95rem;
line-height: 1.5;
}

.platform-integrations {
text-align: center;
padding: 1rem;
background: rgba(120, 119, 198, 0.1);
border-radius: 8px;
border: 1px solid rgba(120, 119, 198, 0.2);
}

.platform-integrations p {
color: #b8b7ff;
font-weight: 500;
margin: 0;
}

@media (max-width: 768px) {
.header {
    padding: 2rem 1.5rem;
}

.header h1 {
    font-size: 2.2rem;
}

.header-image {
    max-height: 200px;
}

.content {
    padding: 2rem 1.5rem;
}

.features-grid {
    grid-template-columns: 1fr;
}

.capabilities-list {
    grid-template-columns: 1fr;
}

.dashboard-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
}

.dashboard-grid {
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
}

.services-grid {
    grid-template-columns: 1fr;
}

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

.footer-section {
    padding: 2rem 1.5rem;
}

.automation-features-grid,
.wms-features-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
}

.gpt-features-grid,
.gemini-features-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

.footer-logo {
    max-width: 100px;
}
}
