/* What We Do Page Specific Styles */

/* Hero Section */
.what-we-do-hero {
    padding: 120px 0 80px;
    
    position: relative;
}
.hero-description {
    padding-top: 45px;
}
.what-we-do-header-section {
    position: relative;
    z-index: 1;
}

.what-we-do-page-title {
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    font-size: 28px;
    color: #838a91;
    margin-bottom: 40px;
    line-height: normal;
}

.what-we-do-subtitle-image {
    margin-bottom: 0;
}

.what-we-do-subtitle-image img {
    width: 100%;
    height: auto;
}

.what-we-do-hero .main-heading {
    font-size: 28px;
    font-weight: 400;
    color: #ffffff;
    margin-bottom: 32px;
    line-height: 1.2;
}

.what-we-do-hero .main-description {
    font-size: 28px;
    color: #838a91;
    line-height: 1.6;
    max-width: 874px;
}

/* Services Section */
.services-section {
    padding: 80px 0;
    
}

.services-section .row {
    align-items: flex-start;
}

.services-section .col-md-2:first-child {
    display: flex;
    align-items: flex-start;
}

.services-section .col-md-2:not(:first-child) {
    border-left: 1px solid #838a9160;
 
    padding-left: 15px;
}

.services-title {
    font-size: 24px;
    font-weight: 400;
    color: #ffffff;
    margin-bottom: 0;
    text-align: left;
    align-self: flex-start;
}

.service-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    height: 100%;
}

.service-icon {
    width: 51px;
    height: 51px;
    margin-bottom: 42px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.service-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.service-content h4 {
    font-size: 22px;
    font-weight: 400;
    color: #ffffff;
    line-height: 1.2;
    margin: 0;
    text-align: center;
}


/* Sector Expertise Section */
.sector-expertise {
    padding: 80px 0;
    background: #ffffff;
}

.sector-title {
    font-size: 24px;
    font-weight: 400;
    color: #838a91;
    margin-bottom: 50px;
}

.sector-stats {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 0;
    margin-bottom: 50px;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.stat-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    flex: 1;
    min-width: 120px;
}

.stat-icon {
    width: 40px;
    height: 40px;
    margin-bottom: 26px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.stat-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.stat-number {
    font-size: 48px;
    font-weight: 400;
    color: #838a91;
    margin-bottom: 0;
    line-height: 1;
}

.stat-label {
    font-size: 22px;
    font-weight: 400;
    color: #838a91;
    margin-top: 0;
}

.stat-divider {
    width: 1px;
    height: 180px;
    background: #838a91;
    opacity: 0.3;
    flex-shrink: 0;
}

.learn-more-container {
    display: flex;
    justify-content: center;
    margin-top: 10px;
}

.learn-more-btn {
    padding: 13px 61px;
    border: 1px solid #d2d2d2;
    background: transparent;
    color: #8e61a5;
    border-radius: 250px;
    font-size: 18px;
    font-weight: 400;
    cursor: pointer;
    transition: all 0.3s ease;
}

.learn-more-btn:hover {
    background-color: #8e61a5;
    color: #ffffff;
    border-color: #8e61a5;
}

/* Transformation Section */
.transformation-section {
    padding: 80px 0;
    
}

.transformation-image {
    position: relative;
}

.transformation-image img {
    width: 100%;
    height: auto;
    object-fit: cover; 
}

.transformation-content {
    padding-left: 30px;
}

.transformation-title {
    font-size: 28px;
    font-weight: 400;
    color: #ffffff;
    line-height: 1.4;
    margin-bottom: 23px;
    letter-spacing: 0.24px;
}

.transformation-title .capitalize {
    text-transform: capitalize;
}

.transformation-points {
    margin-bottom: 23px;
}

.point-item {
    display: flex;
    align-items: center;
    gap: 24px;
    padding: 16px 0;
}

.point-icon {
    width: 46px;
    height: 42px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.point-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.point-text {
    font-size: 22px;
    font-weight: 400;
    color: #ffffff;
    flex: 1;
}

.point-divider {
    width: 100%;
    height: 1px;
    background: #838a91;
    opacity: 0.3;
    margin: 16px 0;
}

.vision-button-container {
    margin-top: 23px;
}

.vision-btn {
    padding: 13px 32px;
    border: 1px solid #767676;
    background: transparent;
    color: #8e61a5;
    border-radius: 250px;
    font-size: 18px;
    font-weight: 400;
    cursor: pointer;
    transition: all 0.3s ease;
}

.vision-btn:hover {
    background-color: #8e61a5;
    color: #ffffff;
    border-color: #8e61a5;
}

/* Responsive Design */
@media (max-width: 1200px) {
    .services-container {
        gap: 40px;
    }
    
    .sector-stats {
        gap: 20px;
    }
}

@media (max-width: 992px) {
    .services-title {
        margin-bottom: 30px;
        text-align: center;
    }
    .what-we-do-page-title{
        font-size:26px;
    }

    .service-item {
        margin-bottom: 40px;
    }
    
    .services-section .col-md-2:not(:first-child) {
        border-left: none;
        border-top: 1px solid #838a91;
        padding-left: 0;
        padding-top: 20px;
        margin-top: 20px;
    }
    
    .sector-stats {
        flex-direction: column;
        gap: 30px;
    }
    
    .stat-divider {
        width: 100%;
        height: 1px;
        margin: 20px 0;
    }
    
    .transformation-content {
        padding-left: 0;
        padding-top: 40px;
    }
}

@media (max-width: 768px) {
    .what-we-do-hero {
        padding: 147px 0 60px;
    }

    .what-we-do-page-title {
        font-size: 26px;
    }
    
    .what-we-do-hero .hero-title {
        font-size: 24px;
        margin-bottom: 40px;
    }
    
    .what-we-do-hero .main-heading {
        font-size: 24px;
        margin-bottom: 24px;
    }
    
    .what-we-do-hero .main-description {
        font-size: 22px;
    }
    
    .services-section,
    .sector-expertise,
    .transformation-section {
        padding: 60px 0;
    }
    
    .services-title,
    .sector-title {
        font-size: 22px;
        margin-bottom: 30px;
    }
    
    .service-content h4 {
        font-size: 20px;
    }
    
    .stat-number {
        font-size: 36px;
    }
    
    .stat-label {
        font-size: 20px;
    }
    
    .transformation-title {
        font-size: 24px;
    }
    
    .point-text {
        font-size: 20px;
    }
    
    .point-icon {
        width: 40px;
        height: 36px;
    }
}

@media (max-width: 480px) {
    .what-we-do-hero .hero-title {
        font-size: 22px;
    }
    
    .what-we-do-hero .main-heading {
        font-size: 22px;
    }
    
    .what-we-do-hero .main-description {
        font-size: 22px;
    }
    
    .transformation-title {
        font-size: 22px;
    }
    
    .point-text {
        font-size: 18px;
    }
    
    .learn-more-btn,
    .vision-btn {
        padding: 12px 24px;
        font-size: 17px;
    }
}

/* Animation for service items */
.service-item {
    animation: fadeInUp 0.6s ease-out;
}

.service-item:nth-child(1) { animation-delay: 0.1s; }
.service-item:nth-child(3) { animation-delay: 0.2s; }
.service-item:nth-child(5) { animation-delay: 0.3s; }
.service-item:nth-child(7) { animation-delay: 0.4s; }
.service-item:nth-child(9) { animation-delay: 0.5s; }

/* Animation for stat items */
.stat-item {
    animation: fadeInUp 0.6s ease-out;
}

.stat-item:nth-child(1) { animation-delay: 0.1s; }
.stat-item:nth-child(3) { animation-delay: 0.2s; }
.stat-item:nth-child(5) { animation-delay: 0.3s; }
.stat-item:nth-child(7) { animation-delay: 0.4s; }
.stat-item:nth-child(9) { animation-delay: 0.5s; }
 