/* ========== HERO SECTION ========== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

.consulting-hero {
    position: relative;
    background: linear-gradient(135deg, #0a1a2f 0%, #0c1e35 100%);
    min-height: 500px;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.consulting-hero::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;  
    width: 60%;  
    height: 100%;
    background-image: url('../images/about-bg.webp');
    background-size: cover;
    background-position: center right;
    background-repeat: no-repeat;
    opacity: 1;  
    z-index: 0;
    -webkit-mask-image: linear-gradient(to left, black 60%, transparent 100%);
    mask-image: linear-gradient(to left, black 60%, transparent 100%);
}

.consultinghero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, rgb(10 26 47 / 100%) 0%, rgb(10 26 47 / 0%) 30%, rgb(10 26 47 / 0%) 60%, rgb(10 26 47 / 0%) 100%);
    z-index: 1;
}

.consultinghero-container {
    position: relative;
    max-width: 1340px;
    margin: 0 auto;
    padding: 120px 0px;
    z-index: 2;
    width: 100%;
}

.consultinghero-content {
    max-width: 700px;
    margin-top: 30px;
    position: relative;
    z-index: 3;
}

.consulting-title {
    font-size: 52px;
    font-weight: 800;
    color: #ffffff;
    font-family: 'Plus Jakarta Sans', sans-serif;
    line-height: 1.2;
    margin-bottom: 24px;
}

.hero-description {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
    margin-bottom: 32px;
    width: 600px;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    margin-bottom: 50px;
    flex-wrap: wrap;
}

.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: #00aeef;
    color: white;
    padding: 14px 32px;
    border-radius: 40px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    background: #0082b3;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 174, 239, 0.3);
}

.btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: transparent;
    color: white;
    padding: 14px 32px;
    border-radius: 40px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 2px solid white;
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-2px);
}

.hero-stats {
    display: flex;
    gap: 40px;
}

.hero-stats .stat {
    text-align: left;
}

.hero-stats .stat-number {
    font-size: 36px;
    font-weight: 800;
    color: #00aeef;
    display: block;
    font-family: 'Plus Jakarta Sans', sans-serif;
}

.hero-stats .stat-label {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.8);
}

/* Responsive Styles */
@media (max-width: 992px) {
    .consulting-hero::before {
        width: 80%;
        opacity: 0.5;
    }
    
    .consultinghero-container {
        padding: 80px 24px;
    }
    
    .consulting-title {
        font-size: 42px;
    }
    
    .hero-description {
        width: 100%;
        font-size: 16px;
    }
}

@media (max-width: 768px) {
    .consulting-hero::before {
        width: 100%;
        opacity: 0.3;
        -webkit-mask-image: linear-gradient(to left, black 40%, transparent 100%);
        mask-image: linear-gradient(to left, black 40%, transparent 100%);
    }
    
    .consultinghero-overlay {
        background: linear-gradient(90deg, 
            rgb(10 26 47 / 100%) 0%, 
            rgb(10 26 47 / 90%) 50%,
            rgb(10 26 47 / 70%) 100%);
    }
    
    .consultinghero-container {
        padding: 60px 20px;
    }
    
    .consulting-title {
        font-size: 32px;
    }
    
    .hero-description {
        font-size: 14px;
    }
    
    .hero-buttons {
        gap: 12px;
        margin-bottom: 30px;
    }
    
    .btn-primary, .btn-secondary {
        padding: 10px 20px;
        font-size: 14px;
    }
    
    .hero-stats {
        flex-wrap: wrap;
        gap: 20px;
    }
    
    .hero-stats .stat-number {
        font-size: 28px;
    }
}

@media (max-width: 480px) {
    .consulting-title {
        font-size: 28px;
    }
    
    .hero-description {
        font-size: 13px;
    }
    
    .btn-primary, .btn-secondary {
        padding: 8px 16px;
        font-size: 12px;
    }
    
    .hero-stats .stat-number {
        font-size: 24px;
    }
    
    .hero-stats .stat-label {
        font-size: 11px;
    }
}
/* ========== GLOBAL PRESENCE SECTION ========== */
.global-presence {
    padding: 80px 0;
    background: #ffffff;
}

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
}

.section-header {
    text-align: center;
    margin-bottom: 50px;
}

.section-badge {
    display: inline-block;
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #00aeef;
    background: rgba(0, 174, 239, 0.08);
    padding: 5px 14px;
    border-radius: 30px;
    margin-bottom: 16px;
}

.section-title {
    font-size: 40px;
    font-weight: 700;
    color: #0f172a;
    line-height: 1.2;
    margin: 0;
    font-family: 'Plus Jakarta Sans', sans-serif;
}

.country-tabs {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.tab-btn {
    padding: 12px 28px;
    background: #f1f5f9;
    border: none;
    border-radius: 40px;
    font-size: 16px;
    font-weight: 600;
    color: #475569;
    cursor: pointer;
    transition: all 0.3s ease;
}

.tab-btn:hover {
    background: #e2e8f0;
}

.tab-btn.active {
    background: #00aeef;
    color: white;
}

.country-pane {
    display: none;
    background: #f8fafc;
    padding: 40px;
    border-radius: 24px;
    border: 1px solid #eef2f6;
}

.country-pane.active {
    display: block;
    animation: fadeIn 0.5s ease;
}

.country-pane h3 {
    font-size: 28px;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 20px;
    font-family: 'Plus Jakarta Sans', sans-serif;
}

.country-pane p {
    font-size: 16px;
    line-height: 1.7;
    color: #475569;
}

/* ========== SERVICES GRID SECTION ========== */
.services-grid-section {
    padding: 80px 0;
    background: #f8fafd;
}

.services-grid-4col {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.service-card-grid {
    background: white;
    padding: 40px 30px;
    border-radius: 24px;
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid #eef2f6;
}

.service-card-grid:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 35px -12px rgba(0, 0, 0, 0.1);
    border-color: #00aeef;
}

.service-icon {
    width: 70px;
    height: 70px;
    background: rgba(0, 174, 239, 0.1);
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.service-icon i {
    font-size: 32px;
    color: #00aeef;
}

.service-card-grid h3 {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 15px;
    color: #0f172a;
}

.service-card-grid p {
    font-size: 14px;
    line-height: 1.6;
    color: #64748b;
}

/* ========== PROJECT STAFFING SECTION ========== */
.project-staffing {
    padding: 80px 0;
    background: #ffffff;
}

.section-subtitle {
    font-size: 18px;
    color: #64748b;
    max-width: 800px;
    margin: 20px auto 0;
    text-align: center;
}

.staffing-process {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-top: 50px;
}

.process-card {
    text-align: center;
    padding: 30px;
    background: #f8fafc;
    border-radius: 20px;
    transition: all 0.3s ease;
    border: 1px solid #eef2f6;
}

.process-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 35px -12px rgba(0, 0, 0, 0.1);
    border-color: #00aeef;
}

.process-icon {
    width: 60px;
    height: 60px;
    background: rgba(0, 174, 239, 0.1);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.process-icon i {
    font-size: 28px;
    color: #00aeef;
}

.process-card h3 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 15px;
    color: #0f172a;
}

.process-card p {
    font-size: 14px;
    line-height: 1.6;
    color: #64748b;
}

/* ========== BENEFITS SECTION ========== */
.benefits-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #0a1a2f 0%, #0c1e35 100%);
    color: white;
}

.benefits-section .section-badge {
    background: rgba(255, 255, 255, 0.2);
    color: white;
}

.benefits-section .section-title {
    color: white;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-top: 50px;
}

.benefit-card {
    text-align: center;
    padding: 30px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.benefit-card:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.1);
}

.benefit-avatar {
    width: 70px;
    height: 70px;
    background: rgba(0, 174, 239, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.benefit-avatar i {
    font-size: 32px;
    color: #00aeef;
}

.benefit-card h3 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 15px;
}

.benefit-card p {
    font-size: 14px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.8);
}

/* ========== VIRTUAL TEAMS SECTION ========== */
.virtual-teams {
    padding: 80px 0;
    background: #ffffff;
}

.virtual-teams-wrapper {
    display: flex;
    gap: 60px;
    align-items: center;
}

.virtual-content {
    flex: 1;
}

.virtual-content .section-badge {
    margin-bottom: 20px;
}

.virtual-content h2 {
    font-size: 36px;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 30px;
    font-family: 'Plus Jakarta Sans', sans-serif;
}

.virtual-list {
    list-style: none;
    padding: 0;
}

.virtual-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
    font-size: 16px;
    color: #475569;
}

.virtual-list li i {
    color: #00aeef;
    font-size: 20px;
}

.virtual-image {
    flex: 1;
}

.virtual-image img {
    width: 100%;
    border-radius: 24px;
    box-shadow: 0 20px 35px -12px rgba(0, 0, 0, 0.1);
}

/* ========== CTA SECTION ========== */
.cta-section {
    padding: 80px 0;
    background: #00aeef;
}

.cta-wrapper {
    text-align: center;
}

.cta-wrapper h2 {
    font-size: 40px;
    font-weight: 700;
    color: white;
    margin-bottom: 40px;
    font-family: 'Plus Jakarta Sans', sans-serif;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.cta-buttons .btn-primary {
    background: white;
    color: #00aeef;
}

.cta-buttons .btn-primary:hover {
    background: #f0f0f0;
    transform: translateY(-2px);
}

.btn-outline {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: transparent;
    color: white;
    padding: 14px 32px;
    border-radius: 40px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 2px solid white;
}

.btn-outline:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-2px);
}

/* ========== ANIMATIONS ========== */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ========== RESPONSIVE ========== */
@media (max-width: 1024px) {
    .consulting-title {
        font-size: 42px;
    }
    
    .services-grid-4col {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .staffing-process {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .benefits-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .virtual-teams-wrapper {
        flex-direction: column;
    }
    
    .section-title {
        font-size: 34px;
    }
}

@media (max-width: 768px) {
    .consulting-title {
        font-size: 34px;
    }
    
    .hero-description {
        font-size: 16px;
    }
    
    .hero-stats {
        flex-wrap: wrap;
        gap: 20px;
    }
    
    .country-tabs {
        gap: 10px;
    }
    
    .tab-btn {
        padding: 8px 20px;
        font-size: 14px;
    }
    
    .services-grid-4col {
        grid-template-columns: 1fr;
    }
    
    .staffing-process {
        grid-template-columns: 1fr;
    }
    
    .benefits-grid {
        grid-template-columns: 1fr;
    }
    
    .section-title {
        font-size: 28px;
    }
    
    .virtual-content h2 {
        font-size: 28px;
    }
    
    .cta-wrapper h2 {
        font-size: 28px;
    }
    
    .hero-buttons {
        justify-content: center;
    }
    
    .country-pane {
        padding: 25px;
    }
    
    .country-pane h3 {
        font-size: 22px;
    }
}

@media (max-width: 480px) {
    
    .hero-description {
    width: 385px;
    }
    .consulting-title {
        font-size: 28px;
    }
    
    .consultinghero-container {
        padding: 80px 20px;
    }
    
    .hero-buttons {
        flex-direction: column;
    }
    
    .btn-primary, .btn-secondary {
        text-align: center;
        justify-content: center;
    }
    
    .section-title {
        font-size: 24px;
    }
    
    .country-pane {
        padding: 20px;
    }
    
    .country-pane h3 {
        font-size: 20px;
    }
    
    .country-pane p {
        font-size: 14px;
    }
    
    .virtual-content h2 {
        font-size: 24px;
    }
    
    .cta-wrapper h2 {
        font-size: 24px;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .btn-outline {
        width: 100%;
        text-align: center;
        justify-content: center;
    }
}