﻿.it-hero {
    position: relative;
    min-height: 100vh;
    background: linear-gradient( 135deg, #ffffff, #f5ffff, #e9ffff);
    overflow: hidden;
}

.hero-tag {
    display: inline-block;
    background: #dffcfb;
    color: #00a9a2;
    padding: 12px 24px;
    border-radius: 50px;
    font-weight: 700;
}

.hero-heading {
    font-size: 72px;
    font-weight: 800;
    line-height: 1.1;
    margin-top: 25px;
    color: #0f172a;
}

.hero-text {
    font-size: 20px;
    line-height: 1.9;
    color: #475569;
    margin-top: 25px;
}

.hero-btns {
    margin-top: 35px;
}


.btn-primary-custom {
    background: linear-gradient( 135deg, #00cfc8, #00a9a2);
    color: #fff;
    padding: 16px 35px;
    border-radius: 15px;
    text-decoration: none;
    font-weight: 600;
}

.btn-outline-custom {
    border: 2px solid #00cfc8;
    color: #00cfc8;
    padding: 16px 35px;
    border-radius: 15px;
    text-decoration: none;
    margin-left: 10px;
}

.hero-tech-box {
    display: grid;
    grid-template-columns: repeat(2,1fr);
    gap: 20px;
}

.tech-item {
    background: white;
    padding: 30px;
    border-radius: 25px;
    text-align: center;
    box-shadow: 0 15px 35px rgba(0,0,0,.08);
    transition: .4s;
}

    .tech-item:hover {
        transform: translateY(-10px);
    }

    .tech-item i {
        font-size: 40px;
        color: #00cfc8;
        margin-bottom: 15px;
    }

    .tech-item span {
        display: block;
        font-weight: 600;
    }

.hero-shape {
    position: absolute;
    border-radius: 50%;
}

.shape1 {
    width: 250px;
    height: 250px;
    background: rgba(0,207,200,.10);
    top: -50px;
    right: -50px;
}

.shape2 {
    width: 180px;
    height: 180px;
    background: rgba(0,207,200,.08);
    bottom: 50px;
    left: -50px;
}

.shape3 {
    width: 120px;
    height: 120px;
    background: rgba(0,207,200,.15);
    top: 40%;
    right: 10%;
}


.digital-section,
.core-services {
    padding: 120px 0;
}

.section-description {
    max-width: 750px;
    margin: auto;
    color: #64748b;
    font-size: 18px;
}

.digital-card {
    background: rgba(255,255,255,.8);
    backdrop-filter: blur(10px);
    padding: 35px;
    border-radius: 30px;
    text-align: center;
    height: 100%;
    border: 1px solid rgba(255,255,255,.5);
    box-shadow: 0 20px 50px rgba(0,0,0,.06);
    transition: .4s;
}

    .digital-card:hover {
        transform: translateY(-12px);
    }

    .digital-card i {
        font-size: 55px;
        color: #00cfc8;
        margin-bottom: 20px;
    }

.service-box {
    background: white;
    padding: 35px;
    border-radius: 25px;
    display: flex;
    gap: 25px;
    align-items: flex-start;
    box-shadow: 0 15px 35px rgba(0,0,0,.08);
    height: 100%;
}

    .service-box i {
        font-size: 50px;
        color: #00cfc8;
    }

.why-business-section,
.industries-empower-section {
    padding: 120px 0;
    background: #f8ffff;
}

.business-card {
    background: white;
    padding: 40px;
    border-radius: 30px;
    text-align: center;
    height: 100%;
    box-shadow: 0 20px 50px rgba(0,0,0,.08);
    transition: .4s;
}

    .business-card:hover {
        transform: translateY(-12px);
    }

    .business-card i {
        font-size: 55px;
        color: #00cfc8;
        margin-bottom: 20px;
    }

.industry-item {
    background: white;
    padding: 35px;
    border-radius: 25px;
    text-align: center;
    box-shadow: 0 15px 35px rgba(0,0,0,.08);
    transition: .4s;
}

    .industry-item:hover {
        background: #00cfc8;
        color: white;
        transform: translateY(-10px);
    }

        .industry-item:hover i {
            color: white;
        }

    .industry-item i {
        font-size: 50px;
        color: #00cfc8;
        margin-bottom: 15px;
    }

.process-section {
    padding: 120px 0;
}

.process-timeline {
    display: grid;
    grid-template-columns: repeat(auto-fit,minmax(250px,1fr));
    gap: 30px;
}

.process-step {
    background: white;
    padding: 35px;
    border-radius: 25px;
    text-align: center;
    box-shadow: 0 15px 35px rgba(0,0,0,.08);
    transition: .4s;
}

    .process-step:hover {
        transform: translateY(-10px);
    }

.step-number {
    width: 80px;
    height: 80px;
    margin: auto;
    border-radius: 50%;
    background: linear-gradient( 135deg, #00cfc8, #00a9a2);
    color: white;
    font-size: 24px;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.commitment-section {
    padding: 120px 0;
}

.commitment-box {
    background: linear-gradient( 135deg, #00cfc8, #00a9a2);
    color: white;
    padding: 80px;
    border-radius: 35px;
    text-align: center;
}

    .commitment-box h2 {
        font-size: 50px;
        font-weight: 800;
        margin: 25px 0;
    }

    .commitment-box p {
        max-width: 900px;
        margin: auto;
        font-size: 18px;
        line-height: 1.9;
    }

.section-tag-white {
    display: inline-block;
    background: rgba(255,255,255,.15);
    padding: 10px 20px;
    border-radius: 50px;
    font-weight: 600;
}


