.container-flutter,
.container-fullstack,
.container-dotnet,
.container-python,
.container-frontend,
.container-quality-assurance {
    padding: 20px 0;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: calc(100vh - 180px);
}



.hire-developer {
    background-color: #ffffff;
    border-radius: 15px;
    box-shadow: 0 15px 45px rgba(0, 0, 0, 0.1);
    padding: 25px;
    width: 100%;
    display: grid;
    grid-template-columns: 1fr;
    gap: 18px;
    transition: transform 0.4s cubic-bezier(0.25, 0.8, 0.25, 1), box-shadow 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
    position: relative;
    overflow: hidden;
}

    .hire-developer::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 8px;
        background: linear-gradient(to right, #00a1f2 0%, #0088cc 100%);
        border-top-right-radius: 15px;
    }

    .hire-developer:hover {
        transform: translateY(-8px);
        box-shadow: 0 25px 40px rgba(0, 0, 0, 0.15);
    }

.header-section {
    text-align: center;
    margin-bottom: 0;
}

    .header-section h3 {
        font-size: 2em;
        color: #2c3e50;
        margin-bottom: 10px;
        font-weight: 700;
        line-height: 1.2;
        position: relative;
        display: inline-block;
    }

        .header-section h3::after {
            content: '';
            position: absolute;
            left: 50%;
            bottom: -10px;
            transform: translateX(-50%);
            width: 100%;
            height: 4px;
            background: linear-gradient(to right, #00a1f2 0%, #0088cc 100%);
            border-radius: 2px;
        }

.tagline {
    font-size: 1.3em;
    color: #555;
    font-weight: 500;
    margin-top: 20px;
}

.experience-detail {
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #f8f9fa;
    border-radius: 10px;
    padding: 15px 25px;
    border: 1px solid #e0e0e0;
    box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.05);
    animation: pulseGlow 4s ease-in-out infinite;
    transition: transform 0.3s ease;
}

    .experience-detail:hover {
        transform: scale(1.05);
    }

    .experience-detail strong {
        font-size: 1.2em;
        color: #0088cc;
        margin-right: 10px;
        font-weight: 700;
    }

@keyframes pulseGlow {
    0% {
        box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.05), 0 0 5px rgba(0, 136, 204, 0);
    }

    50% {
        box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.05), 0 0 20px rgba(0, 136, 204, 0.6);
    }

    100% {
        box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.05), 0 0 5px rgba(0, 136, 204, 0);
    }
}

.description-section p {
    font-size: 1.15em;
    color: #444;
    margin-bottom: 20px;
}

    .description-section p:last-of-type {
        margin-bottom: 0;
    }

.action-section {
    text-align: center;
    margin-top: 10px;
}

    .action-section a {
        display: inline-block;
        background: linear-gradient(to right, #00a1f2 0%, #0088cc 100%);
        color: #ffffff;
        padding: 15px 35px;
        border-radius: 35px;
        text-decoration: none;
        font-size: 1.2em;
        font-weight: 600;
        transition: all 0.3s ease;
        box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
    }

        .action-section a:hover {
            transform: translateY(-3px);
            box-shadow: 0 12px 25px rgba(0, 0, 0, 0.2);
            opacity: 0.9;
        }

.hire-developer span {
    font-weight: 700;
    font-size: 1.2em;
}

.address-wrapper, .form-wrapper {
    padding: 10px 20px;
}

.contact > .container > .row {
    padding-bottom: 20px;
}

.contact h1:first-of-type {
    margin-bottom: 0;
}
/* Responsive adjustments */
@media (min-width: 768px) {

    .container-flutter,
    .container-fullstack,
    .container-dotnet,
    .container-python,
    .container-frontend,
    .container-quality-assurance {
        padding: 0 20px 20px;
    }

    .hire-developer {
        grid-template-columns: 1fr 1fr;
        align-items: center;
        padding: 50px;
    }

    .header-section {
        text-align: left;
    }



        .header-section h3::after {
            left: 0;
            transform: translateX(0);
        }

    .tagline {
        margin-top: 10px;
        font-size: 1.1em;
    }

    .description-section {
        grid-column: span 2;
    }

    .action-section {
        grid-column: span 2;
    }
}

@media (max-width: 767px) {
    .action-section a {
        width: 100%;
    }
}


@media (min-width : 1024px) {
    .header-section h3 {
        font-size: 2.4em;
    }

    .experience-detail strong {
        font-size: 1.4em;
    }

    .hire-developer span {
        font-size: 1.4em;
    }
}

@media (min-width: 1600px) {
    .container-flutter,
    .container-fullstack,
    .container-dotnet,
    .container-python,
    .container-frontend,
    .container-quality-assurance {
        min-height: calc(100vh - 340px);
    }
}
