.services-hero {

    min-height: 60vh;

    display: flex;
    justify-content: center;
    align-items: center;

    text-align: center;

    padding: 120px 10%;

    background:
        linear-gradient(135deg,
            #07122c,
            #173a8d);

    color: white;

}

.services-content {

    max-width: 900px;

}

.services-badge {

    display: inline-block;

    padding: 10px 20px;

    border-radius: 999px;

    background: rgba(255, 255, 255, .12);

    margin-bottom: 20px;

}

.services-content h1 {

    font-size: 4rem;

    margin-bottom: 25px;

}

.services-content p {

    font-size: 1.2rem;

    line-height: 2;

}

.services-grid {

    padding: 100px 10%;

    display: grid;

    grid-template-columns:
        repeat(auto-fit, minmax(320px, 1fr));

    gap: 25px;

}

.service-card {

    background:
        rgba(255, 255, 255, .5);

    backdrop-filter: blur(12px);

    border-radius: 25px;

    padding: 35px;

    transition: .4s;

}

.service-card {

    transform:
        translateY(-10px);

    box-shadow:
        0 20px 40px rgba(37, 99, 235, .2);

}

.service-icon {

    font-size: 45px;

    margin-bottom: 20px;

}

.service-card h3 {

    color: #2563eb;

    margin-bottom: 15px;

}

.service-card p {

    line-height: 2;

}

.why-us {

    padding: 0 10% 100px;

    text-align: center;

}

.why-us h2 {

    margin-bottom: 50px;

    font-size: 2.5rem;

}

.why-grid {

    display: grid;

    grid-template-columns:
        repeat(auto-fit, minmax(250px, 1fr));

    gap: 25px;

}

.why-grid div {

    background: white;

    border-radius: 20px;

    padding: 30px;

    box-shadow:
        0 10px 25px rgba(0, 0, 0, .08);

}

.why-grid h3 {

    color: #2563eb;

    margin-bottom: 15px;

}

@media(max-width:768px) {

    .services-content h1 {

        font-size: 2.5rem;
    }

}


.project-card {

    display: flex;

    align-items: stretch;

    background: #fff;

    border-radius: 18px;

    overflow: hidden;

    box-shadow: 0 10px 30px rgba(0, 0, 0, .08);

    transition: .3s;

}

.project-card:hover {

    transform: translateY(-4px);

    box-shadow: 0 18px 40px rgba(0, 0, 0, .12);

}

.project-image {

    width: 320px;

    min-width: 320px;

    object-fit: cover;

}

.project-card:hover .project-image {

    transform: scale(1.05);

}

.project-content {

    padding: 28px;

    display: flex;

    flex-direction: column;

    flex: 1;

}

.project-content h3 {

    font-size: 26px;

    margin-bottom: 15px;

}

.project-content p {

    color: #666;

    line-height: 2;

    margin-bottom: 20px;

}

.project-date {

    display: flex;

    gap: 15px;

    flex-wrap: wrap;

    margin-bottom: 25px;

}

.project-date span {

    background: #f5f7fa;

    padding: 8px 15px;

    border-radius: 10px;

}

.details-btn {

    align-self: flex-start;

    padding: 12px 24px;

    border-radius: 10px;

    text-decoration: none;

    background: #0b5ed7;

    color: #fff;

    transition: .3s;

}

.details-btn:hover {

    background: #084298;

}

@media(max-width:900px) {

    .project-card {

        flex-direction: column;

    }

    .project-image {

        width: 100%;

        min-width: 100%;

        height: 230px;

    }

}

/* dt */

.project-hero {

    position: relative;

    height: 70vh;

    overflow: hidden;

}

.project-hero img {

    width: 100%;

    height: 100%;

    object-fit: cover;

}

.overlay {

    position: absolute;

    inset: 0;

    background: linear-gradient(rgba(0, 0, 0, .35),
            rgba(0, 0, 0, .7));

    display: flex;

    justify-content: center;

    align-items: center;

    text-align: center;

    color: #fff;

}

.content {

    width: min(900px, 90%);

}

.content h1 {

    font-size: 4rem;

    margin-bottom: 25px;

}

.content p {

    line-height: 2;

    font-size: 1.2rem;

}

.project-container {

    width: min(1200px, 90%);

    margin: 80px auto;

}

.project-info {

    display: grid;

    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));

    gap: 25px;

    margin-bottom: 60px;

}

.info-card {

    background: #fff;

    padding: 30px;

    border-radius: 18px;

    box-shadow: 0 10px 30px rgba(0, 0, 0, .08);

}

.info-card h3 {

    color: #173a8d;

    margin-bottom: 15px;

}

.description {

    background: #fff;

    padding: 40px;

    border-radius: 20px;

    box-shadow: 0 10px 30px rgba(0, 0, 0, .08);

}

.description h2 {

    margin-bottom: 25px;

    color: #173a8d;

}

.description p {

    line-height: 2.3;

    color: #555;

}