          /* Global Styles */
          /* * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }
        
        body {
            background-color: #f5f5f5;
            color: #333;
            overflow-x: hidden;
        } */
        
        /* Header Section */
        .header {
            background: linear-gradient(135deg, #062944, #106ebe);
            color: white;
            padding: 60px 20px;
            text-align: center;
            position: relative;
            overflow: hidden;
        }
        
        .header::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: url('/api/placeholder/1200/400') center/cover;
            opacity: 0.2;
            z-index: 0;
        }
        
        .header-content {
            position: relative;
            z-index: 1;
            max-width: 1200px;
            margin: 0 auto;
        }
        
        .header h1 {
            font-size: 3.5rem;
            margin-bottom: 15px;
            transform: translateY(20px);
            opacity: 0;
            animation: fadeUp 1s forwards;
        }
        
        .header p {
            font-size: 1.5rem;
            opacity: 0;
            transform: translateY(20px);
            animation: fadeUp 1s 0.3s forwards;
        }
        
        @keyframes fadeUp {
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }
        
        /* Section Common Styles */
        .section {
            padding: 80px 20px;
            position: relative;
            overflow: hidden;
        }
        
        .section-content {
            max-width: 1200px;
            margin: 0 auto;
            position: relative;
            z-index: 1;
        }
        
        .section h2 {
            font-size: 2.5rem;
            margin-bottom: 20px;
            position: relative;
            display: inline-block;
        }
        
        .section h2::after {
            content: '';
            position: absolute;
            bottom: -10px;
            left: 0;
            width: 60px;
            height: 4px;
            background-color: #0078d4;
            transition: width 0.3s ease;
        }
        
        .section:hover h2::after {
            width: 100%;
        }
        
        .section p {
            font-size: 1.1rem;
            line-height: 1.6;
            margin-bottom: 30px;
            max-width: 800px;
        }
        
        /* Dynamics 365 Section */
        #dynamics {
            /* background-color: #ffffff; */
        }
        
        .dynamics-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 20px;
            margin-top: 40px;
        }
        
        .dynamics-card {
            background: white;
            border-radius: 10px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
            padding: 30px;
            transition: all 0.3s ease;
            cursor: pointer;
            position: relative;
            overflow: hidden;
            min-height: 200px;
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
        }
        
        .dynamics-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 5px;
            background: linear-gradient(90deg, #0078d4, #83c8ff);
            transform: scaleX(0);
            transform-origin: left;
            transition: transform 0.3s ease;
        }
        
        .dynamics-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 35px rgba(0, 120, 212, 0.2);
        }
        
        .dynamics-card:hover::before {
            transform: scaleX(1);
        }
        
        .dynamics-card h3 {
            font-size: 1.3rem;
            margin-bottom: 15px;
            text-align: center;
        }
        
        .dynamics-icon {
            font-size: 40px;
            margin-bottom: 20px;
            color: #0078d4;
        }
        
        .dynamics-feature {
            margin-top: 60px;
            padding: 30px;
            background: linear-gradient(135deg, #f9f9f9, #ffffff);
            border-radius: 15px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
        }
        
        /* Azure Section */
        #azure {
            background-color: #f8f9fc;
            position: relative;
        }
        
        #azure::before {
            content: '';
            position: absolute;
            top: 0;
            right: 0;
            width: 400px;
            height: 400px;
            background: linear-gradient(135deg, rgba(0, 120, 212, 0.1), rgba(3, 131, 135, 0.05));
            border-radius: 50%;
            transform: translate(200px, -200px);
            z-index: 0;
        }
        
        .azure-journey {
            position: relative;
            height: 150px;
            margin: 50px 0;
        }
        
        .journey-line {
            position: absolute;
            top: 50%;
            left: 0;
            width: 100%;
            height: 4px;
            background: #e0e0e0;
            transform: translateY(-50%);
        }
        
        .journey-progress {
            position: absolute;
            top: 50%;
            left: 0;
            width: 0;
            height: 4px;
            background: linear-gradient(90deg, #0078d4, #83c8ff);
            transform: translateY(-50%);
            transition: width 1.5s ease;
        }
        
        .journey-step {
            position: absolute;
            top: 50%;
            width: 30px;
            height: 30px;
            border-radius: 50%;
            background: white;
            border: 3px solid #0078d4;
            transform: translate(-50%, -50%);
            display: flex;
            justify-content: center;
            align-items: center;
            font-weight: bold;
            color: #0078d4;
            cursor: pointer;
            transition: all 0.3s ease;
        }
        
        .journey-step:hover {
            transform: translate(-50%, -50%) scale(1.2);
            box-shadow: 0 0 0 5px rgba(0, 120, 212, 0.2);
        }
        
        .journey-tooltip {
            position: absolute;
            bottom: 100%;
            left: 50%;
            transform: translateX(-50%) translateY(-10px);
            background: #0078d4;
            color: white;
            padding: 8px 12px;
            border-radius: 5px;
            font-size: 0.9rem;
            opacity: 0;
            visibility: hidden;
            transition: all 0.3s ease;
            width: max-content;
            max-width: 200px;
            text-align: center;
            margin-bottom: 10px;
        }
        
        .journey-tooltip::after {
            content: '';
            position: absolute;
            top: 100%;
            left: 50%;
            transform: translateX(-50%);
            border-width: 5px;
            border-style: solid;
            border-color: #0078d4 transparent transparent transparent;
        }
        
        .journey-step:hover .journey-tooltip {
            opacity: 1;
            visibility: visible;
            transform: translateX(-50%) translateY(-5px);
        }
        
        /* Office 365 Section */
  #office365 {
    /* background-color: #ffffff; */
}

.office-apps {
    display: flex;
    margin: 40px 0;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
}

.office-app {
    width: 120px;
    height: 120px;
    border-radius: 15px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: white;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.office-app::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-100%);
    transition: transform 0.3s ease;
}

.office-app:hover::before {
    transform: translateY(0);
}

.office-app:hover {
    transform: scale(1.1);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.office-app img {
    height: 90px;
}

.office-word { background: linear-gradient(135deg, #2b579a, #4285f4); }
.office-excel { background: linear-gradient(135deg, #217346, #33aa5f); }
.office-powerpoint { background: linear-gradient(135deg, #d24726, #f4683f); }
.office-outlook { background: linear-gradient(135deg, #0d76bd, #28a8ea); }
.office-teams { background: linear-gradient(135deg, #6264a7, #8d8fdA); }
.office-sharepoint { background: linear-gradient(135deg, #0361b2, #27a3e3); }

.office-timeline {
    margin-top: 60px;
    position: relative;
    padding: 60px 20px;
    min-height: 200px;
}

.timeline-bar {
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #3b82f6, #8b5cf6, #06b6d4);
    border-radius: 2px;
    transform: translateY(-50%);
}

.timeline-marker {
    position: absolute;
    top: 50%;
    width: 16px;
    height: 16px;
    background: #ffffff;
    border: 3px solid #3b82f6;
    border-radius: 50%;
    transform: translate(-50%, -50%);
    z-index: 2;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.timeline-content {
    position: absolute;
    width: 200px;
    padding: 16px;
    background: #ffffff;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    transform: translateX(-50%);
    border: 1px solid #e5e7eb;
}

.timeline-content.top {
    bottom: calc(50% + 30px);
}

.timeline-content.bottom {
    top: calc(50% + 30px);
}

.timeline-content::after {
    content: '';
    position: absolute;
    left: 50%;
    width: 0;
    height: 0;
    border-left: 8px solid transparent;
    border-right: 8px solid transparent;
    transform: translateX(-50%);
}

.timeline-content.top::after {
    bottom: -8px;
    border-top: 8px solid #ffffff;
}

.timeline-content.bottom::after {
    top: -8px;
    border-bottom: 8px solid #ffffff;
}

.timeline-content h4 {
    margin: 0 0 8px 0;
    font-size: 18px;
    font-weight: 600;
    color: #1f2937;
}

.timeline-content p {
    margin: 0;
    font-size: 14px;
    color: #6b7280;
    line-height: 1.5;
}

/* Mobile/Vertical Timeline - max-width: 800px */
@media (max-width: 800px) {
    .office-timeline {
        padding: 40px 20px;
        min-height: auto;
    }
    
    .timeline-bar {
        top: 0;
        bottom: 0;
        left: 30px;
        right: auto;
        width: 4px;
        height: auto;
        background: linear-gradient(180deg, #3b82f6, #8b5cf6, #06b6d4);
        transform: none;
    }
    
    .timeline-marker {
        top: auto;
        left: 30px;
        transform: translateX(-50%);
        position: relative;
        display: block;
        margin-bottom: 40px;
    }
    
    .timeline-content {
        position: relative;
        width: auto;
        max-width: none;
        margin-left: 60px;
        margin-bottom: 40px;
        transform: none;
        left: auto !important;
    }
    
    .timeline-content.top,
    .timeline-content.bottom {
        top: auto;
        bottom: auto;
        position: relative;
    }
    
    .timeline-content::after {
        left: -8px;
        top: 20px;
        transform: none;
        border-top: 8px solid transparent;
        border-bottom: 8px solid transparent;
        border-right: 8px solid #ffffff;
        border-left: none;
    }
    
    .timeline-content.top::after,
    .timeline-content.bottom::after {
        left: -8px;
        top: 20px;
        bottom: auto;
        border-top: 8px solid transparent;
        border-bottom: 8px solid transparent;
        border-right: 8px solid #ffffff;
        border-left: none;
    }
}

@media (max-width: 768px) {
    .office-apps {
        gap: 15px;
    }
    
    .office-app {
        width: 100px;
        height: 100px;
    }
    
    .office-app img {
        height: 70px;
    }
}
        
        /* Copilot Section */
        #copilot {
            background-color: #f8f9fc;
            overflow: hidden;
        }
        
        .copilot-demo {
            margin: 40px 0;
            display: flex;
            align-items: center;
            justify-content: space-between;
            flex-wrap: wrap;
            gap: 30px;
        }
        
        .copilot-chat {
            flex: 1;
            min-width: 300px;
            max-width: 500px;
            background: white;
            border-radius: 15px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
            overflow: hidden;
        }
        
        .chat-header {
            background: #0078d4;
            color: white;
            padding: 15px;
            display: flex;
            align-items: center;
        }
        
        .chat-header i {
            margin-right: 10px;
            font-size: 20px;
        }
        
        .chat-body {
            padding: 20px;
            height: 300px;
            overflow-y: auto;
        }
        
        .chat-message {
            margin-bottom: 15px;
            display: flex;
            align-items: flex-start;
        }
        
        .chat-message.user {
            flex-direction: row-reverse;
        }
        
        .message-avatar {
            width: 36px;
            height: 36px;
            border-radius: 50%;
            display: flex;
            justify-content: center;
            align-items: center;
            color: white;
            font-weight: bold;
            margin: 0 10px;
        }
        
        .message-avatar.copilot {
            background: #0078d4;
        }
        
        .message-avatar.user {
            background: #5c2d91;
        }
        
        .message-content {
            background: #f0f0f0;
            padding: 12px 15px;
            border-radius: 15px;
            max-width: 70%;
        }
        
        .user .message-content {
            background: #e8f1fb;
        }
        
        .copilot-features {
            flex: 1;
            min-width: 300px;
        }
        
        .copilot-feature-item {
            margin-bottom: 20px;
            padding: 15px;
            background: white;
            border-radius: 10px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
            transition: all 0.3s ease;
            cursor: pointer;
        }
        
        .copilot-feature-item:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
        }
        
        .copilot-feature-item h4 {
            display: flex;
            align-items: center;
            margin-bottom: 10px;
            color: #0078d4;
        }
        
        .copilot-feature-item h4 i {
            margin-right: 10px;
        }
        
        .copilot-feature-item p {
            margin-bottom: 0;
            font-size: 0.95rem;
        }
        
        /* Fabric Section */
        #fabric {
            background-color: #ffffff;
            position: relative;
        }
        
        .fabric-visualization {
            margin: 40px 0;
            position: relative;
            height: 400px;
            border-radius: 15px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
            overflow: hidden;
            background: linear-gradient(135deg, #fafafa, #f0f0f0);
        }
        
        .fabric-tabs {
            display: flex;
            background: #0078d4;
            padding: 0 20px;
        }
        
        .fabric-tab {
            padding: 15px 20px;
            color: white;
            font-weight: 500;
            cursor: pointer;
            position: relative;
            transition: all 0.3s ease;
        }
        
        .fabric-tab::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 100%;
            height: 3px;
            background: white;
            transform: scaleX(0);
            transition: transform 0.3s ease;
        }
        
        .fabric-tab.active {
            background: rgba(255, 255, 255, 0.1);
        }
        
        .fabric-tab.active::after {
            transform: scaleX(1);
        }
        
        .fabric-tab:hover {
            background: rgba(255, 255, 255, 0.1);
        }
        
        .fabric-content {
            padding: 20px;
            height: calc(100% - 50px);
            overflow: auto;
        }
        
        .fabric-panel {
            display: none;
            height: 100%;
        }
        
        .fabric-panel.active {
            display: block;
            animation: fadeIn 0.5s forwards;
        }
        
        @keyframes fadeIn {
            from { opacity: 0; transform: translateY(10px); }
            to { opacity: 1; transform: translateY(0); }
        }
        
        .data-visualization {
            display: flex;
            flex-wrap: wrap;
            gap: 20px;
            height: 100%;
        }
        
        .data-card {
            flex: 1;
            min-width: 200px;
            background: white;
            border-radius: 10px;
            padding: 15px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
        }
        
        .data-card h4 {
            margin-bottom: 15px;
            display: flex;
            align-items: center;
            justify-content: space-between;
        }
        
        .data-card h4 span {
            display: flex;
            align-items: center;
        }
        
        .data-card h4 i {
            margin-right: 8px;
            color: #0078d4;
        }
        
        .data-card h4 .data-value {
            font-weight: normal;
            background: #e8f1fb;
            padding: 3px 8px;
            border-radius: 12px;
            font-size: 0.9rem;
        }
        
        .data-chart {
            height: 120px;
            width: 100%;
            margin-top: 15px;
        }
        
        /* Animations & Effects */
        .parallax-bg {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            z-index: 0;
            pointer-events: none;
        }
        
        .parallax-dot {
            position: absolute;
            border-radius: 50%;
            background: rgba(0, 120, 212, 0.1);
            box-shadow: 0 0 20px rgba(0, 120, 212, 0.1);
            transition: all 0.3s ease;
        }
        
        /* Responsive Styles */
        @media (max-width: 768px) {
            .header h1 {
                font-size: 2.5rem;
            }
            
            .header p {
                font-size: 1.2rem;
            }
            
            .section h2 {
                font-size: 2rem;
            }
            
            .dynamics-grid {
                grid-template-columns: 1fr;
            }
            
            .office-apps {
                justify-content: center;
            }
            
            .office-app {
                width: 100px;
                height: 100px;
            }
            
            .fabric-visualization {
                height: 500px;
            }
        }
        
        /* Font Awesome Alternative */
        .icon {
            display: inline-block;
            width: 1em;
            height: 1em;
            stroke-width: 0;
            stroke: currentColor;
            fill: currentColor;
            font-style: normal;
            font-weight: normal;
            line-height: 1;
            text-transform: none;
        }