/* Redesign of Services Section */
.redesigned-services {
    padding: 100px 0;
    background-color: #f8fafc;
}

.services__header {
    text-align: center;
    margin-bottom: 60px;
}

.services__label {
    display: inline-block;
    padding: 6px 16px;
    background: #eef2f7;
    border: 1px solid #d1d9e6;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    color: #303a4d;
    margin-bottom: 16px;
    text-transform: uppercase;
}

.services__title {
    margin-bottom: 15px !important;
}

.services__subtitle {
    color: #64748b;
    font-size: 1.1rem;
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.6;
}

.services__grid-new {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

.service-card-new {
    background: white;
    border-radius: 24px;
    padding: 32px;
    display: flex;
    flex-direction: column;
    position: relative;
    min-height: 520px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    text-decoration: none;
    color: inherit;
    overflow: hidden;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.service-card-new:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
    border-color: rgba(0, 177, 207, 0.2);
}

.service-card-new__title {
    font-size: 24px;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 12px;
    line-height: 1.3;
}

.service-card-new__description {
    font-size: 15px;
    color: #64748b;
    line-height: 1.6;
    margin-bottom: 24px;
}

.service-card-new__image-wrapper {
    margin-top: auto;
    width: 100%;
    height: 280px;
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    background: #f1f5f9;
}

.service-card-new__image-wrapper img {
    object-fit: cover;
    transition: transform 0.5s ease;
}

.service-card-new:hover .service-card-new__image-wrapper img {
    transform: scale(1.05);
}

.service-card-new__arrow {
    position: absolute;
    bottom: 28px;
    right: 28px;
    width: 44px;
    height: 44px;
    background: #00b1cf;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    box-shadow: 0 4px 12px rgba(0, 177, 207, 0.3);
    z-index: 10;
    transition: all 0.3s ease;
}

.service-card-new:hover .service-card-new__arrow {
    transform: scale(1.1) rotate(-45deg);
    background: #303a4d;
}

/* Highlighted card variant */
.service-card-new--highlight {
    background: #303a4d;
    border-color: #303a4d;
}

.service-card-new--highlight .service-card-new__title {
    color: white;
}

.service-card-new--highlight .service-card-new__description {
    color: rgba(255, 255, 255, 0.7);
}

.service-card-new--highlight .service-card-new__image-wrapper {
    background: rgba(255, 255, 255, 0.1);
}

/* Stats Section inspired by the image */
.services-stats {
    margin-top: 60px;
    background: white;
    border-radius: 24px;
    padding: 40px;
    display: flex;
    justify-content: space-around;
    align-items: center;
    color: #1e293b;
    flex-wrap: wrap;
    gap: 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(0, 177, 207, 0.1);
}

.stat-item {
    text-align: left;
}

.stat-item__value {
    font-size: 40px;
    font-weight: 700;
    color: #00b1cf;
    display: block;
    margin-bottom: 4px;
}

.stat-item__label {
    font-size: 14px;
    color: #64748b;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Responsive */
@media (max-width: 1024px) {
    .services__grid-new {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .services-stats {
        flex-direction: column;
        text-align: center;
        padding: 40px 20px;
        gap: 35px;
        margin-top: 40px;
    }

    .stat-item {
        text-align: center;
        width: 100%;
    }

    .stat-item__value {
        font-size: clamp(24px, 10vw, 32px);
        letter-spacing: -0.5px;
        margin-bottom: 8px;
    }

    .stat-item__label {
        font-size: 13px;
        letter-spacing: 0.5px;
        opacity: 0.8;
    }
}

@media (max-width: 640px) {
    .services__grid-new {
        grid-template-columns: 1fr;
    }

    .service-card-new {
        min-height: auto;
    }
}

/* Unified Hero Style */
.hero-standard {
    position: relative;
    color: #fff;
    padding: 160px 0 100px;
    min-height: 480px;
    display: flex;
    align-items: center;
    overflow: hidden;
    background-color: #000;
}

.hero-standard::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.6) 0%, rgba(0, 0, 0, 0.3) 100%);
    z-index: 1;
}

.hero-standard__container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
    text-align: center;
    position: relative;
    z-index: 2;
    width: 100%;
}

.hero-standard__title {
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    font-weight: 800;
    margin-bottom: 1.5rem;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 1px;
    line-height: 1.1;
}

.hero-standard__subtitle {
    font-size: clamp(1.2rem, 3vw, 1.5rem);
    font-weight: 500;
    margin-bottom: 2rem;
    color: #00b1cf;
    opacity: 0.95;
    letter-spacing: 1px;
}

.hero-standard__description {
    font-size: clamp(1rem, 2vw, 1.25rem);
    max-width: 900px;
    margin: 0 auto 3rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.9);
}

@media (max-width: 768px) {
    .hero-standard {
        padding: 120px 0 60px;
        min-height: auto;
    }
}

.button-standard {
    display: inline-block;
    padding: 16px 40px;
    background: #00b1cf;
    color: #fff;
    text-decoration: none;
    font-weight: 700;
    border-radius: 50px;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    border: 2px solid #00b1cf;
}

.button-standard:hover {
    background: transparent;
    color: #00b1cf;
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 177, 207, 0.2);
}