\`\`\`css file="consulting-services.css" type="html"
/* IT Consulting Services Page Styles */

/* Hero Section */
.service-hero {
    background: linear-gradient(135deg, #0066cc 0%, #004080 100%);
    color: white;
    padding: 150px 0 100px;
    position: relative;
    overflow: hidden;
    margin-top: 0;
}

.service-hero .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
    z-index: 2;
}

.service-hero-content {
    flex: 1;
    padding-right: 30px;
}

.service-hero-content h1 {
    font-size: 3.5rem;
    margin-bottom: 20px;
    color: white;
    font-weight: 700;
}

.service-hero-content .underline {
    height: 4px;
    width: 70px;
    background-color: #ff9900;
    margin: 0 0 20px;
    position: relative;
}

.service-hero-content p {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 30px;
    max-width: 600px;
    line-height: 1.6;
}

.service-hero-image {
    flex: 1;
    text-align: right;
    position: relative;
    max-width: 50%;
}

.service-hero-image img {
    max-width: 90%;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.service-icons {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.service-icon {
    position: absolute;
    width: 50px;
    height: 50px;
    background-color: rgba(255, 255, 255, 0.95);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    animation: float 3s infinite ease-in-out;
}

.service-icon:nth-child(1) {
    top: 20%;
    left: 10%;
    animation-delay: 0s;
}

.service-icon:nth-child(2) {
    top: 60%;
    left: 15%;
    animation-delay: 0.5s;
}

.service-icon:nth-child(3) {
    top: 30%;
    right: 15%;
    animation-delay: 1s;
}

.service-icon:nth-child(4) {
    top: 70%;
    right: 20%;
    animation-delay: 1.5s;
}

.service-icon:nth-child(5) {
    top: 10%;
    right: 30%;
    animation-delay: 2s;
}

.service-icon i {
    font-size: 20px;
    color: #0066cc;
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-15px); }
}

.wave-container {
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 100%;
    line-height: 0;
    z-index: 1;
}

.wave-container svg {
    display: block;
}

/* Intro Section */
.intro-section {
    padding: 80px 0;
    background-color: white;
}

.intro-content {
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
}

.intro-content h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: #333;
    font-weight: 700;
}

.emoji {
    font-size: 1.8rem;
    margin-left: 10px;
    display: inline-block;
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {transform: translateY(0);}
    40% {transform: translateY(-10px);}
    60% {transform: translateY(-5px);}
}

.intro-content p {
    font-size: 1.1rem;
    color: #6c757d;
    margin-bottom: 40px;
    line-height: 1.7;
}

.stats-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
    margin-top: 50px;
}

.stat-box {
    background-color: white;
    border-radius: 10px;
    padding: 30px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    text-align: center;
    flex: 1;
    min-width: 200px;
    max-width: 250px;
    transition: all 0.3s ease;
    border: 1px solid #eee;
}

.stat-box:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.stat-icon {
    width: 60px;
    height: 60px;
    background-color: rgba(0, 102, 204, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
}

.stat-icon i {
    font-size: 25px;
    color: #0066cc;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: #0066cc;
    margin-bottom: 10px;
    line-height: 1;
}

.stat-box p {
    color: #6c757d;
    font-size: 1rem;
    margin-bottom: 0;
}

/* Process Section */
.process-section {
    padding: 80px 0;
    background-color: #f8f9fa;
}

.process-container {
    max-width: 1000px;
    margin: 50px auto 0;
}

.process-timeline {
    position: relative;
    padding: 30px 0;
}

.process-line {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 50%;
    width: 4px;
    background: linear-gradient(to bottom, #0066cc, #ff9900);
    transform: translateX(-50%);
}

.process-step {
    display: flex;
    align-items: center;
    margin-bottom: 80px;
    position: relative;
}

.process-step:nth-child(even) {
    flex-direction: row-reverse;
}

.step-number {
    width: 50px;
    height: 50px;
    background-color: #0066cc;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.5rem;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.step-content {
    background-color: white;
    border-radius: 10px;
    padding: 30px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    width: calc(50% - 50px);
    margin: 0 50px;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.process-step:nth-child(odd) .step-content {
    margin-left: auto;
}

.process-step:nth-child(even) .step-content {
    margin-right: auto;
}

.step-content:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.step-icon {
    width: 70px;
    height: 70px;
    background-color: rgba(0, 102, 204, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.step-icon i {
    font-size: 30px;
    color: #0066cc;
}

.step-content h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    font-weight: 600;
    color: #333;
}

.step-content p {
    color: #6c757d;
    margin-bottom: 0;
    line-height: 1.6;
}

/* Key Services Section */
.key-services-section {
    padding: 80px 0;
    background-color: white;
}

.services-tabs {
    margin-top: 50px;
}

.tabs-navigation {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
    margin-bottom: 30px;
}

.tab-btn {
    padding: 12px 20px;
    background-color: #f8f9fa;
    border: none;
    border-radius: 30px;
    color: #333;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.tab-btn:hover {
    background-color: #e9ecef;
}

.tab-btn.active {
    background-color: #0066cc;
    color: white;
}

.tabs-content {
    background-color: white;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    overflow: hidden;
}

.tab-pane {
    display: none;
    padding: 30px;
}

.tab-pane.active {
    display: block;
    animation: fadeIn 0.5s ease;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.tab-header {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid #eee;
}

.tab-icon {
    width: 60px;
    height: 60px;
    background-color: rgba(0, 102, 204, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.tab-icon i {
    font-size: 25px;
    color: #0066cc;
}

.tab-header h3 {
    font-size: 1.8rem;
    margin-bottom: 0;
    font-weight: 600;
    color: #333;
}

.tab-body p {
    font-size: 1.1rem;
    color: #6c757d;
    margin-bottom: 30px;
    line-height: 1.6;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.service-item {
    background-color: #f8f9fa;
    border-radius: 10px;
    padding: 25px;
    transition: all 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.service-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    background-color: white;
}

.service-icon {
    width: 60px;
    height: 60px;
    background-color: rgba(0, 102, 204, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 15px;
}

.service-icon i {
    font-size: 25px;
    color: #0066cc;
}

.service-item h4 {
    font-size: 1.2rem;
    margin-bottom: 10px;
    font-weight: 600;
    color: #333;
}

.service-item p {
    color: #6c757d;
    margin-bottom: 0;
    line-height: 1.6;
}

/* Framework Diagram Section */
.framework-section {
    padding: 80px 0;
    background-color: #f8f9fa;
}

.framework-diagram {
    position: relative;
    width: 100%;
    height: 600px;
    margin: 50px auto;
    max-width: 1000px;
}

.framework-center {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 3;
}

.center-circle {
    width: 150px;
    height: 150px;
    background: linear-gradient(135deg, #0066cc 0%, #004080 100%);
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: white;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    text-align: center;
    padding: 20px;
}

.center-circle i {
    font-size: 40px;
    margin-bottom: 10px;
}

.center-circle span {
    font-weight: 600;
    font-size: 0.9rem;
}

.framework-layer {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    border: 2px dashed rgba(0, 102, 204, 0.3);
    border-radius: 50%;
}

.layer-1 {
    width: 350px;
    height: 350px;
}

.layer-2 {
    width: 550px;
    height: 550px;
}

.layer-item {
    position: absolute;
    width: 100px;
    text-align: center;
}

.layer-icon {
    width: 80px;
    height: 80px;
    background-color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    margin: 0 auto 10px;
    transition: all 0.3s ease;
}

.layer-item:hover .layer-icon {
    background-color: #0066cc;
}

.layer-icon i {
    font-size: 30px;
    color: #0066cc;
    transition: all 0.3s ease;
}

.layer-item:hover .layer-icon i {
    color: white;
}

.layer-item span {
    display: block;
    text-align: center;
    font-weight: 600;
    font-size: 0.9rem;
    color: #333;
}

/* Position layer-1 items */
.layer-1 [data-position="top"] {
    top: 0;
    left: 50%;
    transform: translateX(-50%);
}

.layer-1 [data-position="right"] {
    top: 50%;
    right: 0;
    transform: translateY(-50%);
}

.layer-1 [data-position="bottom"] {
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
}

.layer-1 [data-position="left"] {
    top: 50%;
    left: 0;
    transform: translateY(-50%);
}

/* Position layer-2 items */
.layer-2 [data-position="top-left"] {
    top: 15%;
    left: 15%;
}

.layer-2 [data-position="top-right"] {
    top: 15%;
    right: 15%;
}

.layer-2 [data-position="right-top"] {
    top: 35%;
    right: 5%;
}

.layer-2 [data-position="right-bottom"] {
    bottom: 35%;
    right: 5%;
}

.layer-2 [data-position="bottom-left"] {
    bottom: 15%;
    left: 15%;
}

.layer-2 [data-position="bottom-right"] {
    bottom: 15%;
    right: 15%;
}

/* Benefits Section */
.benefits-section {
    padding: 80px 0  {
    bottom: 15%;
    right: 15%;
}

/* Benefits Section */
.benefits-section {
    padding: 80px 0;
    background-color: white;
}

.benefits-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.benefit-card {
    background-color: white;
    border-radius: 10px;
    padding: 30px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    z-index: 1;
    border: 1px solid #eee;
}

.benefit-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(90deg, #0066cc, #ff9900);
    z-index: -1;
}

.benefit-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.benefit-icon {
    width: 70px;
    height: 70px;
    background-color: rgba(0, 102, 204, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.benefit-icon i {
    font-size: 30px;
    color: #0066cc;
}

.benefit-card h3 {
    font-size: 1.3rem;
    margin-bottom: 15px;
    font-weight: 600;
    color: #333;
}

.benefit-card p {
    color: #6c757d;
    margin-bottom: 0;
    line-height: 1.6;
}

/* Case Studies Section */
.case-studies-section {
    padding: 80px 0;
    background-color: #f8f9fa;
}

.case-studies-container {
    margin-top: 50px;
}

.case-study {
    display: flex;
    flex-wrap: wrap;
    margin-bottom: 50px;
    background-color: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.case-study:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.case-study-image {
    flex: 1;
    min-width: 300px;
}

.case-study-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.case-study-content {
    flex: 2;
    padding: 30px;
    min-width: 300px;
}

.case-study-content h3 {
    font-size: 1.8rem;
    margin-bottom: 10px;
    font-weight: 700;
    color: #333;
}

.case-study-highlight {
    font-size: 1.2rem;
    font-weight: 600;
    color: #0066cc;
    margin-bottom: 15px;
}

.case-study-content p {
    color: #6c757d;
    margin-bottom: 20px;
    line-height: 1.6;
}

.btn-outline {
    display: inline-block;
    padding: 10px 20px;
    border: 2px solid #0066cc;
    border-radius: 30px;
    color: #0066cc;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

.btn-outline:hover {
    background-color: #0066cc;
    color: white;
}

/* Team Section */
.team-section {
    padding: 80px 0;
    background-color: white;
}

.team-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
    margin-top: 50px;
}

.team-member {
    background-color: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    flex: 1;
    min-width: 300px;
    max-width: 350px;
    transition: all 0.3s ease;
}

.team-member:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.member-image {
    width: 100%;
    height: 300px;
    overflow: hidden;
}

.member-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.3s ease;
}

.team-member:hover .member-image img {
    transform: scale(1.05);
}

.member-info {
    padding: 25px;
}

.member-info h3 {
    font-size: 1.5rem;
    margin-bottom: 5px;
    font-weight: 600;
    color: #333;
}

.member-title {
    font-size: 1rem;
    color: #0066cc;
    font-weight: 600;
    margin-bottom: 15px;
}

.member-description {
    color: #6c757d;
    margin-bottom: 15px;
    line-height: 1.6;
}

.member-expertise {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.member-expertise span {
    background-color: rgba(0, 102, 204, 0.1);
    color: #0066cc;
    padding: 5px 10px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
}

/* CTA Section Modifications */
.cta {
    background: linear-gradient(135deg, #0066cc 0%, #004080 100%);
    padding: 80px 0;
}

.cta h2 {
    color: white;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 20px;
}

.cta p {
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 30px;
    font-size: 1.1rem;
}

.cta .cta-buttons {
    display: flex;
    gap: 15px;
    justify-content: center;
    margin-top: 30px;
}

.cta .btn-primary {
    background-color: white;
    color: #0066cc;
    font-weight: 600;
}

.cta .btn-primary:hover {
    background-color: #f8f9fa;
    color: #004080;
}

.cta .btn-secondary {
    background-color: transparent;
    color: white;
    border: 2px solid white;
    font-weight: 600;
}

.cta .btn-secondary:hover {
    background-color: white;
    color: #0066cc;
}

/* Responsive Styles */
@media (max-width: 1200px) {
    .framework-layer {
        display: none;
    }
    
    .framework-diagram {
        height: auto;
        text-align: center;
    }
    
    .center-circle {
        position: static;
        margin: 0 auto 40px;
        transform: none;
    }
}

@media (max-width: 992px) {
    .service-hero-content h1 {
        font-size: 2.5rem;
    }
    
    .service-hero .container {
        flex-direction: column;
    }
    
    .service-hero-content {
        padding-right: 0;
        margin-bottom: 50px;
        text-align: center;
    }
    
    .service-hero-content .underline {
        margin: 0 auto 20px;
    }
    
    .service-hero-content p {
        margin: 0 auto 30px;
    }
    
    .service-hero-image {
        max-width: 100%;
    }
    
    .stats-container {
        gap: 15px;
    }
    
    .process-line {
        left: 30px;
    }
    
    .process-step {
        flex-direction: row !important;
    }
    
    .step-number {
        left: 30px;
    }
    
    .step-content {
        width: calc(100% - 80px);
        margin-left: 80px !important;
        margin-right: 0 !important;
    }
    
    .tabs-navigation {
        flex-wrap: nowrap;
        overflow-x: auto;
        padding-bottom: 10px;
    }
    
    .tab-btn {
        white-space: nowrap;
    }
}

@media (max-width: 768px) {
    .stats-container {
        flex-direction: column;
        align-items: center;
    }
    
    .stat-box {
        max-width: 100%;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .benefits-container {
        grid-template-columns: 1fr;
    }
    
    .case-study {
        flex-direction: column;
    }
    
    .case-study-image {
        min-height: 250px;
    }
    
    .cta .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .cta .btn {
        width: 100%;
        max-width: 300px;
    }
    
    .team-container {
        flex-direction: column;
        align-items: center;
    }
    
    .team-member {
        max-width: 100%;
    }
}

@media (max-width: 576px) {
    .service-hero-content h1 {
        font-size: 2rem;
    }
    
    .section-header h2 {
        font-size: 2rem;
    }
    
    .process-line {
        left: 20px;
    }
    
    .step-number {
        left: 20px;
        width: 40px;
        height: 40px;
        font-size: 1.2rem;
    }
    
    .step-content {
        width: calc(100% - 60px);
        margin-left: 60px !important;
        padding: 20px;
    }
    
    .step-icon {
        width: 50px;
        height: 50px;
    }
    
    .step-icon i {
        font-size: 20px;
    }
    
    .tab-header {
        flex-direction: column;
        text-align: center;
    }
    
    .tab-icon {
        margin: 0 auto 15px;
    }
    
    .tab-header h3 {
        font-size: 1.5rem;
    }
}
